diff --git a/CHANGELOG b/CHANGELOG index 5e529171e..02a2ca307 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -4,6 +4,13 @@ Changelog 0.19 ---- +General information: +* The bpython-cli and bpython-urwid rendering backends have been deprecated and + will show a warning that they'll be removed in a future release when started. +* Usage in combination with Python 2 has been deprecated. This does not mean that + support is dropped instantly but rather that at some point in the future we will + stop running our testcases against Python 2. + New features: Fixes: diff --git a/bpython/cli.py b/bpython/cli.py index 7ab5e2fb3..9aee3d5c6 100644 --- a/bpython/cli.py +++ b/bpython/cli.py @@ -1988,6 +1988,24 @@ def main_curses(scr, args, config, interactive=True, locals_=None, banner=None): if banner is not None: clirepl.write(banner) clirepl.write("\n") + + # XXX these deprecation warnings need to go at some point + clirepl.write( + _( + "WARNING: You are using `bpython-cli`, the curses backend for `bpython`. This backend has been deprecated in version 0.19 and might disappear in a future version." + ) + ) + clirepl.write("\n") + + if sys.version_info[0] == 2: + # XXX these deprecation warnings need to go at some point + clirepl.write( + _( + "WARNING: You are using `bpython` on Python 2. Support for Python 2 has been deprecated in version 0.19 and might disappear in a future version." + ) + ) + clirepl.write("\n") + exit_value = clirepl.repl() if hasattr(sys, "exitfunc"): sys.exitfunc() diff --git a/bpython/curtsies.py b/bpython/curtsies.py index 05a3e91c7..b5921a109 100644 --- a/bpython/curtsies.py +++ b/bpython/curtsies.py @@ -201,6 +201,15 @@ def main(args=None, locals_=None, banner=None, welcome_message=None): print(bpargs.version_banner()) if banner is not None: print(banner) + + if sys.version_info[0] == 2: + # XXX these deprecation warnings need to go at some point + print( + _( + "WARNING: You are using `bpython` on Python 2. Support for Python 2 has been deprecated in version 0.19 and might disappear in a future version." + ) + ) + global repl repl = FullCurtsiesRepl(config, locals_, welcome_message, interp) try: diff --git a/bpython/translations/bpython.pot b/bpython/translations/bpython.pot index 00f5329a0..99f58d7e2 100644 --- a/bpython/translations/bpython.pot +++ b/bpython/translations/bpython.pot @@ -1,302 +1,322 @@ # Translations template for bpython. -# Copyright (C) 2019 ORGANIZATION +# Copyright (C) 2020 ORGANIZATION # This file is distributed under the same license as the bpython project. -# FIRST AUTHOR , 2019. +# FIRST AUTHOR , 2020. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: bpython 0.19.dev6\n" +"Project-Id-Version: bpython 0.19.dev37\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-09-22 22:17+0200\n" +"POT-Creation-Date: 2020-01-05 13:08+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.6.0\n" +"Generated-By: Babel 2.8.0\n" -#: bpython/args.py:63 +#: bpython/args.py:66 msgid "" "Usage: %prog [options] [file [args]]\n" "NOTE: If bpython sees an argument it does not know, execution falls back " "to the regular Python interpreter." msgstr "" -#: bpython/args.py:73 +#: bpython/args.py:81 msgid "Use CONFIG instead of default config file." msgstr "" -#: bpython/args.py:75 +#: bpython/args.py:87 msgid "Drop to bpython shell after running file instead of exiting." msgstr "" -#: bpython/args.py:78 +#: bpython/args.py:95 msgid "Don't flush the output to stdout." msgstr "" -#: bpython/args.py:80 +#: bpython/args.py:101 msgid "Print version and exit." msgstr "" -#: bpython/cli.py:319 bpython/urwid.py:560 +#: bpython/cli.py:324 bpython/urwid.py:561 msgid "y" msgstr "" -#: bpython/cli.py:319 bpython/urwid.py:560 +#: bpython/cli.py:324 bpython/urwid.py:561 msgid "yes" msgstr "" -#: bpython/cli.py:1705 +#: bpython/cli.py:1743 msgid "Rewind" msgstr "" -#: bpython/cli.py:1706 +#: bpython/cli.py:1744 msgid "Save" msgstr "" -#: bpython/cli.py:1707 +#: bpython/cli.py:1745 msgid "Pastebin" msgstr "" -#: bpython/cli.py:1708 +#: bpython/cli.py:1746 msgid "Pager" msgstr "" -#: bpython/cli.py:1709 +#: bpython/cli.py:1747 msgid "Show Source" msgstr "" -#: bpython/curtsies.py:139 +#: bpython/cli.py:1994 +msgid "" +"WARNING: You are using `bpython-cli`, the curses backend for `bpython`. " +"This backend has been deprecated in version 0.19 and might disappear in a" +" future version." +msgstr "" + +#: bpython/cli.py:2003 bpython/curtsies.py:208 bpython/urwid.py:1405 +msgid "" +"WARNING: You are using `bpython` on Python 2. Support for Python 2 has " +"been deprecated in version 0.19 and might disappear in a future version." +msgstr "" + +#: bpython/curtsies.py:152 msgid "log debug messages to bpython.log" msgstr "" -#: bpython/curtsies.py:141 +#: bpython/curtsies.py:158 msgid "start by pasting lines of a file into session" msgstr "" -#: bpython/history.py:222 +#: bpython/history.py:231 #, python-format msgid "Error occurred while writing to file %s (%s)" msgstr "" -#: bpython/paste.py:96 +#: bpython/paste.py:95 msgid "Helper program not found." msgstr "" -#: bpython/paste.py:98 +#: bpython/paste.py:97 msgid "Helper program could not be run." msgstr "" -#: bpython/paste.py:102 +#: bpython/paste.py:103 #, python-format msgid "Helper program returned non-zero exit status %d." msgstr "" -#: bpython/paste.py:105 +#: bpython/paste.py:108 msgid "No output from helper program." msgstr "" -#: bpython/paste.py:111 +#: bpython/paste.py:115 msgid "Failed to recognize the helper program's output as an URL." msgstr "" -#: bpython/repl.py:672 +#: bpython/repl.py:690 msgid "Nothing to get source of" msgstr "" -#: bpython/repl.py:677 +#: bpython/repl.py:695 #, python-format msgid "Cannot get source: %s" msgstr "" -#: bpython/repl.py:682 +#: bpython/repl.py:700 #, python-format msgid "Cannot access source of %r" msgstr "" -#: bpython/repl.py:684 +#: bpython/repl.py:702 #, python-format msgid "No source code found for %s" msgstr "" -#: bpython/repl.py:815 +#: bpython/repl.py:841 msgid "Save to file (Esc to cancel): " msgstr "" -#: bpython/repl.py:817 bpython/repl.py:820 bpython/repl.py:839 +#: bpython/repl.py:843 bpython/repl.py:846 bpython/repl.py:870 msgid "Save cancelled." msgstr "" -#: bpython/repl.py:830 +#: bpython/repl.py:857 #, python-format msgid "%s already exists. Do you want to (c)ancel, (o)verwrite or (a)ppend? " msgstr "" -#: bpython/repl.py:834 +#: bpython/repl.py:865 msgid "overwrite" msgstr "" -#: bpython/repl.py:836 +#: bpython/repl.py:867 msgid "append" msgstr "" -#: bpython/repl.py:848 bpython/repl.py:1140 +#: bpython/repl.py:879 bpython/repl.py:1192 #, python-format msgid "Error writing file '%s': %s" msgstr "" -#: bpython/repl.py:850 +#: bpython/repl.py:881 #, python-format msgid "Saved to %s." msgstr "" -#: bpython/repl.py:856 +#: bpython/repl.py:887 msgid "No clipboard available." msgstr "" -#: bpython/repl.py:863 +#: bpython/repl.py:894 msgid "Could not copy to clipboard." msgstr "" -#: bpython/repl.py:865 +#: bpython/repl.py:896 msgid "Copied content to clipboard." msgstr "" -#: bpython/repl.py:874 +#: bpython/repl.py:905 msgid "Pastebin buffer? (y/N) " msgstr "" -#: bpython/repl.py:875 +#: bpython/repl.py:907 msgid "Pastebin aborted." msgstr "" -#: bpython/repl.py:882 +#: bpython/repl.py:915 #, python-format msgid "Duplicate pastebin. Previous URL: %s. Removal URL: %s" msgstr "" -#: bpython/repl.py:888 +#: bpython/repl.py:921 msgid "Posting data to pastebin..." msgstr "" -#: bpython/repl.py:892 +#: bpython/repl.py:925 #, python-format msgid "Upload failed: %s" msgstr "" -#: bpython/repl.py:900 +#: bpython/repl.py:934 #, python-format msgid "Pastebin URL: %s - Removal URL: %s" msgstr "" -#: bpython/repl.py:903 +#: bpython/repl.py:939 #, python-format msgid "Pastebin URL: %s" msgstr "" -#: bpython/repl.py:938 +#: bpython/repl.py:977 #, python-format msgid "Undo how many lines? (Undo will take up to ~%.1f seconds) [1]" msgstr "" -#: bpython/repl.py:945 bpython/repl.py:949 +#: bpython/repl.py:985 bpython/repl.py:989 msgid "Undo canceled" msgstr "" -#: bpython/repl.py:952 +#: bpython/repl.py:992 #, python-format msgid "Undoing %d line... (est. %.1f seconds)" msgid_plural "Undoing %d lines... (est. %.1f seconds)" msgstr[0] "" msgstr[1] "" -#: bpython/repl.py:1126 +#: bpython/repl.py:1172 msgid "Config file does not exist - create new from default? (y/N)" msgstr "" -#: bpython/repl.py:1148 +#: bpython/repl.py:1202 msgid "bpython config file edited. Restart bpython for changes to take effect." msgstr "" -#: bpython/repl.py:1151 +#: bpython/repl.py:1208 #, python-format msgid "Error editing config file: %s" msgstr "" -#: bpython/urwid.py:622 +#: bpython/urwid.py:628 #, python-format msgid " <%s> Rewind <%s> Save <%s> Pastebin <%s> Pager <%s> Show Source " msgstr "" -#: bpython/urwid.py:1136 +#: bpython/urwid.py:1177 msgid "Run twisted reactor." msgstr "" -#: bpython/urwid.py:1138 +#: bpython/urwid.py:1182 msgid "Select specific reactor (see --help-reactors). Implies --twisted." msgstr "" -#: bpython/urwid.py:1141 +#: bpython/urwid.py:1190 msgid "List available reactors for -r." msgstr "" -#: bpython/urwid.py:1143 +#: bpython/urwid.py:1195 msgid "" "twistd plugin to run (use twistd for a list). Use \"--\" to pass further " "options to the plugin." msgstr "" -#: bpython/urwid.py:1146 +#: bpython/urwid.py:1204 msgid "Port to run an eval server on (forces Twisted)." msgstr "" -#: bpython/curtsiesfrontend/repl.py:339 +#: bpython/urwid.py:1396 +msgid "" +"WARNING: You are using `bpython-urwid`, the urwid backend for `bpython`. " +"This backend has been deprecated in version 0.19 and might disappear in a" +" future version." +msgstr "" + +#: bpython/curtsiesfrontend/repl.py:350 msgid "Welcome to bpython!" msgstr "" -#: bpython/curtsiesfrontend/repl.py:340 +#: bpython/curtsiesfrontend/repl.py:352 #, python-format msgid "Press <%s> for help." msgstr "" -#: bpython/curtsiesfrontend/repl.py:643 +#: bpython/curtsiesfrontend/repl.py:673 #, python-format msgid "Executing PYTHONSTARTUP failed: %s" msgstr "" -#: bpython/curtsiesfrontend/repl.py:660 +#: bpython/curtsiesfrontend/repl.py:691 #, python-format msgid "Reloaded at %s because %s modified." msgstr "" -#: bpython/curtsiesfrontend/repl.py:929 +#: bpython/curtsiesfrontend/repl.py:993 msgid "Session not reevaluated because it was not edited" msgstr "" -#: bpython/curtsiesfrontend/repl.py:941 +#: bpython/curtsiesfrontend/repl.py:1006 msgid "Session not reevaluated because saved file was blank" msgstr "" -#: bpython/curtsiesfrontend/repl.py:950 +#: bpython/curtsiesfrontend/repl.py:1016 msgid "Session edited and reevaluated" msgstr "" -#: bpython/curtsiesfrontend/repl.py:960 +#: bpython/curtsiesfrontend/repl.py:1027 #, python-format msgid "Reloaded at %s by user." msgstr "" -#: bpython/curtsiesfrontend/repl.py:966 +#: bpython/curtsiesfrontend/repl.py:1033 msgid "Auto-reloading deactivated." msgstr "" -#: bpython/curtsiesfrontend/repl.py:971 +#: bpython/curtsiesfrontend/repl.py:1038 msgid "Auto-reloading active, watching for file changes..." msgstr "" -#: bpython/curtsiesfrontend/repl.py:976 +#: bpython/curtsiesfrontend/repl.py:1044 msgid "Auto-reloading not available because watchdog not installed." msgstr "" diff --git a/bpython/translations/de/LC_MESSAGES/bpython.po b/bpython/translations/de/LC_MESSAGES/bpython.po index fdb8d8bc3..407a9df17 100644 --- a/bpython/translations/de/LC_MESSAGES/bpython.po +++ b/bpython/translations/de/LC_MESSAGES/bpython.po @@ -7,306 +7,328 @@ msgid "" msgstr "" "Project-Id-Version: bpython mercurial\n" "Report-Msgid-Bugs-To: http://github.com/bpython/bpython/issues\n" -"POT-Creation-Date: 2019-09-22 22:17+0200\n" +"POT-Creation-Date: 2020-01-05 13:08+0000\n" "PO-Revision-Date: 2019-09-22 22:54+0200\n" "Last-Translator: Sebastian Ramacher \n" "Language: de\n" "Language-Team: de \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.6.0\n" -"X-Generator: Poedit 2.2.3\n" +"Generated-By: Babel 2.8.0\n" -#: bpython/args.py:63 +#: bpython/args.py:66 msgid "" "Usage: %prog [options] [file [args]]\n" -"NOTE: If bpython sees an argument it does not know, execution falls back to the " -"regular Python interpreter." +"NOTE: If bpython sees an argument it does not know, execution falls back " +"to the regular Python interpreter." msgstr "" "Verwendung: %prog [Optionen] [Datei [Argumente]]\n" -"Hinweis: Wenn bpython Argumente übergeben bekommt, die nicht verstanden werden, " -"wird der normale Python Interpreter ausgeführt." +"Hinweis: Wenn bpython Argumente übergeben bekommt, die nicht verstanden " +"werden, wird der normale Python Interpreter ausgeführt." -#: bpython/args.py:73 +#: bpython/args.py:81 msgid "Use CONFIG instead of default config file." msgstr "Verwende CONFIG antatt der standardmäßigen Konfigurationsdatei." -#: bpython/args.py:75 +#: bpython/args.py:87 msgid "Drop to bpython shell after running file instead of exiting." msgstr "Verbleibe in bpython nach dem Ausführen der Datei." -#: bpython/args.py:78 +#: bpython/args.py:95 msgid "Don't flush the output to stdout." msgstr "Gib Ausgabe beim Beenden nicht ernaut auf stdout aus." -#: bpython/args.py:80 +#: bpython/args.py:101 msgid "Print version and exit." msgstr "Zeige Versionsinformationen an und beende." -#: bpython/cli.py:319 bpython/urwid.py:560 +#: bpython/cli.py:324 bpython/urwid.py:561 msgid "y" msgstr "j" -#: bpython/cli.py:319 bpython/urwid.py:560 +#: bpython/cli.py:324 bpython/urwid.py:561 msgid "yes" msgstr "ja" -#: bpython/cli.py:1705 +#: bpython/cli.py:1743 msgid "Rewind" msgstr "Rückgängig" -#: bpython/cli.py:1706 +#: bpython/cli.py:1744 msgid "Save" msgstr "Speichern" -#: bpython/cli.py:1707 +#: bpython/cli.py:1745 msgid "Pastebin" msgstr "" -#: bpython/cli.py:1708 +#: bpython/cli.py:1746 msgid "Pager" msgstr "" -#: bpython/cli.py:1709 +#: bpython/cli.py:1747 msgid "Show Source" msgstr "Quellcode anzeigen" -#: bpython/curtsies.py:139 +#: bpython/cli.py:1994 +msgid "" +"WARNING: You are using `bpython-cli`, the curses backend for `bpython`. " +"This backend has been deprecated in version 0.19 and might disappear in a" +" future version." +msgstr "" + +#: bpython/cli.py:2003 bpython/curtsies.py:208 bpython/urwid.py:1405 +msgid "" +"WARNING: You are using `bpython` on Python 2. Support for Python 2 has " +"been deprecated in version 0.19 and might disappear in a future version." +msgstr "" + +#: bpython/curtsies.py:152 msgid "log debug messages to bpython.log" msgstr "" -#: bpython/curtsies.py:141 +#: bpython/curtsies.py:158 msgid "start by pasting lines of a file into session" msgstr "" -#: bpython/history.py:222 +#: bpython/history.py:231 #, python-format msgid "Error occurred while writing to file %s (%s)" msgstr "Fehler beim Schreiben in Datei %s aufgetreten (%s)" -#: bpython/paste.py:96 +#: bpython/paste.py:95 msgid "Helper program not found." msgstr "Hilfsprogramm konnte nicht gefunden werden." -#: bpython/paste.py:98 +#: bpython/paste.py:97 msgid "Helper program could not be run." msgstr "Hilfsprogramm konnte nicht ausgeführt werden." -#: bpython/paste.py:102 +#: bpython/paste.py:103 #, python-format msgid "Helper program returned non-zero exit status %d." msgstr "Hilfsprogramm beendete mit Status %d." -#: bpython/paste.py:105 +#: bpython/paste.py:108 msgid "No output from helper program." msgstr "Keine Ausgabe von Hilfsprogramm vorhanden." -#: bpython/paste.py:111 +#: bpython/paste.py:115 msgid "Failed to recognize the helper program's output as an URL." msgstr "Konnte Ausgabe von Hilfsprogramm nicht verarbeiten." -#: bpython/repl.py:672 +#: bpython/repl.py:690 msgid "Nothing to get source of" msgstr "" -#: bpython/repl.py:677 +#: bpython/repl.py:695 #, python-format msgid "Cannot get source: %s" msgstr "Kann Quellcode nicht finden: %s" -#: bpython/repl.py:682 +#: bpython/repl.py:700 #, python-format msgid "Cannot access source of %r" msgstr "Kann auf Quellcode nicht zugreifen: %r" -#: bpython/repl.py:684 +#: bpython/repl.py:702 #, python-format msgid "No source code found for %s" msgstr "Quellcode für %s nicht gefunden" -#: bpython/repl.py:815 +#: bpython/repl.py:841 msgid "Save to file (Esc to cancel): " msgstr "In Datei speichern (Esc um abzubrechen): " -#: bpython/repl.py:817 bpython/repl.py:820 bpython/repl.py:839 +#: bpython/repl.py:843 bpython/repl.py:846 bpython/repl.py:870 msgid "Save cancelled." msgstr "Speichern abgebrochen." -#: bpython/repl.py:830 +#: bpython/repl.py:857 #, python-format msgid "%s already exists. Do you want to (c)ancel, (o)verwrite or (a)ppend? " msgstr "%s existiert bereit. (C) abbrechen, (o) überschrieben oder (a) anhängen?" -#: bpython/repl.py:834 +#: bpython/repl.py:865 msgid "overwrite" msgstr "überschreiben" -#: bpython/repl.py:836 +#: bpython/repl.py:867 msgid "append" msgstr "anhängen" -#: bpython/repl.py:848 bpython/repl.py:1140 +#: bpython/repl.py:879 bpython/repl.py:1192 #, python-format msgid "Error writing file '%s': %s" msgstr "Fehler beim Schreiben in Datei '%s': %s" -#: bpython/repl.py:850 +#: bpython/repl.py:881 #, python-format msgid "Saved to %s." msgstr "Nach %s gespeichert." -#: bpython/repl.py:856 +#: bpython/repl.py:887 msgid "No clipboard available." msgstr "Zwischenablage ist nicht verfügbar." -#: bpython/repl.py:863 +#: bpython/repl.py:894 msgid "Could not copy to clipboard." msgstr "Konnte nicht in Zwischenablage kopieren." -#: bpython/repl.py:865 +#: bpython/repl.py:896 msgid "Copied content to clipboard." msgstr "Inhalt wurde in Zwischenablage kopiert." -#: bpython/repl.py:874 +#: bpython/repl.py:905 msgid "Pastebin buffer? (y/N) " msgstr "" -#: bpython/repl.py:875 +#: bpython/repl.py:907 msgid "Pastebin aborted." msgstr "" -#: bpython/repl.py:882 +#: bpython/repl.py:915 #, python-format msgid "Duplicate pastebin. Previous URL: %s. Removal URL: %s" msgstr "" -#: bpython/repl.py:888 +#: bpython/repl.py:921 msgid "Posting data to pastebin..." msgstr "Lade Daten hoch..." -#: bpython/repl.py:892 +#: bpython/repl.py:925 #, python-format msgid "Upload failed: %s" msgstr "Hochladen ist fehlgeschlagen: %s" -#: bpython/repl.py:900 +#: bpython/repl.py:934 #, python-format msgid "Pastebin URL: %s - Removal URL: %s" msgstr "" -#: bpython/repl.py:903 +#: bpython/repl.py:939 #, python-format msgid "Pastebin URL: %s" msgstr "" -#: bpython/repl.py:938 +#: bpython/repl.py:977 #, python-format msgid "Undo how many lines? (Undo will take up to ~%.1f seconds) [1]" msgstr "" -#: bpython/repl.py:945 bpython/repl.py:949 +#: bpython/repl.py:985 bpython/repl.py:989 msgid "Undo canceled" msgstr "Rückgängigmachen abgebrochen" -#: bpython/repl.py:952 +#: bpython/repl.py:992 #, python-format msgid "Undoing %d line... (est. %.1f seconds)" msgid_plural "Undoing %d lines... (est. %.1f seconds)" msgstr[0] "" msgstr[1] "" -#: bpython/repl.py:1126 +#: bpython/repl.py:1172 msgid "Config file does not exist - create new from default? (y/N)" msgstr "" -"Konfigurationsdatei existiert nicht. Soll eine neue Datei erstellt werden? (j/N)" +"Konfigurationsdatei existiert nicht. Soll eine neue Datei erstellt " +"werden? (j/N)" -#: bpython/repl.py:1148 +#: bpython/repl.py:1202 msgid "bpython config file edited. Restart bpython for changes to take effect." msgstr "" -"bpython Konfigurationsdatei bearbeitet. Starte bpython neu damit die Änderungen " -"übernommen werden." +"bpython Konfigurationsdatei bearbeitet. Starte bpython neu damit die " +"Änderungen übernommen werden." -#: bpython/repl.py:1151 +#: bpython/repl.py:1208 #, python-format msgid "Error editing config file: %s" msgstr "Fehler beim Bearbeiten der Konfigurationsdatei: %s" -#: bpython/urwid.py:622 +#: bpython/urwid.py:628 #, python-format msgid " <%s> Rewind <%s> Save <%s> Pastebin <%s> Pager <%s> Show Source " msgstr "" -#: bpython/urwid.py:1136 +#: bpython/urwid.py:1177 msgid "Run twisted reactor." msgstr "Führe twisted reactor aus." -#: bpython/urwid.py:1138 +#: bpython/urwid.py:1182 msgid "Select specific reactor (see --help-reactors). Implies --twisted." msgstr "Wähle reactor aus (siehe --help-reactors). Impliziert --twisted." -#: bpython/urwid.py:1141 +#: bpython/urwid.py:1190 msgid "List available reactors for -r." msgstr "Liste verfügbare reactors für -r auf." -#: bpython/urwid.py:1143 +#: bpython/urwid.py:1195 msgid "" -"twistd plugin to run (use twistd for a list). Use \"--\" to pass further options " -"to the plugin." +"twistd plugin to run (use twistd for a list). Use \"--\" to pass further " +"options to the plugin." msgstr "" -"Auszuführendes twistd Plugin (starte twistd für eine Liste). Verwende \"--\" um " -"Optionen an das Plugin zu übergeben." +"Auszuführendes twistd Plugin (starte twistd für eine Liste). Verwende " +"\"--\" um Optionen an das Plugin zu übergeben." -#: bpython/urwid.py:1146 +#: bpython/urwid.py:1204 msgid "Port to run an eval server on (forces Twisted)." msgstr "" -#: bpython/curtsiesfrontend/repl.py:339 +#: bpython/urwid.py:1396 +msgid "" +"WARNING: You are using `bpython-urwid`, the urwid backend for `bpython`. " +"This backend has been deprecated in version 0.19 and might disappear in a" +" future version." +msgstr "" + +#: bpython/curtsiesfrontend/repl.py:350 msgid "Welcome to bpython!" msgstr "Willkommen by bpython!" -#: bpython/curtsiesfrontend/repl.py:340 +#: bpython/curtsiesfrontend/repl.py:352 #, python-format msgid "Press <%s> for help." msgstr "Drücke <%s> für Hilfe." -#: bpython/curtsiesfrontend/repl.py:643 +#: bpython/curtsiesfrontend/repl.py:673 #, python-format msgid "Executing PYTHONSTARTUP failed: %s" msgstr "Fehler beim Ausführen von PYTHONSTARTUP: %s" -#: bpython/curtsiesfrontend/repl.py:660 +#: bpython/curtsiesfrontend/repl.py:691 #, python-format msgid "Reloaded at %s because %s modified." msgstr "Bei %s neugeladen, da %s modifiziert wurde." -#: bpython/curtsiesfrontend/repl.py:929 +#: bpython/curtsiesfrontend/repl.py:993 msgid "Session not reevaluated because it was not edited" msgstr "Die Sitzung wurde nicht neu ausgeführt, da sie nicht berabeitet wurde" -#: bpython/curtsiesfrontend/repl.py:941 +#: bpython/curtsiesfrontend/repl.py:1006 msgid "Session not reevaluated because saved file was blank" msgstr "Die Sitzung wurde nicht neu ausgeführt, da die gespeicherte Datei leer war" -#: bpython/curtsiesfrontend/repl.py:950 +#: bpython/curtsiesfrontend/repl.py:1016 msgid "Session edited and reevaluated" msgstr "Sitzung bearbeitet und neu ausgeführt" -#: bpython/curtsiesfrontend/repl.py:960 +#: bpython/curtsiesfrontend/repl.py:1027 #, python-format msgid "Reloaded at %s by user." msgstr "Bei %s vom Benutzer neu geladen." -#: bpython/curtsiesfrontend/repl.py:966 +#: bpython/curtsiesfrontend/repl.py:1033 msgid "Auto-reloading deactivated." msgstr "Automatisches Neuladen deaktiviert." -#: bpython/curtsiesfrontend/repl.py:971 +#: bpython/curtsiesfrontend/repl.py:1038 msgid "Auto-reloading active, watching for file changes..." msgstr "Automatisches Neuladen ist aktiv; beobachte Dateiänderungen..." -#: bpython/curtsiesfrontend/repl.py:976 +#: bpython/curtsiesfrontend/repl.py:1044 msgid "Auto-reloading not available because watchdog not installed." msgstr "" -"Automatisches Neuladen ist nicht verfügbar da watchdog nicht installiert ist." +"Automatisches Neuladen ist nicht verfügbar da watchdog nicht installiert " +"ist." + diff --git a/bpython/translations/es_ES/LC_MESSAGES/bpython.po b/bpython/translations/es_ES/LC_MESSAGES/bpython.po index 5ede109be..331c672ac 100644 --- a/bpython/translations/es_ES/LC_MESSAGES/bpython.po +++ b/bpython/translations/es_ES/LC_MESSAGES/bpython.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: bpython 0.9.7\n" "Report-Msgid-Bugs-To: http://github.com/bpython/bpython/issues\n" -"POT-Creation-Date: 2019-09-22 22:17+0200\n" +"POT-Creation-Date: 2020-01-05 13:08+0000\n" "PO-Revision-Date: 2015-02-02 00:34+0100\n" "Last-Translator: Sebastian Ramacher \n" "Language: es_ES\n" @@ -16,290 +16,310 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.6.0\n" +"Generated-By: Babel 2.8.0\n" -#: bpython/args.py:63 +#: bpython/args.py:66 msgid "" "Usage: %prog [options] [file [args]]\n" "NOTE: If bpython sees an argument it does not know, execution falls back " "to the regular Python interpreter." msgstr "" -#: bpython/args.py:73 +#: bpython/args.py:81 msgid "Use CONFIG instead of default config file." msgstr "" -#: bpython/args.py:75 +#: bpython/args.py:87 msgid "Drop to bpython shell after running file instead of exiting." msgstr "" -#: bpython/args.py:78 +#: bpython/args.py:95 msgid "Don't flush the output to stdout." msgstr "" -#: bpython/args.py:80 +#: bpython/args.py:101 msgid "Print version and exit." msgstr "" -#: bpython/cli.py:319 bpython/urwid.py:560 +#: bpython/cli.py:324 bpython/urwid.py:561 msgid "y" msgstr "s" -#: bpython/cli.py:319 bpython/urwid.py:560 +#: bpython/cli.py:324 bpython/urwid.py:561 msgid "yes" msgstr "si" -#: bpython/cli.py:1705 +#: bpython/cli.py:1743 msgid "Rewind" msgstr "" -#: bpython/cli.py:1706 +#: bpython/cli.py:1744 msgid "Save" msgstr "" -#: bpython/cli.py:1707 +#: bpython/cli.py:1745 msgid "Pastebin" msgstr "" -#: bpython/cli.py:1708 +#: bpython/cli.py:1746 msgid "Pager" msgstr "" -#: bpython/cli.py:1709 +#: bpython/cli.py:1747 msgid "Show Source" msgstr "" -#: bpython/curtsies.py:139 +#: bpython/cli.py:1994 +msgid "" +"WARNING: You are using `bpython-cli`, the curses backend for `bpython`. " +"This backend has been deprecated in version 0.19 and might disappear in a" +" future version." +msgstr "" + +#: bpython/cli.py:2003 bpython/curtsies.py:208 bpython/urwid.py:1405 +msgid "" +"WARNING: You are using `bpython` on Python 2. Support for Python 2 has " +"been deprecated in version 0.19 and might disappear in a future version." +msgstr "" + +#: bpython/curtsies.py:152 msgid "log debug messages to bpython.log" msgstr "" -#: bpython/curtsies.py:141 +#: bpython/curtsies.py:158 msgid "start by pasting lines of a file into session" msgstr "" -#: bpython/history.py:222 +#: bpython/history.py:231 #, python-format msgid "Error occurred while writing to file %s (%s)" msgstr "" -#: bpython/paste.py:96 +#: bpython/paste.py:95 msgid "Helper program not found." msgstr "" -#: bpython/paste.py:98 +#: bpython/paste.py:97 msgid "Helper program could not be run." msgstr "" -#: bpython/paste.py:102 +#: bpython/paste.py:103 #, python-format msgid "Helper program returned non-zero exit status %d." msgstr "" -#: bpython/paste.py:105 +#: bpython/paste.py:108 msgid "No output from helper program." msgstr "" -#: bpython/paste.py:111 +#: bpython/paste.py:115 msgid "Failed to recognize the helper program's output as an URL." msgstr "" -#: bpython/repl.py:672 +#: bpython/repl.py:690 msgid "Nothing to get source of" msgstr "" -#: bpython/repl.py:677 +#: bpython/repl.py:695 #, python-format msgid "Cannot get source: %s" msgstr "" -#: bpython/repl.py:682 +#: bpython/repl.py:700 #, python-format msgid "Cannot access source of %r" msgstr "" -#: bpython/repl.py:684 +#: bpython/repl.py:702 #, python-format msgid "No source code found for %s" msgstr "" -#: bpython/repl.py:815 +#: bpython/repl.py:841 msgid "Save to file (Esc to cancel): " msgstr "" -#: bpython/repl.py:817 bpython/repl.py:820 bpython/repl.py:839 +#: bpython/repl.py:843 bpython/repl.py:846 bpython/repl.py:870 msgid "Save cancelled." msgstr "" -#: bpython/repl.py:830 +#: bpython/repl.py:857 #, python-format msgid "%s already exists. Do you want to (c)ancel, (o)verwrite or (a)ppend? " msgstr "" -#: bpython/repl.py:834 +#: bpython/repl.py:865 msgid "overwrite" msgstr "" -#: bpython/repl.py:836 +#: bpython/repl.py:867 msgid "append" msgstr "" -#: bpython/repl.py:848 bpython/repl.py:1140 +#: bpython/repl.py:879 bpython/repl.py:1192 #, python-format msgid "Error writing file '%s': %s" msgstr "" -#: bpython/repl.py:850 +#: bpython/repl.py:881 #, python-format msgid "Saved to %s." msgstr "" -#: bpython/repl.py:856 +#: bpython/repl.py:887 msgid "No clipboard available." msgstr "" -#: bpython/repl.py:863 +#: bpython/repl.py:894 msgid "Could not copy to clipboard." msgstr "" -#: bpython/repl.py:865 +#: bpython/repl.py:896 msgid "Copied content to clipboard." msgstr "" -#: bpython/repl.py:874 +#: bpython/repl.py:905 msgid "Pastebin buffer? (y/N) " msgstr "" -#: bpython/repl.py:875 +#: bpython/repl.py:907 msgid "Pastebin aborted." msgstr "" -#: bpython/repl.py:882 +#: bpython/repl.py:915 #, python-format msgid "Duplicate pastebin. Previous URL: %s. Removal URL: %s" msgstr "" -#: bpython/repl.py:888 +#: bpython/repl.py:921 msgid "Posting data to pastebin..." msgstr "" -#: bpython/repl.py:892 +#: bpython/repl.py:925 #, python-format msgid "Upload failed: %s" msgstr "" -#: bpython/repl.py:900 +#: bpython/repl.py:934 #, python-format msgid "Pastebin URL: %s - Removal URL: %s" msgstr "" -#: bpython/repl.py:903 +#: bpython/repl.py:939 #, python-format msgid "Pastebin URL: %s" msgstr "" -#: bpython/repl.py:938 +#: bpython/repl.py:977 #, python-format msgid "Undo how many lines? (Undo will take up to ~%.1f seconds) [1]" msgstr "" -#: bpython/repl.py:945 bpython/repl.py:949 +#: bpython/repl.py:985 bpython/repl.py:989 msgid "Undo canceled" msgstr "" -#: bpython/repl.py:952 +#: bpython/repl.py:992 #, python-format msgid "Undoing %d line... (est. %.1f seconds)" msgid_plural "Undoing %d lines... (est. %.1f seconds)" msgstr[0] "" msgstr[1] "" -#: bpython/repl.py:1126 +#: bpython/repl.py:1172 msgid "Config file does not exist - create new from default? (y/N)" msgstr "" -#: bpython/repl.py:1148 +#: bpython/repl.py:1202 msgid "bpython config file edited. Restart bpython for changes to take effect." msgstr "" -#: bpython/repl.py:1151 +#: bpython/repl.py:1208 #, python-format msgid "Error editing config file: %s" msgstr "" -#: bpython/urwid.py:622 +#: bpython/urwid.py:628 #, python-format msgid " <%s> Rewind <%s> Save <%s> Pastebin <%s> Pager <%s> Show Source " msgstr "" " <%s> Rewind <%s> Salva <%s> Pastebin <%s> Pager <%s> Mostra el " "código fuente" -#: bpython/urwid.py:1136 +#: bpython/urwid.py:1177 msgid "Run twisted reactor." msgstr "" -#: bpython/urwid.py:1138 +#: bpython/urwid.py:1182 msgid "Select specific reactor (see --help-reactors). Implies --twisted." msgstr "" -#: bpython/urwid.py:1141 +#: bpython/urwid.py:1190 msgid "List available reactors for -r." msgstr "" -#: bpython/urwid.py:1143 +#: bpython/urwid.py:1195 msgid "" "twistd plugin to run (use twistd for a list). Use \"--\" to pass further " "options to the plugin." msgstr "" -#: bpython/urwid.py:1146 +#: bpython/urwid.py:1204 msgid "Port to run an eval server on (forces Twisted)." msgstr "" -#: bpython/curtsiesfrontend/repl.py:339 +#: bpython/urwid.py:1396 +msgid "" +"WARNING: You are using `bpython-urwid`, the urwid backend for `bpython`. " +"This backend has been deprecated in version 0.19 and might disappear in a" +" future version." +msgstr "" + +#: bpython/curtsiesfrontend/repl.py:350 msgid "Welcome to bpython!" msgstr "" -#: bpython/curtsiesfrontend/repl.py:340 +#: bpython/curtsiesfrontend/repl.py:352 #, python-format msgid "Press <%s> for help." msgstr "" -#: bpython/curtsiesfrontend/repl.py:643 +#: bpython/curtsiesfrontend/repl.py:673 #, python-format msgid "Executing PYTHONSTARTUP failed: %s" msgstr "" -#: bpython/curtsiesfrontend/repl.py:660 +#: bpython/curtsiesfrontend/repl.py:691 #, python-format msgid "Reloaded at %s because %s modified." msgstr "" -#: bpython/curtsiesfrontend/repl.py:929 +#: bpython/curtsiesfrontend/repl.py:993 msgid "Session not reevaluated because it was not edited" msgstr "" -#: bpython/curtsiesfrontend/repl.py:941 +#: bpython/curtsiesfrontend/repl.py:1006 msgid "Session not reevaluated because saved file was blank" msgstr "" -#: bpython/curtsiesfrontend/repl.py:950 +#: bpython/curtsiesfrontend/repl.py:1016 msgid "Session edited and reevaluated" msgstr "" -#: bpython/curtsiesfrontend/repl.py:960 +#: bpython/curtsiesfrontend/repl.py:1027 #, python-format msgid "Reloaded at %s by user." msgstr "" -#: bpython/curtsiesfrontend/repl.py:966 +#: bpython/curtsiesfrontend/repl.py:1033 msgid "Auto-reloading deactivated." msgstr "" -#: bpython/curtsiesfrontend/repl.py:971 +#: bpython/curtsiesfrontend/repl.py:1038 msgid "Auto-reloading active, watching for file changes..." msgstr "" -#: bpython/curtsiesfrontend/repl.py:976 +#: bpython/curtsiesfrontend/repl.py:1044 msgid "Auto-reloading not available because watchdog not installed." msgstr "" diff --git a/bpython/translations/fr_FR/LC_MESSAGES/bpython.po b/bpython/translations/fr_FR/LC_MESSAGES/bpython.po index d16700c75..bc03d38d5 100644 --- a/bpython/translations/fr_FR/LC_MESSAGES/bpython.po +++ b/bpython/translations/fr_FR/LC_MESSAGES/bpython.po @@ -6,305 +6,326 @@ msgid "" msgstr "" "Project-Id-Version: bpython 0.13-442\n" "Report-Msgid-Bugs-To: http://github.com/bpython/bpython/issues\n" -"POT-Creation-Date: 2019-09-22 22:17+0200\n" +"POT-Creation-Date: 2020-01-05 13:08+0000\n" "PO-Revision-Date: 2019-09-22 22:58+0200\n" "Last-Translator: Sebastian Ramacher \n" "Language: fr_FR\n" "Language-Team: bpython developers\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=2; plural=(n > 1)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.6.0\n" -"X-Generator: Poedit 2.2.3\n" +"Generated-By: Babel 2.8.0\n" -#: bpython/args.py:63 +#: bpython/args.py:66 msgid "" "Usage: %prog [options] [file [args]]\n" -"NOTE: If bpython sees an argument it does not know, execution falls back to the " -"regular Python interpreter." +"NOTE: If bpython sees an argument it does not know, execution falls back " +"to the regular Python interpreter." msgstr "" "Utilisation: %prog [options] [fichier [arguments]]\n" -"NOTE: Si bpython ne reconnaît pas un des arguments fournis, l'interpréteur " -"Python classique sera lancé" +"NOTE: Si bpython ne reconnaît pas un des arguments fournis, " +"l'interpréteur Python classique sera lancé" -#: bpython/args.py:73 +#: bpython/args.py:81 msgid "Use CONFIG instead of default config file." msgstr "Utiliser CONFIG à la place du fichier de configuration par défaut." -#: bpython/args.py:75 +#: bpython/args.py:87 msgid "Drop to bpython shell after running file instead of exiting." msgstr "" -"Aller dans le shell bpython après l'exécution du fichier au lieu de quitter." +"Aller dans le shell bpython après l'exécution du fichier au lieu de " +"quitter." -#: bpython/args.py:78 +#: bpython/args.py:95 msgid "Don't flush the output to stdout." msgstr "Ne pas purger la sortie vers stdout." -#: bpython/args.py:80 +#: bpython/args.py:101 msgid "Print version and exit." msgstr "Afficher la version et quitter." -#: bpython/cli.py:319 bpython/urwid.py:560 +#: bpython/cli.py:324 bpython/urwid.py:561 msgid "y" msgstr "o" -#: bpython/cli.py:319 bpython/urwid.py:560 +#: bpython/cli.py:324 bpython/urwid.py:561 msgid "yes" msgstr "oui" -#: bpython/cli.py:1705 +#: bpython/cli.py:1743 msgid "Rewind" msgstr "Rembobiner" -#: bpython/cli.py:1706 +#: bpython/cli.py:1744 msgid "Save" msgstr "Sauvegarder" -#: bpython/cli.py:1707 +#: bpython/cli.py:1745 msgid "Pastebin" msgstr "" -#: bpython/cli.py:1708 +#: bpython/cli.py:1746 msgid "Pager" msgstr "" -#: bpython/cli.py:1709 +#: bpython/cli.py:1747 msgid "Show Source" msgstr "Montrer le code source" -#: bpython/curtsies.py:139 +#: bpython/cli.py:1994 +msgid "" +"WARNING: You are using `bpython-cli`, the curses backend for `bpython`. " +"This backend has been deprecated in version 0.19 and might disappear in a" +" future version." +msgstr "" + +#: bpython/cli.py:2003 bpython/curtsies.py:208 bpython/urwid.py:1405 +msgid "" +"WARNING: You are using `bpython` on Python 2. Support for Python 2 has " +"been deprecated in version 0.19 and might disappear in a future version." +msgstr "" + +#: bpython/curtsies.py:152 msgid "log debug messages to bpython.log" msgstr "logger les messages de debug dans bpython.log" -#: bpython/curtsies.py:141 +#: bpython/curtsies.py:158 msgid "start by pasting lines of a file into session" msgstr "" -#: bpython/history.py:222 +#: bpython/history.py:231 #, python-format msgid "Error occurred while writing to file %s (%s)" msgstr "Une erreur s'est produite pendant l'écriture du fichier %s (%s)" -#: bpython/paste.py:96 +#: bpython/paste.py:95 msgid "Helper program not found." msgstr "programme externe non trouvé." -#: bpython/paste.py:98 +#: bpython/paste.py:97 msgid "Helper program could not be run." msgstr "impossible de lancer le programme externe." -#: bpython/paste.py:102 +#: bpython/paste.py:103 #, python-format msgid "Helper program returned non-zero exit status %d." msgstr "le programme externe a renvoyé un statut de sortie différent de zéro %d." -#: bpython/paste.py:105 +#: bpython/paste.py:108 msgid "No output from helper program." msgstr "pas de sortie du programme externe." -#: bpython/paste.py:111 +#: bpython/paste.py:115 msgid "Failed to recognize the helper program's output as an URL." msgstr "la sortie du programme externe ne correspond pas à une URL." -#: bpython/repl.py:672 +#: bpython/repl.py:690 msgid "Nothing to get source of" msgstr "" -#: bpython/repl.py:677 +#: bpython/repl.py:695 #, python-format msgid "Cannot get source: %s" msgstr "Impossible de récupérer le source: %s" -#: bpython/repl.py:682 +#: bpython/repl.py:700 #, python-format msgid "Cannot access source of %r" msgstr "Impossible d'accéder au source de %r" -#: bpython/repl.py:684 +#: bpython/repl.py:702 #, python-format msgid "No source code found for %s" msgstr "Pas de code source trouvé pour %s" -#: bpython/repl.py:815 +#: bpython/repl.py:841 msgid "Save to file (Esc to cancel): " msgstr "" -#: bpython/repl.py:817 bpython/repl.py:820 bpython/repl.py:839 +#: bpython/repl.py:843 bpython/repl.py:846 bpython/repl.py:870 msgid "Save cancelled." msgstr "" -#: bpython/repl.py:830 +#: bpython/repl.py:857 #, python-format msgid "%s already exists. Do you want to (c)ancel, (o)verwrite or (a)ppend? " msgstr "" -#: bpython/repl.py:834 +#: bpython/repl.py:865 msgid "overwrite" msgstr "" -#: bpython/repl.py:836 +#: bpython/repl.py:867 msgid "append" msgstr "" -#: bpython/repl.py:848 bpython/repl.py:1140 +#: bpython/repl.py:879 bpython/repl.py:1192 #, python-format msgid "Error writing file '%s': %s" msgstr "Une erreur s'est produite pendant l'écriture du fichier '%s': %s" -#: bpython/repl.py:850 +#: bpython/repl.py:881 #, python-format msgid "Saved to %s." msgstr "" -#: bpython/repl.py:856 +#: bpython/repl.py:887 msgid "No clipboard available." msgstr "Pas de presse-papier disponible." -#: bpython/repl.py:863 +#: bpython/repl.py:894 msgid "Could not copy to clipboard." msgstr "Impossible de copier vers le presse-papier." -#: bpython/repl.py:865 +#: bpython/repl.py:896 msgid "Copied content to clipboard." msgstr "Contenu copié vers le presse-papier." -#: bpython/repl.py:874 +#: bpython/repl.py:905 msgid "Pastebin buffer? (y/N) " msgstr "Tampon Pastebin ? (o/N) " -#: bpython/repl.py:875 +#: bpython/repl.py:907 msgid "Pastebin aborted." msgstr "Pastebin abandonné." -#: bpython/repl.py:882 +#: bpython/repl.py:915 #, python-format msgid "Duplicate pastebin. Previous URL: %s. Removal URL: %s" msgstr "Pastebin dupliqué. URL précédente: %s. URL de suppression: %s" -#: bpython/repl.py:888 +#: bpython/repl.py:921 msgid "Posting data to pastebin..." msgstr "Envoi des donnés à pastebin..." -#: bpython/repl.py:892 +#: bpython/repl.py:925 #, python-format msgid "Upload failed: %s" msgstr "Echec du téléchargement: %s" -#: bpython/repl.py:900 +#: bpython/repl.py:934 #, python-format msgid "Pastebin URL: %s - Removal URL: %s" msgstr "URL Pastebin: %s - URL de suppression: %s" -#: bpython/repl.py:903 +#: bpython/repl.py:939 #, python-format msgid "Pastebin URL: %s" msgstr "URL Pastebin: %s" -#: bpython/repl.py:938 +#: bpython/repl.py:977 #, python-format msgid "Undo how many lines? (Undo will take up to ~%.1f seconds) [1]" msgstr "" -#: bpython/repl.py:945 bpython/repl.py:949 +#: bpython/repl.py:985 bpython/repl.py:989 msgid "Undo canceled" msgstr "" -#: bpython/repl.py:952 +#: bpython/repl.py:992 #, python-format msgid "Undoing %d line... (est. %.1f seconds)" msgid_plural "Undoing %d lines... (est. %.1f seconds)" msgstr[0] "" msgstr[1] "" -#: bpython/repl.py:1126 +#: bpython/repl.py:1172 msgid "Config file does not exist - create new from default? (y/N)" msgstr "Le fichier de configuration n'existe pas - en créér un par défaut? (o/N)" -#: bpython/repl.py:1148 +#: bpython/repl.py:1202 msgid "bpython config file edited. Restart bpython for changes to take effect." msgstr "" -#: bpython/repl.py:1151 +#: bpython/repl.py:1208 #, python-format msgid "Error editing config file: %s" msgstr "" -#: bpython/urwid.py:622 +#: bpython/urwid.py:628 #, python-format msgid " <%s> Rewind <%s> Save <%s> Pastebin <%s> Pager <%s> Show Source " msgstr "" -" <%s> Rebobiner <%s> Sauvegarder <%s> Pastebin <%s> Pager <%s> Montrer " -"Source " +" <%s> Rebobiner <%s> Sauvegarder <%s> Pastebin <%s> Pager <%s> " +"Montrer Source " -#: bpython/urwid.py:1136 +#: bpython/urwid.py:1177 msgid "Run twisted reactor." msgstr "Lancer le reactor twisted." -#: bpython/urwid.py:1138 +#: bpython/urwid.py:1182 msgid "Select specific reactor (see --help-reactors). Implies --twisted." msgstr "Choisir un reactor spécifique (voir --help-reactors). Nécessite --twisted." -#: bpython/urwid.py:1141 +#: bpython/urwid.py:1190 msgid "List available reactors for -r." msgstr "Lister les reactors disponibles pour -r." -#: bpython/urwid.py:1143 +#: bpython/urwid.py:1195 msgid "" -"twistd plugin to run (use twistd for a list). Use \"--\" to pass further options " -"to the plugin." +"twistd plugin to run (use twistd for a list). Use \"--\" to pass further " +"options to the plugin." msgstr "" -"plugin twistd à lancer (utiliser twistd pour une list). Utiliser \"--\" pour " -"donner plus d'options au plugin." +"plugin twistd à lancer (utiliser twistd pour une list). Utiliser \"--\" " +"pour donner plus d'options au plugin." -#: bpython/urwid.py:1146 +#: bpython/urwid.py:1204 msgid "Port to run an eval server on (forces Twisted)." msgstr "Port pour lancer un server eval (force Twisted)." -#: bpython/curtsiesfrontend/repl.py:339 +#: bpython/urwid.py:1396 +msgid "" +"WARNING: You are using `bpython-urwid`, the urwid backend for `bpython`. " +"This backend has been deprecated in version 0.19 and might disappear in a" +" future version." +msgstr "" + +#: bpython/curtsiesfrontend/repl.py:350 msgid "Welcome to bpython!" msgstr "Bienvenue dans bpython!" -#: bpython/curtsiesfrontend/repl.py:340 +#: bpython/curtsiesfrontend/repl.py:352 #, python-format msgid "Press <%s> for help." msgstr "Appuyer sur <%s> pour de l'aide." -#: bpython/curtsiesfrontend/repl.py:643 +#: bpython/curtsiesfrontend/repl.py:673 #, python-format msgid "Executing PYTHONSTARTUP failed: %s" msgstr "L'exécution de PYTHONSTARTUP a échoué: %s" -#: bpython/curtsiesfrontend/repl.py:660 +#: bpython/curtsiesfrontend/repl.py:691 #, python-format msgid "Reloaded at %s because %s modified." msgstr "" -#: bpython/curtsiesfrontend/repl.py:929 +#: bpython/curtsiesfrontend/repl.py:993 msgid "Session not reevaluated because it was not edited" msgstr "" -#: bpython/curtsiesfrontend/repl.py:941 +#: bpython/curtsiesfrontend/repl.py:1006 msgid "Session not reevaluated because saved file was blank" msgstr "" -#: bpython/curtsiesfrontend/repl.py:950 +#: bpython/curtsiesfrontend/repl.py:1016 msgid "Session edited and reevaluated" msgstr "" -#: bpython/curtsiesfrontend/repl.py:960 +#: bpython/curtsiesfrontend/repl.py:1027 #, python-format msgid "Reloaded at %s by user." msgstr "" -#: bpython/curtsiesfrontend/repl.py:966 +#: bpython/curtsiesfrontend/repl.py:1033 msgid "Auto-reloading deactivated." msgstr "" -#: bpython/curtsiesfrontend/repl.py:971 +#: bpython/curtsiesfrontend/repl.py:1038 msgid "Auto-reloading active, watching for file changes..." msgstr "" -#: bpython/curtsiesfrontend/repl.py:976 +#: bpython/curtsiesfrontend/repl.py:1044 msgid "Auto-reloading not available because watchdog not installed." msgstr "" + diff --git a/bpython/translations/it_IT/LC_MESSAGES/bpython.po b/bpython/translations/it_IT/LC_MESSAGES/bpython.po index aaa50c495..f9a471d9d 100644 --- a/bpython/translations/it_IT/LC_MESSAGES/bpython.po +++ b/bpython/translations/it_IT/LC_MESSAGES/bpython.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: bpython 0.9.7\n" "Report-Msgid-Bugs-To: http://github.com/bpython/bpython/issues\n" -"POT-Creation-Date: 2019-09-22 22:17+0200\n" +"POT-Creation-Date: 2020-01-05 13:08+0000\n" "PO-Revision-Date: 2015-02-02 00:34+0100\n" "Last-Translator: Sebastian Ramacher \n" "Language: it_IT\n" @@ -16,288 +16,308 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.6.0\n" +"Generated-By: Babel 2.8.0\n" -#: bpython/args.py:63 +#: bpython/args.py:66 msgid "" "Usage: %prog [options] [file [args]]\n" "NOTE: If bpython sees an argument it does not know, execution falls back " "to the regular Python interpreter." msgstr "" -#: bpython/args.py:73 +#: bpython/args.py:81 msgid "Use CONFIG instead of default config file." msgstr "" -#: bpython/args.py:75 +#: bpython/args.py:87 msgid "Drop to bpython shell after running file instead of exiting." msgstr "" -#: bpython/args.py:78 +#: bpython/args.py:95 msgid "Don't flush the output to stdout." msgstr "" -#: bpython/args.py:80 +#: bpython/args.py:101 msgid "Print version and exit." msgstr "" -#: bpython/cli.py:319 bpython/urwid.py:560 +#: bpython/cli.py:324 bpython/urwid.py:561 msgid "y" msgstr "s" -#: bpython/cli.py:319 bpython/urwid.py:560 +#: bpython/cli.py:324 bpython/urwid.py:561 msgid "yes" msgstr "si" -#: bpython/cli.py:1705 +#: bpython/cli.py:1743 msgid "Rewind" msgstr "" -#: bpython/cli.py:1706 +#: bpython/cli.py:1744 msgid "Save" msgstr "" -#: bpython/cli.py:1707 +#: bpython/cli.py:1745 msgid "Pastebin" msgstr "" -#: bpython/cli.py:1708 +#: bpython/cli.py:1746 msgid "Pager" msgstr "" -#: bpython/cli.py:1709 +#: bpython/cli.py:1747 msgid "Show Source" msgstr "" -#: bpython/curtsies.py:139 +#: bpython/cli.py:1994 +msgid "" +"WARNING: You are using `bpython-cli`, the curses backend for `bpython`. " +"This backend has been deprecated in version 0.19 and might disappear in a" +" future version." +msgstr "" + +#: bpython/cli.py:2003 bpython/curtsies.py:208 bpython/urwid.py:1405 +msgid "" +"WARNING: You are using `bpython` on Python 2. Support for Python 2 has " +"been deprecated in version 0.19 and might disappear in a future version." +msgstr "" + +#: bpython/curtsies.py:152 msgid "log debug messages to bpython.log" msgstr "" -#: bpython/curtsies.py:141 +#: bpython/curtsies.py:158 msgid "start by pasting lines of a file into session" msgstr "" -#: bpython/history.py:222 +#: bpython/history.py:231 #, python-format msgid "Error occurred while writing to file %s (%s)" msgstr "" -#: bpython/paste.py:96 +#: bpython/paste.py:95 msgid "Helper program not found." msgstr "" -#: bpython/paste.py:98 +#: bpython/paste.py:97 msgid "Helper program could not be run." msgstr "" -#: bpython/paste.py:102 +#: bpython/paste.py:103 #, python-format msgid "Helper program returned non-zero exit status %d." msgstr "" -#: bpython/paste.py:105 +#: bpython/paste.py:108 msgid "No output from helper program." msgstr "" -#: bpython/paste.py:111 +#: bpython/paste.py:115 msgid "Failed to recognize the helper program's output as an URL." msgstr "" -#: bpython/repl.py:672 +#: bpython/repl.py:690 msgid "Nothing to get source of" msgstr "" -#: bpython/repl.py:677 +#: bpython/repl.py:695 #, python-format msgid "Cannot get source: %s" msgstr "" -#: bpython/repl.py:682 +#: bpython/repl.py:700 #, python-format msgid "Cannot access source of %r" msgstr "" -#: bpython/repl.py:684 +#: bpython/repl.py:702 #, python-format msgid "No source code found for %s" msgstr "" -#: bpython/repl.py:815 +#: bpython/repl.py:841 msgid "Save to file (Esc to cancel): " msgstr "" -#: bpython/repl.py:817 bpython/repl.py:820 bpython/repl.py:839 +#: bpython/repl.py:843 bpython/repl.py:846 bpython/repl.py:870 msgid "Save cancelled." msgstr "" -#: bpython/repl.py:830 +#: bpython/repl.py:857 #, python-format msgid "%s already exists. Do you want to (c)ancel, (o)verwrite or (a)ppend? " msgstr "" -#: bpython/repl.py:834 +#: bpython/repl.py:865 msgid "overwrite" msgstr "" -#: bpython/repl.py:836 +#: bpython/repl.py:867 msgid "append" msgstr "" -#: bpython/repl.py:848 bpython/repl.py:1140 +#: bpython/repl.py:879 bpython/repl.py:1192 #, python-format msgid "Error writing file '%s': %s" msgstr "" -#: bpython/repl.py:850 +#: bpython/repl.py:881 #, python-format msgid "Saved to %s." msgstr "" -#: bpython/repl.py:856 +#: bpython/repl.py:887 msgid "No clipboard available." msgstr "" -#: bpython/repl.py:863 +#: bpython/repl.py:894 msgid "Could not copy to clipboard." msgstr "" -#: bpython/repl.py:865 +#: bpython/repl.py:896 msgid "Copied content to clipboard." msgstr "" -#: bpython/repl.py:874 +#: bpython/repl.py:905 msgid "Pastebin buffer? (y/N) " msgstr "" -#: bpython/repl.py:875 +#: bpython/repl.py:907 msgid "Pastebin aborted." msgstr "" -#: bpython/repl.py:882 +#: bpython/repl.py:915 #, python-format msgid "Duplicate pastebin. Previous URL: %s. Removal URL: %s" msgstr "" -#: bpython/repl.py:888 +#: bpython/repl.py:921 msgid "Posting data to pastebin..." msgstr "" -#: bpython/repl.py:892 +#: bpython/repl.py:925 #, python-format msgid "Upload failed: %s" msgstr "" -#: bpython/repl.py:900 +#: bpython/repl.py:934 #, python-format msgid "Pastebin URL: %s - Removal URL: %s" msgstr "" -#: bpython/repl.py:903 +#: bpython/repl.py:939 #, python-format msgid "Pastebin URL: %s" msgstr "" -#: bpython/repl.py:938 +#: bpython/repl.py:977 #, python-format msgid "Undo how many lines? (Undo will take up to ~%.1f seconds) [1]" msgstr "" -#: bpython/repl.py:945 bpython/repl.py:949 +#: bpython/repl.py:985 bpython/repl.py:989 msgid "Undo canceled" msgstr "" -#: bpython/repl.py:952 +#: bpython/repl.py:992 #, python-format msgid "Undoing %d line... (est. %.1f seconds)" msgid_plural "Undoing %d lines... (est. %.1f seconds)" msgstr[0] "" msgstr[1] "" -#: bpython/repl.py:1126 +#: bpython/repl.py:1172 msgid "Config file does not exist - create new from default? (y/N)" msgstr "" -#: bpython/repl.py:1148 +#: bpython/repl.py:1202 msgid "bpython config file edited. Restart bpython for changes to take effect." msgstr "" -#: bpython/repl.py:1151 +#: bpython/repl.py:1208 #, python-format msgid "Error editing config file: %s" msgstr "" -#: bpython/urwid.py:622 +#: bpython/urwid.py:628 #, python-format msgid " <%s> Rewind <%s> Save <%s> Pastebin <%s> Pager <%s> Show Source " msgstr " <%s> Rewind <%s> Salva <%s> Pastebin <%s> Pager <%s> Mostra Sorgente" -#: bpython/urwid.py:1136 +#: bpython/urwid.py:1177 msgid "Run twisted reactor." msgstr "" -#: bpython/urwid.py:1138 +#: bpython/urwid.py:1182 msgid "Select specific reactor (see --help-reactors). Implies --twisted." msgstr "" -#: bpython/urwid.py:1141 +#: bpython/urwid.py:1190 msgid "List available reactors for -r." msgstr "" -#: bpython/urwid.py:1143 +#: bpython/urwid.py:1195 msgid "" "twistd plugin to run (use twistd for a list). Use \"--\" to pass further " "options to the plugin." msgstr "" -#: bpython/urwid.py:1146 +#: bpython/urwid.py:1204 msgid "Port to run an eval server on (forces Twisted)." msgstr "" -#: bpython/curtsiesfrontend/repl.py:339 +#: bpython/urwid.py:1396 +msgid "" +"WARNING: You are using `bpython-urwid`, the urwid backend for `bpython`. " +"This backend has been deprecated in version 0.19 and might disappear in a" +" future version." +msgstr "" + +#: bpython/curtsiesfrontend/repl.py:350 msgid "Welcome to bpython!" msgstr "" -#: bpython/curtsiesfrontend/repl.py:340 +#: bpython/curtsiesfrontend/repl.py:352 #, python-format msgid "Press <%s> for help." msgstr "" -#: bpython/curtsiesfrontend/repl.py:643 +#: bpython/curtsiesfrontend/repl.py:673 #, python-format msgid "Executing PYTHONSTARTUP failed: %s" msgstr "" -#: bpython/curtsiesfrontend/repl.py:660 +#: bpython/curtsiesfrontend/repl.py:691 #, python-format msgid "Reloaded at %s because %s modified." msgstr "" -#: bpython/curtsiesfrontend/repl.py:929 +#: bpython/curtsiesfrontend/repl.py:993 msgid "Session not reevaluated because it was not edited" msgstr "" -#: bpython/curtsiesfrontend/repl.py:941 +#: bpython/curtsiesfrontend/repl.py:1006 msgid "Session not reevaluated because saved file was blank" msgstr "" -#: bpython/curtsiesfrontend/repl.py:950 +#: bpython/curtsiesfrontend/repl.py:1016 msgid "Session edited and reevaluated" msgstr "" -#: bpython/curtsiesfrontend/repl.py:960 +#: bpython/curtsiesfrontend/repl.py:1027 #, python-format msgid "Reloaded at %s by user." msgstr "" -#: bpython/curtsiesfrontend/repl.py:966 +#: bpython/curtsiesfrontend/repl.py:1033 msgid "Auto-reloading deactivated." msgstr "" -#: bpython/curtsiesfrontend/repl.py:971 +#: bpython/curtsiesfrontend/repl.py:1038 msgid "Auto-reloading active, watching for file changes..." msgstr "" -#: bpython/curtsiesfrontend/repl.py:976 +#: bpython/curtsiesfrontend/repl.py:1044 msgid "Auto-reloading not available because watchdog not installed." msgstr "" diff --git a/bpython/translations/nl_NL/LC_MESSAGES/bpython.po b/bpython/translations/nl_NL/LC_MESSAGES/bpython.po index bd4e52d52..fabdfd591 100644 --- a/bpython/translations/nl_NL/LC_MESSAGES/bpython.po +++ b/bpython/translations/nl_NL/LC_MESSAGES/bpython.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: bpython 0.9.7.1\n" "Report-Msgid-Bugs-To: http://github.com/bpython/bpython/issues\n" -"POT-Creation-Date: 2019-09-22 22:17+0200\n" +"POT-Creation-Date: 2020-01-05 13:08+0000\n" "PO-Revision-Date: 2015-02-02 00:34+0100\n" "Last-Translator: Sebastian Ramacher \n" "Language: nl_NL\n" @@ -16,288 +16,308 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.6.0\n" +"Generated-By: Babel 2.8.0\n" -#: bpython/args.py:63 +#: bpython/args.py:66 msgid "" "Usage: %prog [options] [file [args]]\n" "NOTE: If bpython sees an argument it does not know, execution falls back " "to the regular Python interpreter." msgstr "" -#: bpython/args.py:73 +#: bpython/args.py:81 msgid "Use CONFIG instead of default config file." msgstr "" -#: bpython/args.py:75 +#: bpython/args.py:87 msgid "Drop to bpython shell after running file instead of exiting." msgstr "" -#: bpython/args.py:78 +#: bpython/args.py:95 msgid "Don't flush the output to stdout." msgstr "" -#: bpython/args.py:80 +#: bpython/args.py:101 msgid "Print version and exit." msgstr "" -#: bpython/cli.py:319 bpython/urwid.py:560 +#: bpython/cli.py:324 bpython/urwid.py:561 msgid "y" msgstr "j" -#: bpython/cli.py:319 bpython/urwid.py:560 +#: bpython/cli.py:324 bpython/urwid.py:561 msgid "yes" msgstr "ja" -#: bpython/cli.py:1705 +#: bpython/cli.py:1743 msgid "Rewind" msgstr "" -#: bpython/cli.py:1706 +#: bpython/cli.py:1744 msgid "Save" msgstr "" -#: bpython/cli.py:1707 +#: bpython/cli.py:1745 msgid "Pastebin" msgstr "" -#: bpython/cli.py:1708 +#: bpython/cli.py:1746 msgid "Pager" msgstr "" -#: bpython/cli.py:1709 +#: bpython/cli.py:1747 msgid "Show Source" msgstr "" -#: bpython/curtsies.py:139 +#: bpython/cli.py:1994 +msgid "" +"WARNING: You are using `bpython-cli`, the curses backend for `bpython`. " +"This backend has been deprecated in version 0.19 and might disappear in a" +" future version." +msgstr "" + +#: bpython/cli.py:2003 bpython/curtsies.py:208 bpython/urwid.py:1405 +msgid "" +"WARNING: You are using `bpython` on Python 2. Support for Python 2 has " +"been deprecated in version 0.19 and might disappear in a future version." +msgstr "" + +#: bpython/curtsies.py:152 msgid "log debug messages to bpython.log" msgstr "" -#: bpython/curtsies.py:141 +#: bpython/curtsies.py:158 msgid "start by pasting lines of a file into session" msgstr "" -#: bpython/history.py:222 +#: bpython/history.py:231 #, python-format msgid "Error occurred while writing to file %s (%s)" msgstr "" -#: bpython/paste.py:96 +#: bpython/paste.py:95 msgid "Helper program not found." msgstr "" -#: bpython/paste.py:98 +#: bpython/paste.py:97 msgid "Helper program could not be run." msgstr "" -#: bpython/paste.py:102 +#: bpython/paste.py:103 #, python-format msgid "Helper program returned non-zero exit status %d." msgstr "" -#: bpython/paste.py:105 +#: bpython/paste.py:108 msgid "No output from helper program." msgstr "" -#: bpython/paste.py:111 +#: bpython/paste.py:115 msgid "Failed to recognize the helper program's output as an URL." msgstr "" -#: bpython/repl.py:672 +#: bpython/repl.py:690 msgid "Nothing to get source of" msgstr "" -#: bpython/repl.py:677 +#: bpython/repl.py:695 #, python-format msgid "Cannot get source: %s" msgstr "" -#: bpython/repl.py:682 +#: bpython/repl.py:700 #, python-format msgid "Cannot access source of %r" msgstr "" -#: bpython/repl.py:684 +#: bpython/repl.py:702 #, python-format msgid "No source code found for %s" msgstr "" -#: bpython/repl.py:815 +#: bpython/repl.py:841 msgid "Save to file (Esc to cancel): " msgstr "" -#: bpython/repl.py:817 bpython/repl.py:820 bpython/repl.py:839 +#: bpython/repl.py:843 bpython/repl.py:846 bpython/repl.py:870 msgid "Save cancelled." msgstr "" -#: bpython/repl.py:830 +#: bpython/repl.py:857 #, python-format msgid "%s already exists. Do you want to (c)ancel, (o)verwrite or (a)ppend? " msgstr "" -#: bpython/repl.py:834 +#: bpython/repl.py:865 msgid "overwrite" msgstr "" -#: bpython/repl.py:836 +#: bpython/repl.py:867 msgid "append" msgstr "" -#: bpython/repl.py:848 bpython/repl.py:1140 +#: bpython/repl.py:879 bpython/repl.py:1192 #, python-format msgid "Error writing file '%s': %s" msgstr "" -#: bpython/repl.py:850 +#: bpython/repl.py:881 #, python-format msgid "Saved to %s." msgstr "" -#: bpython/repl.py:856 +#: bpython/repl.py:887 msgid "No clipboard available." msgstr "" -#: bpython/repl.py:863 +#: bpython/repl.py:894 msgid "Could not copy to clipboard." msgstr "" -#: bpython/repl.py:865 +#: bpython/repl.py:896 msgid "Copied content to clipboard." msgstr "" -#: bpython/repl.py:874 +#: bpython/repl.py:905 msgid "Pastebin buffer? (y/N) " msgstr "" -#: bpython/repl.py:875 +#: bpython/repl.py:907 msgid "Pastebin aborted." msgstr "" -#: bpython/repl.py:882 +#: bpython/repl.py:915 #, python-format msgid "Duplicate pastebin. Previous URL: %s. Removal URL: %s" msgstr "" -#: bpython/repl.py:888 +#: bpython/repl.py:921 msgid "Posting data to pastebin..." msgstr "" -#: bpython/repl.py:892 +#: bpython/repl.py:925 #, python-format msgid "Upload failed: %s" msgstr "" -#: bpython/repl.py:900 +#: bpython/repl.py:934 #, python-format msgid "Pastebin URL: %s - Removal URL: %s" msgstr "" -#: bpython/repl.py:903 +#: bpython/repl.py:939 #, python-format msgid "Pastebin URL: %s" msgstr "" -#: bpython/repl.py:938 +#: bpython/repl.py:977 #, python-format msgid "Undo how many lines? (Undo will take up to ~%.1f seconds) [1]" msgstr "" -#: bpython/repl.py:945 bpython/repl.py:949 +#: bpython/repl.py:985 bpython/repl.py:989 msgid "Undo canceled" msgstr "" -#: bpython/repl.py:952 +#: bpython/repl.py:992 #, python-format msgid "Undoing %d line... (est. %.1f seconds)" msgid_plural "Undoing %d lines... (est. %.1f seconds)" msgstr[0] "" msgstr[1] "" -#: bpython/repl.py:1126 +#: bpython/repl.py:1172 msgid "Config file does not exist - create new from default? (y/N)" msgstr "" -#: bpython/repl.py:1148 +#: bpython/repl.py:1202 msgid "bpython config file edited. Restart bpython for changes to take effect." msgstr "" -#: bpython/repl.py:1151 +#: bpython/repl.py:1208 #, python-format msgid "Error editing config file: %s" msgstr "" -#: bpython/urwid.py:622 +#: bpython/urwid.py:628 #, python-format msgid " <%s> Rewind <%s> Save <%s> Pastebin <%s> Pager <%s> Show Source " msgstr " <%s> Rewind <%s> Opslaan <%s> Pastebin <%s> Pager <%s> Toon broncode" -#: bpython/urwid.py:1136 +#: bpython/urwid.py:1177 msgid "Run twisted reactor." msgstr "" -#: bpython/urwid.py:1138 +#: bpython/urwid.py:1182 msgid "Select specific reactor (see --help-reactors). Implies --twisted." msgstr "" -#: bpython/urwid.py:1141 +#: bpython/urwid.py:1190 msgid "List available reactors for -r." msgstr "" -#: bpython/urwid.py:1143 +#: bpython/urwid.py:1195 msgid "" "twistd plugin to run (use twistd for a list). Use \"--\" to pass further " "options to the plugin." msgstr "" -#: bpython/urwid.py:1146 +#: bpython/urwid.py:1204 msgid "Port to run an eval server on (forces Twisted)." msgstr "" -#: bpython/curtsiesfrontend/repl.py:339 +#: bpython/urwid.py:1396 +msgid "" +"WARNING: You are using `bpython-urwid`, the urwid backend for `bpython`. " +"This backend has been deprecated in version 0.19 and might disappear in a" +" future version." +msgstr "" + +#: bpython/curtsiesfrontend/repl.py:350 msgid "Welcome to bpython!" msgstr "" -#: bpython/curtsiesfrontend/repl.py:340 +#: bpython/curtsiesfrontend/repl.py:352 #, python-format msgid "Press <%s> for help." msgstr "" -#: bpython/curtsiesfrontend/repl.py:643 +#: bpython/curtsiesfrontend/repl.py:673 #, python-format msgid "Executing PYTHONSTARTUP failed: %s" msgstr "" -#: bpython/curtsiesfrontend/repl.py:660 +#: bpython/curtsiesfrontend/repl.py:691 #, python-format msgid "Reloaded at %s because %s modified." msgstr "" -#: bpython/curtsiesfrontend/repl.py:929 +#: bpython/curtsiesfrontend/repl.py:993 msgid "Session not reevaluated because it was not edited" msgstr "" -#: bpython/curtsiesfrontend/repl.py:941 +#: bpython/curtsiesfrontend/repl.py:1006 msgid "Session not reevaluated because saved file was blank" msgstr "" -#: bpython/curtsiesfrontend/repl.py:950 +#: bpython/curtsiesfrontend/repl.py:1016 msgid "Session edited and reevaluated" msgstr "" -#: bpython/curtsiesfrontend/repl.py:960 +#: bpython/curtsiesfrontend/repl.py:1027 #, python-format msgid "Reloaded at %s by user." msgstr "" -#: bpython/curtsiesfrontend/repl.py:966 +#: bpython/curtsiesfrontend/repl.py:1033 msgid "Auto-reloading deactivated." msgstr "" -#: bpython/curtsiesfrontend/repl.py:971 +#: bpython/curtsiesfrontend/repl.py:1038 msgid "Auto-reloading active, watching for file changes..." msgstr "" -#: bpython/curtsiesfrontend/repl.py:976 +#: bpython/curtsiesfrontend/repl.py:1044 msgid "Auto-reloading not available because watchdog not installed." msgstr "" diff --git a/bpython/urwid.py b/bpython/urwid.py index 3b425179b..eb91147af 100644 --- a/bpython/urwid.py +++ b/bpython/urwid.py @@ -1390,6 +1390,24 @@ def start(main_loop, user_data): if banner is not None: myrepl.write(banner) myrepl.write("\n") + + # XXX these deprecation warnings need to go at some point + myrepl.write( + _( + "WARNING: You are using `bpython-urwid`, the urwid backend for `bpython`. This backend has been deprecated in version 0.19 and might disappear in a future version." + ) + ) + myrepl.write("\n") + + if sys.version_info[0] == 2: + # XXX these deprecation warnings need to go at some point + myrepl.write( + _( + "WARNING: You are using `bpython` on Python 2. Support for Python 2 has been deprecated in version 0.19 and might disappear in a future version." + ) + ) + myrepl.write("\n") + myrepl.start() # This bypasses main_loop.set_alarm_in because we must *not* pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy