This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository pyhoca-gui. from 8341080 Continue development... new b473152 setup.py: replace "MacOS X" with "OS X", add "Darwin" platform support to all Linux branches. new 4437af0 setup.py: explain how to update the translation template file *.pot. new e1b2295 {po,build/mo}: update translation files. new b2bfa4c build/mo: add Turkish binary translation directory structure and file. The 4 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: build/mo/bg/LC_MESSAGES/PyHoca-GUI.mo | Bin 548 -> 548 bytes build/mo/da/LC_MESSAGES/PyHoca-GUI.mo | Bin 34219 -> 34219 bytes build/mo/de/LC_MESSAGES/PyHoca-GUI.mo | Bin 35806 -> 35806 bytes build/mo/en/LC_MESSAGES/PyHoca-GUI.mo | Bin 33460 -> 33460 bytes build/mo/es/LC_MESSAGES/PyHoca-GUI.mo | Bin 35645 -> 35645 bytes build/mo/et/LC_MESSAGES/PyHoca-GUI.mo | Bin 31487 -> 31487 bytes build/mo/fi/LC_MESSAGES/PyHoca-GUI.mo | Bin 34316 -> 34316 bytes build/mo/fr/LC_MESSAGES/PyHoca-GUI.mo | Bin 544 -> 544 bytes build/mo/nb_NO/LC_MESSAGES/PyHoca-GUI.mo | Bin 34312 -> 34312 bytes build/mo/nl/LC_MESSAGES/PyHoca-GUI.mo | Bin 34837 -> 34837 bytes build/mo/ru/LC_MESSAGES/PyHoca-GUI.mo | Bin 35417 -> 35417 bytes build/mo/sv/LC_MESSAGES/PyHoca-GUI.mo | Bin 33525 -> 33525 bytes build/mo/tr/LC_MESSAGES/PyHoca-GUI.mo | Bin 0 -> 35463 bytes debian/changelog | 8 ++- po/PyHoca-GUI.pot | 92 ++++++++++++++------------- po/bg.po | 92 ++++++++++++++------------- po/da.po | 92 +++++++++++++-------------- po/de.po | 92 ++++++++++++++------------- po/en.po | 92 ++++++++++++++------------- po/es.po | 92 ++++++++++++++------------- po/et.po | 92 ++++++++++++++------------- po/fi.po | 99 ++++++++++++++++-------------- po/fr.po | 92 ++++++++++++++------------- po/nb_NO.po | 92 ++++++++++++++------------- po/nl.po | 92 ++++++++++++++------------- po/ru.po | 92 ++++++++++++++------------- po/sv.po | 92 ++++++++++++++------------- po/tr.po | 96 ++++++++++++++--------------- setup.py | 11 ++-- 29 files changed, 655 insertions(+), 663 deletions(-) create mode 100644 build/mo/tr/LC_MESSAGES/PyHoca-GUI.mo -- Alioth's /srv/git/code.x2go.org/pyhoca-gui.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/pyhoca-gui.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository pyhoca-gui. commit b4731527de67a59609f431c6252ae0b981dc1689 Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Jan 29 04:08:01 2016 +0100 setup.py: replace "MacOS X" with "OS X", add "Darwin" platform support to all Linux branches. --- debian/changelog | 5 ++++- setup.py | 6 +++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/debian/changelog b/debian/changelog index 652b3c7..5e46d83 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,9 @@ pyhoca-gui (0.5.0.6-0x2go1) UNRELEASED; urgency=medium - * Continue development... + [ Mihai Moldovan ] + * New upstream version (0.5.0.6): + - setup.py: replace "MacOS X" with "OS X", add "Darwin" platform support + to all Linux branches. -- X2Go Release Manager <git-admin@x2go.org> Thu, 28 Jan 2016 19:04:20 +0100 diff --git a/setup.py b/setup.py index cf68510..6a7703e 100755 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ PROGRAM_NAME = 'PyHoca-GUI' # Windows: UNINSTALL_NAME is for add/remove programs UNINSTALL_NAME = 'PyHoca-GUI (A graphical X2Go client)' SCRIPT_NAME = 'pyhoca-gui' -PROGRAM_DESC = '%s is a cross-platform (Windows, MacOS X, Linux) graphical X2Go client.' % PROGRAM_NAME +PROGRAM_DESC = '%s is a cross-platform (Windows, OS X, Linux) graphical X2Go client.' % PROGRAM_NAME PROGRAM_DESC_SHORT = '%s is a graphical X2Go client.' % PROGRAM_NAME # silence pyflakes with assigning a dummy version here... the real __VERSION__ assignment happens below @@ -80,7 +80,7 @@ if platform.system() == 'Windows': import subprocess sys.path.append(os.path.normpath('../pyhoca-contrib/mswin/ms-vc-runtime')) -elif platform.system() == 'Linux': +elif platform.system() in ('Linux', 'Darwin'): import DistUtilsExtra.command.build_extra import DistUtilsExtra.command.build_i18n import DistUtilsExtra.command.clean_i18n @@ -293,7 +293,7 @@ if platform.system() == 'Windows': ) cmd_class.update({ 'build_exe': cmd_class['build_with_{freezer}'.format(freezer=default_win32exe_freezer)] }) -elif platform.system() == 'Linux': +elif platform.system() in ('Linux', 'Darwin'): cmd_class.update( { "build" : DistUtilsExtra.command.build_extra.build_extra, -- Alioth's /srv/git/code.x2go.org/pyhoca-gui.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/pyhoca-gui.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository pyhoca-gui. commit 4437af076be70687da4ff4929253c47a3bb0e04c Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Jan 29 04:09:17 2016 +0100 setup.py: explain how to update the translation template file *.pot. --- debian/changelog | 1 + setup.py | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 5e46d83..383ea1a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,7 @@ pyhoca-gui (0.5.0.6-0x2go1) UNRELEASED; urgency=medium * New upstream version (0.5.0.6): - setup.py: replace "MacOS X" with "OS X", add "Darwin" platform support to all Linux branches. + - setup.py: explain how to update the translation template file *.pot. -- X2Go Release Manager <git-admin@x2go.org> Thu, 28 Jan 2016 19:04:20 +0100 diff --git a/setup.py b/setup.py index 6a7703e..afb64fe 100755 --- a/setup.py +++ b/setup.py @@ -96,8 +96,11 @@ from nsis_template import NSIS_SCRIPT_TEMPLATE # to build .exe file, run on Windows: # ,,python setup.py py2exe'' # -# to update i18n .mo files (and merge .pot file into .po files) run on Linux: +# to update i18n .mo files (and merge .pot file into .po files) run on Linux or OS X: # ,,python setup.py build_i18n -m'' +# +# Updating the template (.pot) file is possible on Linux or OS X using: +# ,,python setup.py build_i18n'' cmd_class = {} data_files = [] -- Alioth's /srv/git/code.x2go.org/pyhoca-gui.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/pyhoca-gui.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository pyhoca-gui. commit e1b22950e2d1cb9a92ebd1221f06bd05dc79e57e Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Jan 29 04:12:14 2016 +0100 {po,build/mo}: update translation files. --- build/mo/bg/LC_MESSAGES/PyHoca-GUI.mo | Bin 548 -> 548 bytes build/mo/da/LC_MESSAGES/PyHoca-GUI.mo | Bin 34219 -> 34219 bytes build/mo/de/LC_MESSAGES/PyHoca-GUI.mo | Bin 35806 -> 35806 bytes build/mo/en/LC_MESSAGES/PyHoca-GUI.mo | Bin 33460 -> 33460 bytes build/mo/es/LC_MESSAGES/PyHoca-GUI.mo | Bin 35645 -> 35645 bytes build/mo/et/LC_MESSAGES/PyHoca-GUI.mo | Bin 31487 -> 31487 bytes build/mo/fi/LC_MESSAGES/PyHoca-GUI.mo | Bin 34316 -> 34316 bytes build/mo/fr/LC_MESSAGES/PyHoca-GUI.mo | Bin 544 -> 544 bytes build/mo/nb_NO/LC_MESSAGES/PyHoca-GUI.mo | Bin 34312 -> 34312 bytes build/mo/nl/LC_MESSAGES/PyHoca-GUI.mo | Bin 34837 -> 34837 bytes build/mo/ru/LC_MESSAGES/PyHoca-GUI.mo | Bin 35417 -> 35417 bytes build/mo/sv/LC_MESSAGES/PyHoca-GUI.mo | Bin 33525 -> 33525 bytes debian/changelog | 1 + po/PyHoca-GUI.pot | 92 ++++++++++++++------------- po/bg.po | 92 ++++++++++++++------------- po/da.po | 92 +++++++++++++-------------- po/de.po | 92 ++++++++++++++------------- po/en.po | 92 ++++++++++++++------------- po/es.po | 92 ++++++++++++++------------- po/et.po | 92 ++++++++++++++------------- po/fi.po | 99 ++++++++++++++++-------------- po/fr.po | 92 ++++++++++++++------------- po/nb_NO.po | 92 ++++++++++++++------------- po/nl.po | 92 ++++++++++++++------------- po/ru.po | 92 ++++++++++++++------------- po/sv.po | 92 ++++++++++++++------------- po/tr.po | 96 ++++++++++++++--------------- 27 files changed, 642 insertions(+), 658 deletions(-) diff --git a/build/mo/bg/LC_MESSAGES/PyHoca-GUI.mo b/build/mo/bg/LC_MESSAGES/PyHoca-GUI.mo index 37bc4fd..f64afba 100644 Binary files a/build/mo/bg/LC_MESSAGES/PyHoca-GUI.mo and b/build/mo/bg/LC_MESSAGES/PyHoca-GUI.mo differ diff --git a/build/mo/da/LC_MESSAGES/PyHoca-GUI.mo b/build/mo/da/LC_MESSAGES/PyHoca-GUI.mo index bca5bc9..6fa8aba 100644 Binary files a/build/mo/da/LC_MESSAGES/PyHoca-GUI.mo and b/build/mo/da/LC_MESSAGES/PyHoca-GUI.mo differ diff --git a/build/mo/de/LC_MESSAGES/PyHoca-GUI.mo b/build/mo/de/LC_MESSAGES/PyHoca-GUI.mo index a59adeb..37a7be2 100644 Binary files a/build/mo/de/LC_MESSAGES/PyHoca-GUI.mo and b/build/mo/de/LC_MESSAGES/PyHoca-GUI.mo differ diff --git a/build/mo/en/LC_MESSAGES/PyHoca-GUI.mo b/build/mo/en/LC_MESSAGES/PyHoca-GUI.mo index 59023b7..a22fa15 100644 Binary files a/build/mo/en/LC_MESSAGES/PyHoca-GUI.mo and b/build/mo/en/LC_MESSAGES/PyHoca-GUI.mo differ diff --git a/build/mo/es/LC_MESSAGES/PyHoca-GUI.mo b/build/mo/es/LC_MESSAGES/PyHoca-GUI.mo index a85cd51..728d42d 100644 Binary files a/build/mo/es/LC_MESSAGES/PyHoca-GUI.mo and b/build/mo/es/LC_MESSAGES/PyHoca-GUI.mo differ diff --git a/build/mo/et/LC_MESSAGES/PyHoca-GUI.mo b/build/mo/et/LC_MESSAGES/PyHoca-GUI.mo index 21d0e2a..c179c5f 100644 Binary files a/build/mo/et/LC_MESSAGES/PyHoca-GUI.mo and b/build/mo/et/LC_MESSAGES/PyHoca-GUI.mo differ diff --git a/build/mo/fi/LC_MESSAGES/PyHoca-GUI.mo b/build/mo/fi/LC_MESSAGES/PyHoca-GUI.mo index a6b7937..6106b17 100644 Binary files a/build/mo/fi/LC_MESSAGES/PyHoca-GUI.mo and b/build/mo/fi/LC_MESSAGES/PyHoca-GUI.mo differ diff --git a/build/mo/fr/LC_MESSAGES/PyHoca-GUI.mo b/build/mo/fr/LC_MESSAGES/PyHoca-GUI.mo index 2369737..a0f4eae 100644 Binary files a/build/mo/fr/LC_MESSAGES/PyHoca-GUI.mo and b/build/mo/fr/LC_MESSAGES/PyHoca-GUI.mo differ diff --git a/build/mo/nb_NO/LC_MESSAGES/PyHoca-GUI.mo b/build/mo/nb_NO/LC_MESSAGES/PyHoca-GUI.mo index 6ea4724..7611743 100644 Binary files a/build/mo/nb_NO/LC_MESSAGES/PyHoca-GUI.mo and b/build/mo/nb_NO/LC_MESSAGES/PyHoca-GUI.mo differ diff --git a/build/mo/nl/LC_MESSAGES/PyHoca-GUI.mo b/build/mo/nl/LC_MESSAGES/PyHoca-GUI.mo index b8d8740..1c150d0 100644 Binary files a/build/mo/nl/LC_MESSAGES/PyHoca-GUI.mo and b/build/mo/nl/LC_MESSAGES/PyHoca-GUI.mo differ diff --git a/build/mo/ru/LC_MESSAGES/PyHoca-GUI.mo b/build/mo/ru/LC_MESSAGES/PyHoca-GUI.mo index aff597f..1d43844 100644 Binary files a/build/mo/ru/LC_MESSAGES/PyHoca-GUI.mo and b/build/mo/ru/LC_MESSAGES/PyHoca-GUI.mo differ diff --git a/build/mo/sv/LC_MESSAGES/PyHoca-GUI.mo b/build/mo/sv/LC_MESSAGES/PyHoca-GUI.mo index c708571..49ef072 100644 Binary files a/build/mo/sv/LC_MESSAGES/PyHoca-GUI.mo and b/build/mo/sv/LC_MESSAGES/PyHoca-GUI.mo differ diff --git a/debian/changelog b/debian/changelog index 383ea1a..8d5bbbf 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,6 +5,7 @@ pyhoca-gui (0.5.0.6-0x2go1) UNRELEASED; urgency=medium - setup.py: replace "MacOS X" with "OS X", add "Darwin" platform support to all Linux branches. - setup.py: explain how to update the translation template file *.pot. + - {po,build/mo}: update translation files. -- X2Go Release Manager <git-admin@x2go.org> Thu, 28 Jan 2016 19:04:20 +0100 diff --git a/po/PyHoca-GUI.pot b/po/PyHoca-GUI.pot index e6164d6..5248c05 100644 --- a/po/PyHoca-GUI.pot +++ b/po/PyHoca-GUI.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-01-12 15:18+0100\n" +"POT-Creation-Date: 2016-01-29 04:04+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -232,28 +232,28 @@ msgstr "" msgid "SSH key file (for SSH proxy) could not be unlocked!" msgstr "" -#: ../pyhoca/wxgui/taskbar.py:111 +#: ../pyhoca/wxgui/taskbar.py:118 #, python-format msgid "" "%s\n" "Connecting you to ,,%s''" msgstr "" -#: ../pyhoca/wxgui/taskbar.py:115 +#: ../pyhoca/wxgui/taskbar.py:122 #, python-format msgid "" "%s\n" "Currently connecting you to remote X2Go server ,,%s''" msgstr "" -#: ../pyhoca/wxgui/taskbar.py:125 +#: ../pyhoca/wxgui/taskbar.py:132 #, python-format msgid "" "%s\n" "Connecting you to X2Go..." msgstr "" -#: ../pyhoca/wxgui/taskbar.py:129 +#: ../pyhoca/wxgui/taskbar.py:136 #, python-format msgid "" "%s\n" @@ -720,14 +720,12 @@ msgstr "" msgid "Apply" msgstr "" -#: ../pyhoca/wxgui/profilemanager.py:453 -#: ../pyhoca/wxgui/profilemanager.py:1184 +#: ../pyhoca/wxgui/profilemanager.py:453 ../pyhoca/wxgui/profilemanager.py:1184 #: ../pyhoca/wxgui/profilemanager.py:2364 msgid "automatically" msgstr "" -#: ../pyhoca/wxgui/profilemanager.py:455 -#: ../pyhoca/wxgui/profilemanager.py:1186 +#: ../pyhoca/wxgui/profilemanager.py:455 ../pyhoca/wxgui/profilemanager.py:1186 msgid "manually" msgstr "" @@ -917,8 +915,8 @@ msgstr "" msgid "Client Options" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:169 ../pyhoca/wxgui/menus_taskbar.py:849 -#: ../pyhoca/wxgui/menus_taskbar.py:1070 +#: ../pyhoca/wxgui/menus_taskbar.py:169 ../pyhoca/wxgui/menus_taskbar.py:857 +#: ../pyhoca/wxgui/menus_taskbar.py:1078 msgid "E&xit" msgstr "" @@ -926,7 +924,7 @@ msgstr "" msgid "Window title" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:247 ../pyhoca/wxgui/menus_taskbar.py:649 +#: ../pyhoca/wxgui/menus_taskbar.py:247 ../pyhoca/wxgui/menus_taskbar.py:657 msgid "Resume Session" msgstr "" @@ -942,27 +940,27 @@ msgstr "" msgid "Transfer Session (not possible)" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:267 ../pyhoca/wxgui/menus_taskbar.py:640 +#: ../pyhoca/wxgui/menus_taskbar.py:267 ../pyhoca/wxgui/menus_taskbar.py:648 msgid "Suspend Session (and disconnect/exit)" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:269 ../pyhoca/wxgui/menus_taskbar.py:642 +#: ../pyhoca/wxgui/menus_taskbar.py:269 ../pyhoca/wxgui/menus_taskbar.py:650 msgid "Suspend Session (and disconnect)" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:271 ../pyhoca/wxgui/menus_taskbar.py:644 +#: ../pyhoca/wxgui/menus_taskbar.py:271 ../pyhoca/wxgui/menus_taskbar.py:652 msgid "Suspend Session" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:277 ../pyhoca/wxgui/menus_taskbar.py:653 +#: ../pyhoca/wxgui/menus_taskbar.py:277 ../pyhoca/wxgui/menus_taskbar.py:661 msgid "Terminate Session (and disconnect/exit)" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:279 ../pyhoca/wxgui/menus_taskbar.py:655 +#: ../pyhoca/wxgui/menus_taskbar.py:279 ../pyhoca/wxgui/menus_taskbar.py:663 msgid "Terminate Session (and disconnect)" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:281 ../pyhoca/wxgui/menus_taskbar.py:657 +#: ../pyhoca/wxgui/menus_taskbar.py:281 ../pyhoca/wxgui/menus_taskbar.py:665 msgid "Terminate Session" msgstr "" @@ -978,7 +976,7 @@ msgstr "" msgid "End Desktop Sharing" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:292 ../pyhoca/wxgui/menus_taskbar.py:637 +#: ../pyhoca/wxgui/menus_taskbar.py:292 ../pyhoca/wxgui/menus_taskbar.py:645 msgid "Refresh menu tree" msgstr "" @@ -1050,116 +1048,116 @@ msgstr "" msgid "Other Applications" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:545 ../pyhoca/wxgui/menus_taskbar.py:1035 +#: ../pyhoca/wxgui/menus_taskbar.py:553 ../pyhoca/wxgui/menus_taskbar.py:1043 msgid "Connect to" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:550 ../pyhoca/wxgui/menus_taskbar.py:565 +#: ../pyhoca/wxgui/menus_taskbar.py:558 ../pyhoca/wxgui/menus_taskbar.py:573 #, python-format msgid "Connect %s" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:559 +#: ../pyhoca/wxgui/menus_taskbar.py:567 msgid "Currently connecting..." msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:574 +#: ../pyhoca/wxgui/menus_taskbar.py:582 msgid "Start &new Desktop Session" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:578 ../pyhoca/wxgui/menus_taskbar.py:678 +#: ../pyhoca/wxgui/menus_taskbar.py:586 ../pyhoca/wxgui/menus_taskbar.py:686 msgid "Start Desktop Sharing Session" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:584 ../pyhoca/wxgui/menus_taskbar.py:728 +#: ../pyhoca/wxgui/menus_taskbar.py:592 ../pyhoca/wxgui/menus_taskbar.py:736 msgid "Retrieving Application Menu..." msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:588 ../pyhoca/wxgui/menus_taskbar.py:731 +#: ../pyhoca/wxgui/menus_taskbar.py:596 ../pyhoca/wxgui/menus_taskbar.py:739 msgid "Retrieve Application Menu" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:591 +#: ../pyhoca/wxgui/menus_taskbar.py:599 msgid "Start &new RDP Session" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:594 +#: ../pyhoca/wxgui/menus_taskbar.py:602 msgid "Start &new Session" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:674 +#: ../pyhoca/wxgui/menus_taskbar.py:682 msgid "Launch Single Application" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:715 +#: ../pyhoca/wxgui/menus_taskbar.py:723 msgid "Manage Application Menu" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:770 +#: ../pyhoca/wxgui/menus_taskbar.py:778 msgid "Running" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:772 +#: ../pyhoca/wxgui/menus_taskbar.py:780 msgid "Suspended" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:791 +#: ../pyhoca/wxgui/menus_taskbar.py:799 msgid "&Clean all sessions" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:798 +#: ../pyhoca/wxgui/menus_taskbar.py:806 msgid "Customize &profile" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:800 +#: ../pyhoca/wxgui/menus_taskbar.py:808 msgid "View &profile" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:815 +#: ../pyhoca/wxgui/menus_taskbar.py:823 msgid "Shared &folders" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:827 +#: ../pyhoca/wxgui/menus_taskbar.py:835 msgid "Server Information" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:834 +#: ../pyhoca/wxgui/menus_taskbar.py:842 msgid "&Disconnect from Server" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:841 +#: ../pyhoca/wxgui/menus_taskbar.py:849 msgid "Suspend Session and E&xit application" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:845 +#: ../pyhoca/wxgui/menus_taskbar.py:853 msgid "Disconnect and E&xit application" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:899 +#: ../pyhoca/wxgui/menus_taskbar.py:907 msgid "Add Profile" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:976 +#: ../pyhoca/wxgui/menus_taskbar.py:984 msgid "Session broker is not connected" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:978 +#: ../pyhoca/wxgui/menus_taskbar.py:986 msgid "No session profiles defined" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:989 +#: ../pyhoca/wxgui/menus_taskbar.py:997 msgid "Export all Profiles" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:991 +#: ../pyhoca/wxgui/menus_taskbar.py:999 msgid "Export Profile Group" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:997 +#: ../pyhoca/wxgui/menus_taskbar.py:1005 msgid "Import Session Profiles" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:1040 +#: ../pyhoca/wxgui/menus_taskbar.py:1048 msgid "Connect Server" msgstr "" diff --git a/po/bg.po b/po/bg.po index a08a97b..4939dbe 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PyHoca-GUI VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-10-20 12:52+0200\n" +"POT-Creation-Date: 2016-01-29 04:04+0100\n" "PO-Revision-Date: 2011-09-17 02:17+0100\n" "Last-Translator: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>\n" "Language-Team: X2Go i18n <x2go-i18n@lists.x2go.org>\n" @@ -236,28 +236,28 @@ msgstr "" msgid "SSH key file (for SSH proxy) could not be unlocked!" msgstr "" -#: ../pyhoca/wxgui/taskbar.py:111 +#: ../pyhoca/wxgui/taskbar.py:118 #, python-format msgid "" "%s\n" "Connecting you to ,,%s''" msgstr "" -#: ../pyhoca/wxgui/taskbar.py:115 +#: ../pyhoca/wxgui/taskbar.py:122 #, python-format msgid "" "%s\n" "Currently connecting you to remote X2Go server ,,%s''" msgstr "" -#: ../pyhoca/wxgui/taskbar.py:125 +#: ../pyhoca/wxgui/taskbar.py:132 #, python-format msgid "" "%s\n" "Connecting you to X2Go..." msgstr "" -#: ../pyhoca/wxgui/taskbar.py:129 +#: ../pyhoca/wxgui/taskbar.py:136 #, python-format msgid "" "%s\n" @@ -724,14 +724,12 @@ msgstr "" msgid "Apply" msgstr "" -#: ../pyhoca/wxgui/profilemanager.py:453 -#: ../pyhoca/wxgui/profilemanager.py:1184 +#: ../pyhoca/wxgui/profilemanager.py:453 ../pyhoca/wxgui/profilemanager.py:1184 #: ../pyhoca/wxgui/profilemanager.py:2364 msgid "automatically" msgstr "" -#: ../pyhoca/wxgui/profilemanager.py:455 -#: ../pyhoca/wxgui/profilemanager.py:1186 +#: ../pyhoca/wxgui/profilemanager.py:455 ../pyhoca/wxgui/profilemanager.py:1186 msgid "manually" msgstr "" @@ -921,8 +919,8 @@ msgstr "" msgid "Client Options" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:169 ../pyhoca/wxgui/menus_taskbar.py:849 -#: ../pyhoca/wxgui/menus_taskbar.py:1070 +#: ../pyhoca/wxgui/menus_taskbar.py:169 ../pyhoca/wxgui/menus_taskbar.py:857 +#: ../pyhoca/wxgui/menus_taskbar.py:1078 msgid "E&xit" msgstr "" @@ -930,7 +928,7 @@ msgstr "" msgid "Window title" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:247 ../pyhoca/wxgui/menus_taskbar.py:649 +#: ../pyhoca/wxgui/menus_taskbar.py:247 ../pyhoca/wxgui/menus_taskbar.py:657 msgid "Resume Session" msgstr "" @@ -946,27 +944,27 @@ msgstr "" msgid "Transfer Session (not possible)" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:267 ../pyhoca/wxgui/menus_taskbar.py:640 +#: ../pyhoca/wxgui/menus_taskbar.py:267 ../pyhoca/wxgui/menus_taskbar.py:648 msgid "Suspend Session (and disconnect/exit)" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:269 ../pyhoca/wxgui/menus_taskbar.py:642 +#: ../pyhoca/wxgui/menus_taskbar.py:269 ../pyhoca/wxgui/menus_taskbar.py:650 msgid "Suspend Session (and disconnect)" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:271 ../pyhoca/wxgui/menus_taskbar.py:644 +#: ../pyhoca/wxgui/menus_taskbar.py:271 ../pyhoca/wxgui/menus_taskbar.py:652 msgid "Suspend Session" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:277 ../pyhoca/wxgui/menus_taskbar.py:653 +#: ../pyhoca/wxgui/menus_taskbar.py:277 ../pyhoca/wxgui/menus_taskbar.py:661 msgid "Terminate Session (and disconnect/exit)" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:279 ../pyhoca/wxgui/menus_taskbar.py:655 +#: ../pyhoca/wxgui/menus_taskbar.py:279 ../pyhoca/wxgui/menus_taskbar.py:663 msgid "Terminate Session (and disconnect)" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:281 ../pyhoca/wxgui/menus_taskbar.py:657 +#: ../pyhoca/wxgui/menus_taskbar.py:281 ../pyhoca/wxgui/menus_taskbar.py:665 msgid "Terminate Session" msgstr "" @@ -982,7 +980,7 @@ msgstr "" msgid "End Desktop Sharing" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:292 ../pyhoca/wxgui/menus_taskbar.py:637 +#: ../pyhoca/wxgui/menus_taskbar.py:292 ../pyhoca/wxgui/menus_taskbar.py:645 msgid "Refresh menu tree" msgstr "" @@ -1054,116 +1052,116 @@ msgstr "" msgid "Other Applications" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:545 ../pyhoca/wxgui/menus_taskbar.py:1035 +#: ../pyhoca/wxgui/menus_taskbar.py:553 ../pyhoca/wxgui/menus_taskbar.py:1043 msgid "Connect to" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:550 ../pyhoca/wxgui/menus_taskbar.py:565 +#: ../pyhoca/wxgui/menus_taskbar.py:558 ../pyhoca/wxgui/menus_taskbar.py:573 #, python-format msgid "Connect %s" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:559 +#: ../pyhoca/wxgui/menus_taskbar.py:567 msgid "Currently connecting..." msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:574 +#: ../pyhoca/wxgui/menus_taskbar.py:582 msgid "Start &new Desktop Session" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:578 ../pyhoca/wxgui/menus_taskbar.py:678 +#: ../pyhoca/wxgui/menus_taskbar.py:586 ../pyhoca/wxgui/menus_taskbar.py:686 msgid "Start Desktop Sharing Session" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:584 ../pyhoca/wxgui/menus_taskbar.py:728 +#: ../pyhoca/wxgui/menus_taskbar.py:592 ../pyhoca/wxgui/menus_taskbar.py:736 msgid "Retrieving Application Menu..." msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:588 ../pyhoca/wxgui/menus_taskbar.py:731 +#: ../pyhoca/wxgui/menus_taskbar.py:596 ../pyhoca/wxgui/menus_taskbar.py:739 msgid "Retrieve Application Menu" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:591 +#: ../pyhoca/wxgui/menus_taskbar.py:599 msgid "Start &new RDP Session" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:594 +#: ../pyhoca/wxgui/menus_taskbar.py:602 msgid "Start &new Session" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:674 +#: ../pyhoca/wxgui/menus_taskbar.py:682 msgid "Launch Single Application" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:715 +#: ../pyhoca/wxgui/menus_taskbar.py:723 msgid "Manage Application Menu" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:770 +#: ../pyhoca/wxgui/menus_taskbar.py:778 msgid "Running" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:772 +#: ../pyhoca/wxgui/menus_taskbar.py:780 msgid "Suspended" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:791 +#: ../pyhoca/wxgui/menus_taskbar.py:799 msgid "&Clean all sessions" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:798 +#: ../pyhoca/wxgui/menus_taskbar.py:806 msgid "Customize &profile" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:800 +#: ../pyhoca/wxgui/menus_taskbar.py:808 msgid "View &profile" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:815 +#: ../pyhoca/wxgui/menus_taskbar.py:823 msgid "Shared &folders" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:827 +#: ../pyhoca/wxgui/menus_taskbar.py:835 msgid "Server Information" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:834 +#: ../pyhoca/wxgui/menus_taskbar.py:842 msgid "&Disconnect from Server" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:841 +#: ../pyhoca/wxgui/menus_taskbar.py:849 msgid "Suspend Session and E&xit application" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:845 +#: ../pyhoca/wxgui/menus_taskbar.py:853 msgid "Disconnect and E&xit application" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:899 +#: ../pyhoca/wxgui/menus_taskbar.py:907 msgid "Add Profile" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:976 +#: ../pyhoca/wxgui/menus_taskbar.py:984 msgid "Session broker is not connected" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:978 +#: ../pyhoca/wxgui/menus_taskbar.py:986 msgid "No session profiles defined" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:989 +#: ../pyhoca/wxgui/menus_taskbar.py:997 msgid "Export all Profiles" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:991 +#: ../pyhoca/wxgui/menus_taskbar.py:999 msgid "Export Profile Group" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:997 +#: ../pyhoca/wxgui/menus_taskbar.py:1005 msgid "Import Session Profiles" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:1040 +#: ../pyhoca/wxgui/menus_taskbar.py:1048 msgid "Connect Server" msgstr "" diff --git a/po/da.po b/po/da.po index 43b7f53..d403864 100644 --- a/po/da.po +++ b/po/da.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PyHoca-GUI 0.2.0.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-10-20 12:52+0200\n" +"POT-Creation-Date: 2016-01-29 04:04+0100\n" "PO-Revision-Date: 2013-01-29 16:38+0100\n" "Last-Translator: Nicolai Hansen <nicolai@fleten.net>\n" "Language-Team: X2Go i18n <x2go-i18n@lists.x2go.org>\n" @@ -242,7 +242,7 @@ msgstr "SSH nøgle fil (for X2Go server) kunne ikke låses op!" msgid "SSH key file (for SSH proxy) could not be unlocked!" msgstr "SSH nøgle fil (for SSH proxy) kunne ikke låses op!" -#: ../pyhoca/wxgui/taskbar.py:111 +#: ../pyhoca/wxgui/taskbar.py:118 #, python-format msgid "" "%s\n" @@ -251,7 +251,7 @@ msgstr "" "%s\n" "Forbinder dig til ,,%s''" -#: ../pyhoca/wxgui/taskbar.py:115 +#: ../pyhoca/wxgui/taskbar.py:122 #, python-format msgid "" "%s\n" @@ -260,7 +260,7 @@ msgstr "" "%s\n" "Forbinder dig til fjernt X2Go server ,,%s''" -#: ../pyhoca/wxgui/taskbar.py:125 +#: ../pyhoca/wxgui/taskbar.py:132 #, python-format msgid "" "%s\n" @@ -269,7 +269,7 @@ msgstr "" "%s\n" "Forbinder dig til X2Go..." -#: ../pyhoca/wxgui/taskbar.py:129 +#: ../pyhoca/wxgui/taskbar.py:136 #, python-format msgid "" "%s\n" @@ -827,7 +827,8 @@ msgstr "Vælg et ikon til denne session profil" msgid "All files (*.*)|*" msgstr "Alle filer (*.*)|*" -#: ../pyhoca/wxgui/profilemanager.py:1958 ../pyhoca/wxgui/profilemanager.py:1982 +#: ../pyhoca/wxgui/profilemanager.py:1958 +#: ../pyhoca/wxgui/profilemanager.py:1982 msgid "Choose a public SSH key" msgstr "Vælg offentlig SSH nøgle" @@ -845,7 +846,8 @@ msgstr "Profil Håndtering" msgid "Profile name is missing, profile unusable!!!" msgstr "Profil navn mangles, profilen er ubrugelig!!!" -#: ../pyhoca/wxgui/profilemanager.py:2447 ../pyhoca/wxgui/profilemanager.py:2450 +#: ../pyhoca/wxgui/profilemanager.py:2447 +#: ../pyhoca/wxgui/profilemanager.py:2450 #, python-format msgid "Profile name %s already exists!!!" msgstr "Profil navnet %s eksisterer i forvejen!!!" @@ -934,8 +936,8 @@ msgstr "Printer Indstillinger" msgid "Client Options" msgstr "Klient Indstillinger" -#: ../pyhoca/wxgui/menus_taskbar.py:169 ../pyhoca/wxgui/menus_taskbar.py:849 -#: ../pyhoca/wxgui/menus_taskbar.py:1070 +#: ../pyhoca/wxgui/menus_taskbar.py:169 ../pyhoca/wxgui/menus_taskbar.py:857 +#: ../pyhoca/wxgui/menus_taskbar.py:1078 msgid "E&xit" msgstr "E&xit" @@ -943,7 +945,7 @@ msgstr "E&xit" msgid "Window title" msgstr "Vindues titel" -#: ../pyhoca/wxgui/menus_taskbar.py:247 ../pyhoca/wxgui/menus_taskbar.py:649 +#: ../pyhoca/wxgui/menus_taskbar.py:247 ../pyhoca/wxgui/menus_taskbar.py:657 msgid "Resume Session" msgstr "Fortsæt Session" @@ -959,27 +961,27 @@ msgstr "Overfør Session" msgid "Transfer Session (not possible)" msgstr "Overfør Session (ikke muligt)" -#: ../pyhoca/wxgui/menus_taskbar.py:267 ../pyhoca/wxgui/menus_taskbar.py:640 +#: ../pyhoca/wxgui/menus_taskbar.py:267 ../pyhoca/wxgui/menus_taskbar.py:648 msgid "Suspend Session (and disconnect/exit)" msgstr "Suspendér Session (og afbryd forbindelse/luk)" -#: ../pyhoca/wxgui/menus_taskbar.py:269 ../pyhoca/wxgui/menus_taskbar.py:642 +#: ../pyhoca/wxgui/menus_taskbar.py:269 ../pyhoca/wxgui/menus_taskbar.py:650 msgid "Suspend Session (and disconnect)" msgstr "Suspendér Session (og afbryd forbindelse)" -#: ../pyhoca/wxgui/menus_taskbar.py:271 ../pyhoca/wxgui/menus_taskbar.py:644 +#: ../pyhoca/wxgui/menus_taskbar.py:271 ../pyhoca/wxgui/menus_taskbar.py:652 msgid "Suspend Session" msgstr "Suspendér Session" -#: ../pyhoca/wxgui/menus_taskbar.py:277 ../pyhoca/wxgui/menus_taskbar.py:653 +#: ../pyhoca/wxgui/menus_taskbar.py:277 ../pyhoca/wxgui/menus_taskbar.py:661 msgid "Terminate Session (and disconnect/exit)" msgstr "Afslut Session (og afbryd forbindelse/luk)" -#: ../pyhoca/wxgui/menus_taskbar.py:279 ../pyhoca/wxgui/menus_taskbar.py:655 +#: ../pyhoca/wxgui/menus_taskbar.py:279 ../pyhoca/wxgui/menus_taskbar.py:663 msgid "Terminate Session (and disconnect)" msgstr "Afslut Session (og afbryd forbindelse)" -#: ../pyhoca/wxgui/menus_taskbar.py:281 ../pyhoca/wxgui/menus_taskbar.py:657 +#: ../pyhoca/wxgui/menus_taskbar.py:281 ../pyhoca/wxgui/menus_taskbar.py:665 msgid "Terminate Session" msgstr "Afslut Session" @@ -995,7 +997,7 @@ msgstr "Stop Skrivebords Deling (og afbryd forbindelse)" msgid "End Desktop Sharing" msgstr "Stop Skrivebords Deling" -#: ../pyhoca/wxgui/menus_taskbar.py:292 ../pyhoca/wxgui/menus_taskbar.py:637 +#: ../pyhoca/wxgui/menus_taskbar.py:292 ../pyhoca/wxgui/menus_taskbar.py:645 msgid "Refresh menu tree" msgstr "Genopfrisk menu" @@ -1067,116 +1069,116 @@ msgstr "Værktøjer" msgid "Other Applications" msgstr "Andre Programmer" -#: ../pyhoca/wxgui/menus_taskbar.py:545 ../pyhoca/wxgui/menus_taskbar.py:1035 +#: ../pyhoca/wxgui/menus_taskbar.py:553 ../pyhoca/wxgui/menus_taskbar.py:1043 msgid "Connect to" msgstr "Forbind til" -#: ../pyhoca/wxgui/menus_taskbar.py:550 ../pyhoca/wxgui/menus_taskbar.py:565 +#: ../pyhoca/wxgui/menus_taskbar.py:558 ../pyhoca/wxgui/menus_taskbar.py:573 #, python-format msgid "Connect %s" msgstr "Forbind %s" -#: ../pyhoca/wxgui/menus_taskbar.py:559 +#: ../pyhoca/wxgui/menus_taskbar.py:567 msgid "Currently connecting..." msgstr "Forbinder..." -#: ../pyhoca/wxgui/menus_taskbar.py:574 +#: ../pyhoca/wxgui/menus_taskbar.py:582 msgid "Start &new Desktop Session" msgstr "Start &ny Skrivebords Session" -#: ../pyhoca/wxgui/menus_taskbar.py:578 ../pyhoca/wxgui/menus_taskbar.py:678 +#: ../pyhoca/wxgui/menus_taskbar.py:586 ../pyhoca/wxgui/menus_taskbar.py:686 msgid "Start Desktop Sharing Session" msgstr "Start Skrivebords Deling Session" -#: ../pyhoca/wxgui/menus_taskbar.py:584 ../pyhoca/wxgui/menus_taskbar.py:728 +#: ../pyhoca/wxgui/menus_taskbar.py:592 ../pyhoca/wxgui/menus_taskbar.py:736 msgid "Retrieving Application Menu..." msgstr "Henter Program Menuer..." -#: ../pyhoca/wxgui/menus_taskbar.py:588 ../pyhoca/wxgui/menus_taskbar.py:731 +#: ../pyhoca/wxgui/menus_taskbar.py:596 ../pyhoca/wxgui/menus_taskbar.py:739 msgid "Retrieve Application Menu" msgstr "Hent Program Menuer" -#: ../pyhoca/wxgui/menus_taskbar.py:591 +#: ../pyhoca/wxgui/menus_taskbar.py:599 msgid "Start &new RDP Session" msgstr "Start &ny RDP Session" -#: ../pyhoca/wxgui/menus_taskbar.py:594 +#: ../pyhoca/wxgui/menus_taskbar.py:602 msgid "Start &new Session" msgstr "Start &ny Session" -#: ../pyhoca/wxgui/menus_taskbar.py:674 +#: ../pyhoca/wxgui/menus_taskbar.py:682 msgid "Launch Single Application" msgstr "Start en enkelt Program" -#: ../pyhoca/wxgui/menus_taskbar.py:715 +#: ../pyhoca/wxgui/menus_taskbar.py:723 msgid "Manage Application Menu" msgstr "Håndter Program Menuer" -#: ../pyhoca/wxgui/menus_taskbar.py:770 +#: ../pyhoca/wxgui/menus_taskbar.py:778 msgid "Running" msgstr "Kører" -#: ../pyhoca/wxgui/menus_taskbar.py:772 +#: ../pyhoca/wxgui/menus_taskbar.py:780 msgid "Suspended" msgstr "Suspenderet" -#: ../pyhoca/wxgui/menus_taskbar.py:791 +#: ../pyhoca/wxgui/menus_taskbar.py:799 msgid "&Clean all sessions" msgstr "&Rens alle sessioner" -#: ../pyhoca/wxgui/menus_taskbar.py:798 +#: ../pyhoca/wxgui/menus_taskbar.py:806 msgid "Customize &profile" msgstr "Tilpas &profil" -#: ../pyhoca/wxgui/menus_taskbar.py:800 +#: ../pyhoca/wxgui/menus_taskbar.py:808 msgid "View &profile" msgstr "Vis &profil" -#: ../pyhoca/wxgui/menus_taskbar.py:815 +#: ../pyhoca/wxgui/menus_taskbar.py:823 msgid "Shared &folders" msgstr "Delte &mapper" -#: ../pyhoca/wxgui/menus_taskbar.py:827 +#: ../pyhoca/wxgui/menus_taskbar.py:835 msgid "Server Information" msgstr "Server Information" -#: ../pyhoca/wxgui/menus_taskbar.py:834 +#: ../pyhoca/wxgui/menus_taskbar.py:842 msgid "&Disconnect from Server" msgstr "&Afbryd forbindelse fra Server" -#: ../pyhoca/wxgui/menus_taskbar.py:841 +#: ../pyhoca/wxgui/menus_taskbar.py:849 msgid "Suspend Session and E&xit application" msgstr "Suspendér Session og L&uk programmet" -#: ../pyhoca/wxgui/menus_taskbar.py:845 +#: ../pyhoca/wxgui/menus_taskbar.py:853 msgid "Disconnect and E&xit application" msgstr "Afbryd forbindese og L&uk programmet" -#: ../pyhoca/wxgui/menus_taskbar.py:899 +#: ../pyhoca/wxgui/menus_taskbar.py:907 msgid "Add Profile" msgstr "Tilføj Profil" -#: ../pyhoca/wxgui/menus_taskbar.py:976 +#: ../pyhoca/wxgui/menus_taskbar.py:984 msgid "Session broker is not connected" msgstr "Session broker er ikke forbundet" -#: ../pyhoca/wxgui/menus_taskbar.py:978 +#: ../pyhoca/wxgui/menus_taskbar.py:986 msgid "No session profiles defined" msgstr "Ingen session profil er defineret" -#: ../pyhoca/wxgui/menus_taskbar.py:989 +#: ../pyhoca/wxgui/menus_taskbar.py:997 msgid "Export all Profiles" msgstr "Eksporter alle Profiler" -#: ../pyhoca/wxgui/menus_taskbar.py:991 +#: ../pyhoca/wxgui/menus_taskbar.py:999 msgid "Export Profile Group" msgstr "Eksporter Profil Gruppe" -#: ../pyhoca/wxgui/menus_taskbar.py:997 +#: ../pyhoca/wxgui/menus_taskbar.py:1005 msgid "Import Session Profiles" msgstr "Importer Session Profiler" -#: ../pyhoca/wxgui/menus_taskbar.py:1040 +#: ../pyhoca/wxgui/menus_taskbar.py:1048 msgid "Connect Server" msgstr "Forbind Server" diff --git a/po/de.po b/po/de.po index 4f514b0..10258d5 100644 --- a/po/de.po +++ b/po/de.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PyHoca-GUI VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-10-20 12:52+0200\n" +"POT-Creation-Date: 2016-01-29 04:04+0100\n" "PO-Revision-Date: 2014-06-29 14:28+0100\n" "Last-Translator: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>\n" "Language-Team: X2Go i18n <x2go-i18n@lists.x2go.org>\n" @@ -246,7 +246,7 @@ msgstr "SSH-Schlüssel (für X2Go Server) konnte nicht entsperrt werden!" msgid "SSH key file (for SSH proxy) could not be unlocked!" msgstr "SSH-Schlüsseldatei (für SSH-Proxy) konnte nicht entsperrt werden!" -#: ../pyhoca/wxgui/taskbar.py:111 +#: ../pyhoca/wxgui/taskbar.py:118 #, python-format msgid "" "%s\n" @@ -255,7 +255,7 @@ msgstr "" "%s\n" "Verbinde mit ,,%s''" -#: ../pyhoca/wxgui/taskbar.py:115 +#: ../pyhoca/wxgui/taskbar.py:122 #, python-format msgid "" "%s\n" @@ -264,7 +264,7 @@ msgstr "" "%s\n" "Verbindungsaufbau zu X2Go Server ,,%s'' läuft" -#: ../pyhoca/wxgui/taskbar.py:125 +#: ../pyhoca/wxgui/taskbar.py:132 #, python-format msgid "" "%s\n" @@ -273,7 +273,7 @@ msgstr "" "%s\n" "Verbinden mit X2Go Server..." -#: ../pyhoca/wxgui/taskbar.py:129 +#: ../pyhoca/wxgui/taskbar.py:136 #, python-format msgid "" "%s\n" @@ -749,14 +749,12 @@ msgstr "Zurücksetzen" msgid "Apply" msgstr "Anwenden" -#: ../pyhoca/wxgui/profilemanager.py:453 -#: ../pyhoca/wxgui/profilemanager.py:1184 +#: ../pyhoca/wxgui/profilemanager.py:453 ../pyhoca/wxgui/profilemanager.py:1184 #: ../pyhoca/wxgui/profilemanager.py:2364 msgid "automatically" msgstr "automatisch" -#: ../pyhoca/wxgui/profilemanager.py:455 -#: ../pyhoca/wxgui/profilemanager.py:1186 +#: ../pyhoca/wxgui/profilemanager.py:455 ../pyhoca/wxgui/profilemanager.py:1186 msgid "manually" msgstr "manuell" @@ -948,8 +946,8 @@ msgstr "Druckeinstellungen" msgid "Client Options" msgstr "Optionen" -#: ../pyhoca/wxgui/menus_taskbar.py:169 ../pyhoca/wxgui/menus_taskbar.py:849 -#: ../pyhoca/wxgui/menus_taskbar.py:1070 +#: ../pyhoca/wxgui/menus_taskbar.py:169 ../pyhoca/wxgui/menus_taskbar.py:857 +#: ../pyhoca/wxgui/menus_taskbar.py:1078 msgid "E&xit" msgstr "&Beenden" @@ -957,7 +955,7 @@ msgstr "&Beenden" msgid "Window title" msgstr "Fenstertitel" -#: ../pyhoca/wxgui/menus_taskbar.py:247 ../pyhoca/wxgui/menus_taskbar.py:649 +#: ../pyhoca/wxgui/menus_taskbar.py:247 ../pyhoca/wxgui/menus_taskbar.py:657 msgid "Resume Session" msgstr "Sitzung fortsetzen" @@ -973,27 +971,27 @@ msgstr "Sitzung übernehmen" msgid "Transfer Session (not possible)" msgstr "Sitzung übernehmen (nicht möglich)" -#: ../pyhoca/wxgui/menus_taskbar.py:267 ../pyhoca/wxgui/menus_taskbar.py:640 +#: ../pyhoca/wxgui/menus_taskbar.py:267 ../pyhoca/wxgui/menus_taskbar.py:648 msgid "Suspend Session (and disconnect/exit)" msgstr "Sitzung anhalten (und Verbindung trenen / Anwendung beenden)" -#: ../pyhoca/wxgui/menus_taskbar.py:269 ../pyhoca/wxgui/menus_taskbar.py:642 +#: ../pyhoca/wxgui/menus_taskbar.py:269 ../pyhoca/wxgui/menus_taskbar.py:650 msgid "Suspend Session (and disconnect)" msgstr "Sitzungen anhalten (und Verbindung trennen)" -#: ../pyhoca/wxgui/menus_taskbar.py:271 ../pyhoca/wxgui/menus_taskbar.py:644 +#: ../pyhoca/wxgui/menus_taskbar.py:271 ../pyhoca/wxgui/menus_taskbar.py:652 msgid "Suspend Session" msgstr "Sitzung anhalten" -#: ../pyhoca/wxgui/menus_taskbar.py:277 ../pyhoca/wxgui/menus_taskbar.py:653 +#: ../pyhoca/wxgui/menus_taskbar.py:277 ../pyhoca/wxgui/menus_taskbar.py:661 msgid "Terminate Session (and disconnect/exit)" msgstr "Sitzung beenden (und Verbindung trennen / Anwendung beenden)" -#: ../pyhoca/wxgui/menus_taskbar.py:279 ../pyhoca/wxgui/menus_taskbar.py:655 +#: ../pyhoca/wxgui/menus_taskbar.py:279 ../pyhoca/wxgui/menus_taskbar.py:663 msgid "Terminate Session (and disconnect)" msgstr "Sitzung beenden (und Verbindung trennen)" -#: ../pyhoca/wxgui/menus_taskbar.py:281 ../pyhoca/wxgui/menus_taskbar.py:657 +#: ../pyhoca/wxgui/menus_taskbar.py:281 ../pyhoca/wxgui/menus_taskbar.py:665 msgid "Terminate Session" msgstr "Sitzung beenden" @@ -1009,7 +1007,7 @@ msgstr "Desktopsharing beenden (und Verbindung trennen)" msgid "End Desktop Sharing" msgstr "Desktopsharing beenden" -#: ../pyhoca/wxgui/menus_taskbar.py:292 ../pyhoca/wxgui/menus_taskbar.py:637 +#: ../pyhoca/wxgui/menus_taskbar.py:292 ../pyhoca/wxgui/menus_taskbar.py:645 msgid "Refresh menu tree" msgstr "Menübaum aktualisieren" @@ -1081,116 +1079,116 @@ msgstr "Dienstprogramme" msgid "Other Applications" msgstr "Weitere Anwendungen" -#: ../pyhoca/wxgui/menus_taskbar.py:545 ../pyhoca/wxgui/menus_taskbar.py:1035 +#: ../pyhoca/wxgui/menus_taskbar.py:553 ../pyhoca/wxgui/menus_taskbar.py:1043 msgid "Connect to" msgstr "Verbinde mit" -#: ../pyhoca/wxgui/menus_taskbar.py:550 ../pyhoca/wxgui/menus_taskbar.py:565 +#: ../pyhoca/wxgui/menus_taskbar.py:558 ../pyhoca/wxgui/menus_taskbar.py:573 #, python-format msgid "Connect %s" msgstr "Mit %s verbinden" -#: ../pyhoca/wxgui/menus_taskbar.py:559 +#: ../pyhoca/wxgui/menus_taskbar.py:567 msgid "Currently connecting..." msgstr "Verbindung wird aufgebaut..." -#: ../pyhoca/wxgui/menus_taskbar.py:574 +#: ../pyhoca/wxgui/menus_taskbar.py:582 msgid "Start &new Desktop Session" msgstr "&Neue Desktopsitzung starten" -#: ../pyhoca/wxgui/menus_taskbar.py:578 ../pyhoca/wxgui/menus_taskbar.py:678 +#: ../pyhoca/wxgui/menus_taskbar.py:586 ../pyhoca/wxgui/menus_taskbar.py:686 msgid "Start Desktop Sharing Session" msgstr "Desktopsharing Sitzung starten" -#: ../pyhoca/wxgui/menus_taskbar.py:584 ../pyhoca/wxgui/menus_taskbar.py:728 +#: ../pyhoca/wxgui/menus_taskbar.py:592 ../pyhoca/wxgui/menus_taskbar.py:736 msgid "Retrieving Application Menu..." msgstr "Hole Anwendungsmenü..." -#: ../pyhoca/wxgui/menus_taskbar.py:588 ../pyhoca/wxgui/menus_taskbar.py:731 +#: ../pyhoca/wxgui/menus_taskbar.py:596 ../pyhoca/wxgui/menus_taskbar.py:739 msgid "Retrieve Application Menu" msgstr "Hole Anwendungsmenü" -#: ../pyhoca/wxgui/menus_taskbar.py:591 +#: ../pyhoca/wxgui/menus_taskbar.py:599 msgid "Start &new RDP Session" msgstr "&Neue RDP-Sitzung starten" -#: ../pyhoca/wxgui/menus_taskbar.py:594 +#: ../pyhoca/wxgui/menus_taskbar.py:602 msgid "Start &new Session" msgstr "&Neue Sitzung starten" -#: ../pyhoca/wxgui/menus_taskbar.py:674 +#: ../pyhoca/wxgui/menus_taskbar.py:682 msgid "Launch Single Application" msgstr "Einzelne Anwendung starten" -#: ../pyhoca/wxgui/menus_taskbar.py:715 +#: ../pyhoca/wxgui/menus_taskbar.py:723 msgid "Manage Application Menu" msgstr "Anwendungsmenü verwalten" -#: ../pyhoca/wxgui/menus_taskbar.py:770 +#: ../pyhoca/wxgui/menus_taskbar.py:778 msgid "Running" msgstr "aktiv" -#: ../pyhoca/wxgui/menus_taskbar.py:772 +#: ../pyhoca/wxgui/menus_taskbar.py:780 msgid "Suspended" msgstr "angehalten" -#: ../pyhoca/wxgui/menus_taskbar.py:791 +#: ../pyhoca/wxgui/menus_taskbar.py:799 msgid "&Clean all sessions" msgstr "Alle Sitzungen beenden" -#: ../pyhoca/wxgui/menus_taskbar.py:798 +#: ../pyhoca/wxgui/menus_taskbar.py:806 msgid "Customize &profile" msgstr "Sitzungsprofil anpassen" -#: ../pyhoca/wxgui/menus_taskbar.py:800 +#: ../pyhoca/wxgui/menus_taskbar.py:808 msgid "View &profile" msgstr "&Profil ansehen" -#: ../pyhoca/wxgui/menus_taskbar.py:815 +#: ../pyhoca/wxgui/menus_taskbar.py:823 msgid "Shared &folders" msgstr "Freigegebene Ordner" -#: ../pyhoca/wxgui/menus_taskbar.py:827 +#: ../pyhoca/wxgui/menus_taskbar.py:835 msgid "Server Information" msgstr "Server-Information" -#: ../pyhoca/wxgui/menus_taskbar.py:834 +#: ../pyhoca/wxgui/menus_taskbar.py:842 msgid "&Disconnect from Server" msgstr "Von Server trennen" -#: ../pyhoca/wxgui/menus_taskbar.py:841 +#: ../pyhoca/wxgui/menus_taskbar.py:849 msgid "Suspend Session and E&xit application" msgstr "Sitzung anhalten und Anwendung beenden" -#: ../pyhoca/wxgui/menus_taskbar.py:845 +#: ../pyhoca/wxgui/menus_taskbar.py:853 msgid "Disconnect and E&xit application" msgstr "Verbindung Trennen und Anwendung schließen" -#: ../pyhoca/wxgui/menus_taskbar.py:899 +#: ../pyhoca/wxgui/menus_taskbar.py:907 msgid "Add Profile" msgstr "Sitzungsprofil hinzufügen" -#: ../pyhoca/wxgui/menus_taskbar.py:976 +#: ../pyhoca/wxgui/menus_taskbar.py:984 msgid "Session broker is not connected" msgstr "Sitzungsbroker ist nicht verbunden" -#: ../pyhoca/wxgui/menus_taskbar.py:978 +#: ../pyhoca/wxgui/menus_taskbar.py:986 msgid "No session profiles defined" msgstr "keine Sitzungsprofile definiert" -#: ../pyhoca/wxgui/menus_taskbar.py:989 +#: ../pyhoca/wxgui/menus_taskbar.py:997 msgid "Export all Profiles" msgstr "Alle Sitzungsprofile exportieren" -#: ../pyhoca/wxgui/menus_taskbar.py:991 +#: ../pyhoca/wxgui/menus_taskbar.py:999 msgid "Export Profile Group" msgstr "Sitzungsprofilgruppe exportieren" -#: ../pyhoca/wxgui/menus_taskbar.py:997 +#: ../pyhoca/wxgui/menus_taskbar.py:1005 msgid "Import Session Profiles" msgstr "Sitzungsprofile importieren" -#: ../pyhoca/wxgui/menus_taskbar.py:1040 +#: ../pyhoca/wxgui/menus_taskbar.py:1048 msgid "Connect Server" msgstr "Serververbindung aufbauen" diff --git a/po/en.po b/po/en.po index 1f97107..9025874 100644 --- a/po/en.po +++ b/po/en.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PyHoca-GUI VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-10-20 12:52+0200\n" +"POT-Creation-Date: 2016-01-29 04:04+0100\n" "PO-Revision-Date: 2014-06-29 14:26+0100\n" "Last-Translator: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>\n" "Language-Team: X2Go i18n <x2go-i18n@lists.x2go.org>\n" @@ -243,7 +243,7 @@ msgstr "SSH key file (for X2Go server) could not be unlocked!" msgid "SSH key file (for SSH proxy) could not be unlocked!" msgstr "SSH key file (for SSH proxy) could not be unlocked!" -#: ../pyhoca/wxgui/taskbar.py:111 +#: ../pyhoca/wxgui/taskbar.py:118 #, python-format msgid "" "%s\n" @@ -252,7 +252,7 @@ msgstr "" "%s\n" "Connecting you to ,,%s''" -#: ../pyhoca/wxgui/taskbar.py:115 +#: ../pyhoca/wxgui/taskbar.py:122 #, python-format msgid "" "%s\n" @@ -261,7 +261,7 @@ msgstr "" "%s\n" "Currently connecting you to remote X2Go server ,,%s''" -#: ../pyhoca/wxgui/taskbar.py:125 +#: ../pyhoca/wxgui/taskbar.py:132 #, python-format msgid "" "%s\n" @@ -270,7 +270,7 @@ msgstr "" "%s\n" "Connecting you to X2Go..." -#: ../pyhoca/wxgui/taskbar.py:129 +#: ../pyhoca/wxgui/taskbar.py:136 #, python-format msgid "" "%s\n" @@ -741,14 +741,12 @@ msgstr "Reset" msgid "Apply" msgstr "Apply" -#: ../pyhoca/wxgui/profilemanager.py:453 -#: ../pyhoca/wxgui/profilemanager.py:1184 +#: ../pyhoca/wxgui/profilemanager.py:453 ../pyhoca/wxgui/profilemanager.py:1184 #: ../pyhoca/wxgui/profilemanager.py:2364 msgid "automatically" msgstr "automatically" -#: ../pyhoca/wxgui/profilemanager.py:455 -#: ../pyhoca/wxgui/profilemanager.py:1186 +#: ../pyhoca/wxgui/profilemanager.py:455 ../pyhoca/wxgui/profilemanager.py:1186 msgid "manually" msgstr "manually" @@ -938,8 +936,8 @@ msgstr "Printing Preferences" msgid "Client Options" msgstr "Client Options" -#: ../pyhoca/wxgui/menus_taskbar.py:169 ../pyhoca/wxgui/menus_taskbar.py:849 -#: ../pyhoca/wxgui/menus_taskbar.py:1070 +#: ../pyhoca/wxgui/menus_taskbar.py:169 ../pyhoca/wxgui/menus_taskbar.py:857 +#: ../pyhoca/wxgui/menus_taskbar.py:1078 msgid "E&xit" msgstr "E&xit" @@ -947,7 +945,7 @@ msgstr "E&xit" msgid "Window title" msgstr "Window title" -#: ../pyhoca/wxgui/menus_taskbar.py:247 ../pyhoca/wxgui/menus_taskbar.py:649 +#: ../pyhoca/wxgui/menus_taskbar.py:247 ../pyhoca/wxgui/menus_taskbar.py:657 msgid "Resume Session" msgstr "Resume Session" @@ -963,27 +961,27 @@ msgstr "Transfer Session" msgid "Transfer Session (not possible)" msgstr "Transfer Session (not possible)" -#: ../pyhoca/wxgui/menus_taskbar.py:267 ../pyhoca/wxgui/menus_taskbar.py:640 +#: ../pyhoca/wxgui/menus_taskbar.py:267 ../pyhoca/wxgui/menus_taskbar.py:648 msgid "Suspend Session (and disconnect/exit)" msgstr "Suspend Session (and disconnect/exit)" -#: ../pyhoca/wxgui/menus_taskbar.py:269 ../pyhoca/wxgui/menus_taskbar.py:642 +#: ../pyhoca/wxgui/menus_taskbar.py:269 ../pyhoca/wxgui/menus_taskbar.py:650 msgid "Suspend Session (and disconnect)" msgstr "Suspend Session (and disconnect)" -#: ../pyhoca/wxgui/menus_taskbar.py:271 ../pyhoca/wxgui/menus_taskbar.py:644 +#: ../pyhoca/wxgui/menus_taskbar.py:271 ../pyhoca/wxgui/menus_taskbar.py:652 msgid "Suspend Session" msgstr "Suspend Session" -#: ../pyhoca/wxgui/menus_taskbar.py:277 ../pyhoca/wxgui/menus_taskbar.py:653 +#: ../pyhoca/wxgui/menus_taskbar.py:277 ../pyhoca/wxgui/menus_taskbar.py:661 msgid "Terminate Session (and disconnect/exit)" msgstr "Terminate Session (and disconnect/exit)" -#: ../pyhoca/wxgui/menus_taskbar.py:279 ../pyhoca/wxgui/menus_taskbar.py:655 +#: ../pyhoca/wxgui/menus_taskbar.py:279 ../pyhoca/wxgui/menus_taskbar.py:663 msgid "Terminate Session (and disconnect)" msgstr "Terminate Session (and disconnect)" -#: ../pyhoca/wxgui/menus_taskbar.py:281 ../pyhoca/wxgui/menus_taskbar.py:657 +#: ../pyhoca/wxgui/menus_taskbar.py:281 ../pyhoca/wxgui/menus_taskbar.py:665 msgid "Terminate Session" msgstr "Terminate Session" @@ -999,7 +997,7 @@ msgstr "End Desktop Sharing (and disconnect)" msgid "End Desktop Sharing" msgstr "End Desktop Sharing" -#: ../pyhoca/wxgui/menus_taskbar.py:292 ../pyhoca/wxgui/menus_taskbar.py:637 +#: ../pyhoca/wxgui/menus_taskbar.py:292 ../pyhoca/wxgui/menus_taskbar.py:645 msgid "Refresh menu tree" msgstr "Refresh menu tree" @@ -1071,116 +1069,116 @@ msgstr "Utilities" msgid "Other Applications" msgstr "Other Applications" -#: ../pyhoca/wxgui/menus_taskbar.py:545 ../pyhoca/wxgui/menus_taskbar.py:1035 +#: ../pyhoca/wxgui/menus_taskbar.py:553 ../pyhoca/wxgui/menus_taskbar.py:1043 msgid "Connect to" msgstr "Connect to" -#: ../pyhoca/wxgui/menus_taskbar.py:550 ../pyhoca/wxgui/menus_taskbar.py:565 +#: ../pyhoca/wxgui/menus_taskbar.py:558 ../pyhoca/wxgui/menus_taskbar.py:573 #, python-format msgid "Connect %s" msgstr "Connect %s" -#: ../pyhoca/wxgui/menus_taskbar.py:559 +#: ../pyhoca/wxgui/menus_taskbar.py:567 msgid "Currently connecting..." msgstr "Currently connecting..." -#: ../pyhoca/wxgui/menus_taskbar.py:574 +#: ../pyhoca/wxgui/menus_taskbar.py:582 msgid "Start &new Desktop Session" msgstr "Start &new Desktop Session" -#: ../pyhoca/wxgui/menus_taskbar.py:578 ../pyhoca/wxgui/menus_taskbar.py:678 +#: ../pyhoca/wxgui/menus_taskbar.py:586 ../pyhoca/wxgui/menus_taskbar.py:686 msgid "Start Desktop Sharing Session" msgstr "Start Desktop Sharing Session" -#: ../pyhoca/wxgui/menus_taskbar.py:584 ../pyhoca/wxgui/menus_taskbar.py:728 +#: ../pyhoca/wxgui/menus_taskbar.py:592 ../pyhoca/wxgui/menus_taskbar.py:736 msgid "Retrieving Application Menu..." msgstr "Retrieving Application Menu..." -#: ../pyhoca/wxgui/menus_taskbar.py:588 ../pyhoca/wxgui/menus_taskbar.py:731 +#: ../pyhoca/wxgui/menus_taskbar.py:596 ../pyhoca/wxgui/menus_taskbar.py:739 msgid "Retrieve Application Menu" msgstr "Retrieve Application Menu" -#: ../pyhoca/wxgui/menus_taskbar.py:591 +#: ../pyhoca/wxgui/menus_taskbar.py:599 msgid "Start &new RDP Session" msgstr "Start &new RDP Session" -#: ../pyhoca/wxgui/menus_taskbar.py:594 +#: ../pyhoca/wxgui/menus_taskbar.py:602 msgid "Start &new Session" msgstr "Start &new Session" -#: ../pyhoca/wxgui/menus_taskbar.py:674 +#: ../pyhoca/wxgui/menus_taskbar.py:682 msgid "Launch Single Application" msgstr "Launch Single Application" -#: ../pyhoca/wxgui/menus_taskbar.py:715 +#: ../pyhoca/wxgui/menus_taskbar.py:723 msgid "Manage Application Menu" msgstr "Manage Application Menu" -#: ../pyhoca/wxgui/menus_taskbar.py:770 +#: ../pyhoca/wxgui/menus_taskbar.py:778 msgid "Running" msgstr "Running" -#: ../pyhoca/wxgui/menus_taskbar.py:772 +#: ../pyhoca/wxgui/menus_taskbar.py:780 msgid "Suspended" msgstr "Suspended" -#: ../pyhoca/wxgui/menus_taskbar.py:791 +#: ../pyhoca/wxgui/menus_taskbar.py:799 msgid "&Clean all sessions" msgstr "&Clean all sessions" -#: ../pyhoca/wxgui/menus_taskbar.py:798 +#: ../pyhoca/wxgui/menus_taskbar.py:806 msgid "Customize &profile" msgstr "Customize &profile" -#: ../pyhoca/wxgui/menus_taskbar.py:800 +#: ../pyhoca/wxgui/menus_taskbar.py:808 msgid "View &profile" msgstr "View &profile" -#: ../pyhoca/wxgui/menus_taskbar.py:815 +#: ../pyhoca/wxgui/menus_taskbar.py:823 msgid "Shared &folders" msgstr "Shared &folders" -#: ../pyhoca/wxgui/menus_taskbar.py:827 +#: ../pyhoca/wxgui/menus_taskbar.py:835 msgid "Server Information" msgstr "Server Information" -#: ../pyhoca/wxgui/menus_taskbar.py:834 +#: ../pyhoca/wxgui/menus_taskbar.py:842 msgid "&Disconnect from Server" msgstr "&Disconnect from Server" -#: ../pyhoca/wxgui/menus_taskbar.py:841 +#: ../pyhoca/wxgui/menus_taskbar.py:849 msgid "Suspend Session and E&xit application" msgstr "Suspend Session and E&xit application" -#: ../pyhoca/wxgui/menus_taskbar.py:845 +#: ../pyhoca/wxgui/menus_taskbar.py:853 msgid "Disconnect and E&xit application" msgstr "Disconnect and E&xit application" -#: ../pyhoca/wxgui/menus_taskbar.py:899 +#: ../pyhoca/wxgui/menus_taskbar.py:907 msgid "Add Profile" msgstr "Add Profile" -#: ../pyhoca/wxgui/menus_taskbar.py:976 +#: ../pyhoca/wxgui/menus_taskbar.py:984 msgid "Session broker is not connected" msgstr "Session broker is not connected" -#: ../pyhoca/wxgui/menus_taskbar.py:978 +#: ../pyhoca/wxgui/menus_taskbar.py:986 msgid "No session profiles defined" msgstr "No session profiles defined" -#: ../pyhoca/wxgui/menus_taskbar.py:989 +#: ../pyhoca/wxgui/menus_taskbar.py:997 msgid "Export all Profiles" msgstr "Export all Profiles" -#: ../pyhoca/wxgui/menus_taskbar.py:991 +#: ../pyhoca/wxgui/menus_taskbar.py:999 msgid "Export Profile Group" msgstr "Export Profile Group" -#: ../pyhoca/wxgui/menus_taskbar.py:997 +#: ../pyhoca/wxgui/menus_taskbar.py:1005 msgid "Import Session Profiles" msgstr "Import Session Profiles" -#: ../pyhoca/wxgui/menus_taskbar.py:1040 +#: ../pyhoca/wxgui/menus_taskbar.py:1048 msgid "Connect Server" msgstr "Connect Server" diff --git a/po/es.po b/po/es.po index f6322f8..01b19fc 100644 --- a/po/es.po +++ b/po/es.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PyHoca-GUI VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-10-20 12:52+0200\n" +"POT-Creation-Date: 2016-01-29 04:04+0100\n" "PO-Revision-Date: 2014-10-09 09:37+0200\n" "Last-Translator: Ricardo Diaz <oceanosoftlapalma@gmail.com>\n" "Language-Team: Spanish <>\n" @@ -250,7 +250,7 @@ msgstr "" msgid "SSH key file (for SSH proxy) could not be unlocked!" msgstr "¡El archivo de clave SSH (para el proxy SSH) no pudo ser desbloqueado!" -#: ../pyhoca/wxgui/taskbar.py:111 +#: ../pyhoca/wxgui/taskbar.py:118 #, python-format msgid "" "%s\n" @@ -259,7 +259,7 @@ msgstr "" "%s\n" "Conectando a \"%s\"" -#: ../pyhoca/wxgui/taskbar.py:115 +#: ../pyhoca/wxgui/taskbar.py:122 #, python-format msgid "" "%s\n" @@ -268,7 +268,7 @@ msgstr "" "%s\n" "Conectando con el servidor remoto X2Go \"%s\"" -#: ../pyhoca/wxgui/taskbar.py:125 +#: ../pyhoca/wxgui/taskbar.py:132 #, python-format msgid "" "%s\n" @@ -277,7 +277,7 @@ msgstr "" "%s\n" "Conectando a X2Go..." -#: ../pyhoca/wxgui/taskbar.py:129 +#: ../pyhoca/wxgui/taskbar.py:136 #, python-format msgid "" "%s\n" @@ -754,14 +754,12 @@ msgstr "Reiniciar" msgid "Apply" msgstr "Aplicar" -#: ../pyhoca/wxgui/profilemanager.py:453 -#: ../pyhoca/wxgui/profilemanager.py:1184 +#: ../pyhoca/wxgui/profilemanager.py:453 ../pyhoca/wxgui/profilemanager.py:1184 #: ../pyhoca/wxgui/profilemanager.py:2364 msgid "automatically" msgstr "automáticamente" -#: ../pyhoca/wxgui/profilemanager.py:455 -#: ../pyhoca/wxgui/profilemanager.py:1186 +#: ../pyhoca/wxgui/profilemanager.py:455 ../pyhoca/wxgui/profilemanager.py:1186 msgid "manually" msgstr "manualmente" @@ -951,8 +949,8 @@ msgstr "Preferencias de impresión" msgid "Client Options" msgstr "Opciones del Cliente" -#: ../pyhoca/wxgui/menus_taskbar.py:169 ../pyhoca/wxgui/menus_taskbar.py:849 -#: ../pyhoca/wxgui/menus_taskbar.py:1070 +#: ../pyhoca/wxgui/menus_taskbar.py:169 ../pyhoca/wxgui/menus_taskbar.py:857 +#: ../pyhoca/wxgui/menus_taskbar.py:1078 msgid "E&xit" msgstr "S&alir" @@ -960,7 +958,7 @@ msgstr "S&alir" msgid "Window title" msgstr "Título de la ventana" -#: ../pyhoca/wxgui/menus_taskbar.py:247 ../pyhoca/wxgui/menus_taskbar.py:649 +#: ../pyhoca/wxgui/menus_taskbar.py:247 ../pyhoca/wxgui/menus_taskbar.py:657 msgid "Resume Session" msgstr "Retomar Sesión" @@ -976,27 +974,27 @@ msgstr "Transferir Sesión" msgid "Transfer Session (not possible)" msgstr "Transferir Sesión (no disponible)" -#: ../pyhoca/wxgui/menus_taskbar.py:267 ../pyhoca/wxgui/menus_taskbar.py:640 +#: ../pyhoca/wxgui/menus_taskbar.py:267 ../pyhoca/wxgui/menus_taskbar.py:648 msgid "Suspend Session (and disconnect/exit)" msgstr "Suspender Sesión (y desconectar/salir)" -#: ../pyhoca/wxgui/menus_taskbar.py:269 ../pyhoca/wxgui/menus_taskbar.py:642 +#: ../pyhoca/wxgui/menus_taskbar.py:269 ../pyhoca/wxgui/menus_taskbar.py:650 msgid "Suspend Session (and disconnect)" msgstr "Suspender Sesión (y desconectar)" -#: ../pyhoca/wxgui/menus_taskbar.py:271 ../pyhoca/wxgui/menus_taskbar.py:644 +#: ../pyhoca/wxgui/menus_taskbar.py:271 ../pyhoca/wxgui/menus_taskbar.py:652 msgid "Suspend Session" msgstr "Suspender Sesión" -#: ../pyhoca/wxgui/menus_taskbar.py:277 ../pyhoca/wxgui/menus_taskbar.py:653 +#: ../pyhoca/wxgui/menus_taskbar.py:277 ../pyhoca/wxgui/menus_taskbar.py:661 msgid "Terminate Session (and disconnect/exit)" msgstr "Finalizar Sesión (y desconectar/salir)" -#: ../pyhoca/wxgui/menus_taskbar.py:279 ../pyhoca/wxgui/menus_taskbar.py:655 +#: ../pyhoca/wxgui/menus_taskbar.py:279 ../pyhoca/wxgui/menus_taskbar.py:663 msgid "Terminate Session (and disconnect)" msgstr "Finalizar Sesión (y desconectar)" -#: ../pyhoca/wxgui/menus_taskbar.py:281 ../pyhoca/wxgui/menus_taskbar.py:657 +#: ../pyhoca/wxgui/menus_taskbar.py:281 ../pyhoca/wxgui/menus_taskbar.py:665 msgid "Terminate Session" msgstr "Finalizar Sesión" @@ -1012,7 +1010,7 @@ msgstr "Finalizar Compartir Escritorio (y desconectar)" msgid "End Desktop Sharing" msgstr "Finalizó Compartir Escritorio" -#: ../pyhoca/wxgui/menus_taskbar.py:292 ../pyhoca/wxgui/menus_taskbar.py:637 +#: ../pyhoca/wxgui/menus_taskbar.py:292 ../pyhoca/wxgui/menus_taskbar.py:645 msgid "Refresh menu tree" msgstr "Actualizar árbol de menús" @@ -1084,116 +1082,116 @@ msgstr "Utilidades" msgid "Other Applications" msgstr "Otras Aplicaciones" -#: ../pyhoca/wxgui/menus_taskbar.py:545 ../pyhoca/wxgui/menus_taskbar.py:1035 +#: ../pyhoca/wxgui/menus_taskbar.py:553 ../pyhoca/wxgui/menus_taskbar.py:1043 msgid "Connect to" msgstr "Conectar a" -#: ../pyhoca/wxgui/menus_taskbar.py:550 ../pyhoca/wxgui/menus_taskbar.py:565 +#: ../pyhoca/wxgui/menus_taskbar.py:558 ../pyhoca/wxgui/menus_taskbar.py:573 #, python-format msgid "Connect %s" msgstr "Conectar %s" -#: ../pyhoca/wxgui/menus_taskbar.py:559 +#: ../pyhoca/wxgui/menus_taskbar.py:567 msgid "Currently connecting..." msgstr "Conectando..." -#: ../pyhoca/wxgui/menus_taskbar.py:574 +#: ../pyhoca/wxgui/menus_taskbar.py:582 msgid "Start &new Desktop Session" msgstr "Iniciar &nueva Sesión de Escritorio" -#: ../pyhoca/wxgui/menus_taskbar.py:578 ../pyhoca/wxgui/menus_taskbar.py:678 +#: ../pyhoca/wxgui/menus_taskbar.py:586 ../pyhoca/wxgui/menus_taskbar.py:686 msgid "Start Desktop Sharing Session" msgstr "Iniciar Compartir Escritorio" -#: ../pyhoca/wxgui/menus_taskbar.py:584 ../pyhoca/wxgui/menus_taskbar.py:728 +#: ../pyhoca/wxgui/menus_taskbar.py:592 ../pyhoca/wxgui/menus_taskbar.py:736 msgid "Retrieving Application Menu..." msgstr "Recuperando Menú de Aplicación..." -#: ../pyhoca/wxgui/menus_taskbar.py:588 ../pyhoca/wxgui/menus_taskbar.py:731 +#: ../pyhoca/wxgui/menus_taskbar.py:596 ../pyhoca/wxgui/menus_taskbar.py:739 msgid "Retrieve Application Menu" msgstr "Recibido Menú de Aplicación" -#: ../pyhoca/wxgui/menus_taskbar.py:591 +#: ../pyhoca/wxgui/menus_taskbar.py:599 msgid "Start &new RDP Session" msgstr "Iniciar &nueva Sesión RDP" -#: ../pyhoca/wxgui/menus_taskbar.py:594 +#: ../pyhoca/wxgui/menus_taskbar.py:602 msgid "Start &new Session" msgstr "Iniciar &nueva Sesión" -#: ../pyhoca/wxgui/menus_taskbar.py:674 +#: ../pyhoca/wxgui/menus_taskbar.py:682 msgid "Launch Single Application" msgstr "Ejecutar la aplicación" -#: ../pyhoca/wxgui/menus_taskbar.py:715 +#: ../pyhoca/wxgui/menus_taskbar.py:723 msgid "Manage Application Menu" msgstr "Gestionar el Menú de la Aplicación" -#: ../pyhoca/wxgui/menus_taskbar.py:770 +#: ../pyhoca/wxgui/menus_taskbar.py:778 msgid "Running" msgstr "Activa" -#: ../pyhoca/wxgui/menus_taskbar.py:772 +#: ../pyhoca/wxgui/menus_taskbar.py:780 msgid "Suspended" msgstr "Suspendida" -#: ../pyhoca/wxgui/menus_taskbar.py:791 +#: ../pyhoca/wxgui/menus_taskbar.py:799 msgid "&Clean all sessions" msgstr "&Limpiar el registro de sesiones" -#: ../pyhoca/wxgui/menus_taskbar.py:798 +#: ../pyhoca/wxgui/menus_taskbar.py:806 msgid "Customize &profile" msgstr "Configurar &perfil" -#: ../pyhoca/wxgui/menus_taskbar.py:800 +#: ../pyhoca/wxgui/menus_taskbar.py:808 msgid "View &profile" msgstr "Ver &perfil" -#: ../pyhoca/wxgui/menus_taskbar.py:815 +#: ../pyhoca/wxgui/menus_taskbar.py:823 msgid "Shared &folders" msgstr "Compartir &carpetas" -#: ../pyhoca/wxgui/menus_taskbar.py:827 +#: ../pyhoca/wxgui/menus_taskbar.py:835 msgid "Server Information" msgstr "Información del Servidor" -#: ../pyhoca/wxgui/menus_taskbar.py:834 +#: ../pyhoca/wxgui/menus_taskbar.py:842 msgid "&Disconnect from Server" msgstr "&Desconectar del servidor" -#: ../pyhoca/wxgui/menus_taskbar.py:841 +#: ../pyhoca/wxgui/menus_taskbar.py:849 msgid "Suspend Session and E&xit application" msgstr "Suspender Sesión y Salir (e&xit) de la aplicación" -#: ../pyhoca/wxgui/menus_taskbar.py:845 +#: ../pyhoca/wxgui/menus_taskbar.py:853 msgid "Disconnect and E&xit application" msgstr "Desconectar y Salir (e&xit) de la aplicación" -#: ../pyhoca/wxgui/menus_taskbar.py:899 +#: ../pyhoca/wxgui/menus_taskbar.py:907 msgid "Add Profile" msgstr "Añadir Perfil" -#: ../pyhoca/wxgui/menus_taskbar.py:976 +#: ../pyhoca/wxgui/menus_taskbar.py:984 msgid "Session broker is not connected" msgstr "El broker de sesiones no está conectado" -#: ../pyhoca/wxgui/menus_taskbar.py:978 +#: ../pyhoca/wxgui/menus_taskbar.py:986 msgid "No session profiles defined" msgstr "No se han definido perfiles de sesión" -#: ../pyhoca/wxgui/menus_taskbar.py:989 +#: ../pyhoca/wxgui/menus_taskbar.py:997 msgid "Export all Profiles" msgstr "Exportar todos los Perfiles" -#: ../pyhoca/wxgui/menus_taskbar.py:991 +#: ../pyhoca/wxgui/menus_taskbar.py:999 msgid "Export Profile Group" msgstr "Exportar Perfil de Grupo" -#: ../pyhoca/wxgui/menus_taskbar.py:997 +#: ../pyhoca/wxgui/menus_taskbar.py:1005 msgid "Import Session Profiles" msgstr "Importar perfiles de sesión" -#: ../pyhoca/wxgui/menus_taskbar.py:1040 +#: ../pyhoca/wxgui/menus_taskbar.py:1048 msgid "Connect Server" msgstr "Conectar con el Servidor" diff --git a/po/et.po b/po/et.po index e383ae6..d38ec70 100644 --- a/po/et.po +++ b/po/et.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: PyHoca-GUI VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-10-20 12:52+0200\n" +"POT-Creation-Date: 2016-01-29 04:04+0100\n" "PO-Revision-Date: 2014-08-19 17:00+0200\n" "Last-Translator: Robert Parts <partsrobert@gmail.com>\n" "Language-Team: Estonia <x2go-i18n@lists.x2go.org>\n" @@ -240,28 +240,28 @@ msgstr "SSH võtmefaili (X2Go serveri jaoks) ei saa.vabastada!" msgid "SSH key file (for SSH proxy) could not be unlocked!" msgstr "SSH võtmefaili (SSH proxy jaoks) ei saa.vabastada!" -#: ../pyhoca/wxgui/taskbar.py:111 +#: ../pyhoca/wxgui/taskbar.py:118 #, python-format msgid "" "%s\n" "Connecting you to ,,%s''" msgstr "%s ühendab Sind ,,%s\"" -#: ../pyhoca/wxgui/taskbar.py:115 +#: ../pyhoca/wxgui/taskbar.py:122 #, python-format msgid "" "%s\n" "Currently connecting you to remote X2Go server ,,%s''" msgstr "%s ühendame Sind X2Go serveriga ,,%s\"" -#: ../pyhoca/wxgui/taskbar.py:125 +#: ../pyhoca/wxgui/taskbar.py:132 #, python-format msgid "" "%s\n" "Connecting you to X2Go..." msgstr "%s ühendab Sind X2Go..." -#: ../pyhoca/wxgui/taskbar.py:129 +#: ../pyhoca/wxgui/taskbar.py:136 #, python-format msgid "" "%s\n" @@ -731,14 +731,12 @@ msgstr "Algseadista" msgid "Apply" msgstr "Lisa" -#: ../pyhoca/wxgui/profilemanager.py:453 -#: ../pyhoca/wxgui/profilemanager.py:1184 +#: ../pyhoca/wxgui/profilemanager.py:453 ../pyhoca/wxgui/profilemanager.py:1184 #: ../pyhoca/wxgui/profilemanager.py:2364 msgid "automatically" msgstr "automaatselt" -#: ../pyhoca/wxgui/profilemanager.py:455 -#: ../pyhoca/wxgui/profilemanager.py:1186 +#: ../pyhoca/wxgui/profilemanager.py:455 ../pyhoca/wxgui/profilemanager.py:1186 msgid "manually" msgstr "käsitsi" @@ -928,8 +926,8 @@ msgstr "Printimise seaded" msgid "Client Options" msgstr "Kliendi seaded" -#: ../pyhoca/wxgui/menus_taskbar.py:169 ../pyhoca/wxgui/menus_taskbar.py:849 -#: ../pyhoca/wxgui/menus_taskbar.py:1070 +#: ../pyhoca/wxgui/menus_taskbar.py:169 ../pyhoca/wxgui/menus_taskbar.py:857 +#: ../pyhoca/wxgui/menus_taskbar.py:1078 msgid "E&xit" msgstr "Välju" @@ -937,7 +935,7 @@ msgstr "Välju" msgid "Window title" msgstr "Akna pealdis" -#: ../pyhoca/wxgui/menus_taskbar.py:247 ../pyhoca/wxgui/menus_taskbar.py:649 +#: ../pyhoca/wxgui/menus_taskbar.py:247 ../pyhoca/wxgui/menus_taskbar.py:657 msgid "Resume Session" msgstr "Jätka sessiooni" @@ -953,27 +951,27 @@ msgstr "Kanna sessioon üle" msgid "Transfer Session (not possible)" msgstr "Kanna sessioon üle (ei ole võimalik)" -#: ../pyhoca/wxgui/menus_taskbar.py:267 ../pyhoca/wxgui/menus_taskbar.py:640 +#: ../pyhoca/wxgui/menus_taskbar.py:267 ../pyhoca/wxgui/menus_taskbar.py:648 msgid "Suspend Session (and disconnect/exit)" msgstr "Peata sessioon (ja lõpeta ühendus/välju)" -#: ../pyhoca/wxgui/menus_taskbar.py:269 ../pyhoca/wxgui/menus_taskbar.py:642 +#: ../pyhoca/wxgui/menus_taskbar.py:269 ../pyhoca/wxgui/menus_taskbar.py:650 msgid "Suspend Session (and disconnect)" msgstr "Peata sessioon (ja lõpeta ühendus)" -#: ../pyhoca/wxgui/menus_taskbar.py:271 ../pyhoca/wxgui/menus_taskbar.py:644 +#: ../pyhoca/wxgui/menus_taskbar.py:271 ../pyhoca/wxgui/menus_taskbar.py:652 msgid "Suspend Session" msgstr "Peata sessioon" -#: ../pyhoca/wxgui/menus_taskbar.py:277 ../pyhoca/wxgui/menus_taskbar.py:653 +#: ../pyhoca/wxgui/menus_taskbar.py:277 ../pyhoca/wxgui/menus_taskbar.py:661 msgid "Terminate Session (and disconnect/exit)" msgstr "Lõpeta sessioon (ja lõpeta ühendus/välju)" -#: ../pyhoca/wxgui/menus_taskbar.py:279 ../pyhoca/wxgui/menus_taskbar.py:655 +#: ../pyhoca/wxgui/menus_taskbar.py:279 ../pyhoca/wxgui/menus_taskbar.py:663 msgid "Terminate Session (and disconnect)" msgstr "Lõpeta sessioon (ja lõpeta ühendus/välju)" -#: ../pyhoca/wxgui/menus_taskbar.py:281 ../pyhoca/wxgui/menus_taskbar.py:657 +#: ../pyhoca/wxgui/menus_taskbar.py:281 ../pyhoca/wxgui/menus_taskbar.py:665 msgid "Terminate Session" msgstr "Lõpeta Sessioon" @@ -989,7 +987,7 @@ msgstr "Lõpeta töölaua jagamine (ja lõpeta ühendus)" msgid "End Desktop Sharing" msgstr "Lõpeta töölaua jagamine" -#: ../pyhoca/wxgui/menus_taskbar.py:292 ../pyhoca/wxgui/menus_taskbar.py:637 +#: ../pyhoca/wxgui/menus_taskbar.py:292 ../pyhoca/wxgui/menus_taskbar.py:645 msgid "Refresh menu tree" msgstr "Värskenda menüü" @@ -1061,116 +1059,116 @@ msgstr "Utiliidid" msgid "Other Applications" msgstr "Muud aplikatsioonid" -#: ../pyhoca/wxgui/menus_taskbar.py:545 ../pyhoca/wxgui/menus_taskbar.py:1035 +#: ../pyhoca/wxgui/menus_taskbar.py:553 ../pyhoca/wxgui/menus_taskbar.py:1043 msgid "Connect to" msgstr "Ühendu" -#: ../pyhoca/wxgui/menus_taskbar.py:550 ../pyhoca/wxgui/menus_taskbar.py:565 +#: ../pyhoca/wxgui/menus_taskbar.py:558 ../pyhoca/wxgui/menus_taskbar.py:573 #, python-format msgid "Connect %s" msgstr "Ühenda %s" -#: ../pyhoca/wxgui/menus_taskbar.py:559 +#: ../pyhoca/wxgui/menus_taskbar.py:567 msgid "Currently connecting..." msgstr "Ühendamine..." -#: ../pyhoca/wxgui/menus_taskbar.py:574 +#: ../pyhoca/wxgui/menus_taskbar.py:582 msgid "Start &new Desktop Session" msgstr "Alusta &uut sessiooni" -#: ../pyhoca/wxgui/menus_taskbar.py:578 ../pyhoca/wxgui/menus_taskbar.py:678 +#: ../pyhoca/wxgui/menus_taskbar.py:586 ../pyhoca/wxgui/menus_taskbar.py:686 msgid "Start Desktop Sharing Session" msgstr "Alusta sessiooni" -#: ../pyhoca/wxgui/menus_taskbar.py:584 ../pyhoca/wxgui/menus_taskbar.py:728 +#: ../pyhoca/wxgui/menus_taskbar.py:592 ../pyhoca/wxgui/menus_taskbar.py:736 msgid "Retrieving Application Menu..." msgstr "Otsin aplikatsioonide menüüd..." -#: ../pyhoca/wxgui/menus_taskbar.py:588 ../pyhoca/wxgui/menus_taskbar.py:731 +#: ../pyhoca/wxgui/menus_taskbar.py:596 ../pyhoca/wxgui/menus_taskbar.py:739 msgid "Retrieve Application Menu" msgstr "otsi aplikatsioonide menüü" -#: ../pyhoca/wxgui/menus_taskbar.py:591 +#: ../pyhoca/wxgui/menus_taskbar.py:599 msgid "Start &new RDP Session" msgstr "Alusta &uut RDP sessiooni" -#: ../pyhoca/wxgui/menus_taskbar.py:594 +#: ../pyhoca/wxgui/menus_taskbar.py:602 msgid "Start &new Session" msgstr "&Alusta uut sessiooni" -#: ../pyhoca/wxgui/menus_taskbar.py:674 +#: ../pyhoca/wxgui/menus_taskbar.py:682 msgid "Launch Single Application" msgstr "Käivita programm" -#: ../pyhoca/wxgui/menus_taskbar.py:715 +#: ../pyhoca/wxgui/menus_taskbar.py:723 msgid "Manage Application Menu" msgstr "Halda programmide menüüd" -#: ../pyhoca/wxgui/menus_taskbar.py:770 +#: ../pyhoca/wxgui/menus_taskbar.py:778 msgid "Running" msgstr "Töötab" -#: ../pyhoca/wxgui/menus_taskbar.py:772 +#: ../pyhoca/wxgui/menus_taskbar.py:780 msgid "Suspended" msgstr "Peata" -#: ../pyhoca/wxgui/menus_taskbar.py:791 +#: ../pyhoca/wxgui/menus_taskbar.py:799 msgid "&Clean all sessions" msgstr "&Lõpeta kõik sessioonid" -#: ../pyhoca/wxgui/menus_taskbar.py:798 +#: ../pyhoca/wxgui/menus_taskbar.py:806 msgid "Customize &profile" msgstr "Muuda &profiili" -#: ../pyhoca/wxgui/menus_taskbar.py:800 +#: ../pyhoca/wxgui/menus_taskbar.py:808 msgid "View &profile" msgstr "&Vaata profiili" -#: ../pyhoca/wxgui/menus_taskbar.py:815 +#: ../pyhoca/wxgui/menus_taskbar.py:823 msgid "Shared &folders" msgstr "Jagatud &kataloogid" -#: ../pyhoca/wxgui/menus_taskbar.py:827 +#: ../pyhoca/wxgui/menus_taskbar.py:835 msgid "Server Information" msgstr "Serveri info" -#: ../pyhoca/wxgui/menus_taskbar.py:834 +#: ../pyhoca/wxgui/menus_taskbar.py:842 msgid "&Disconnect from Server" msgstr "&Lõpeta ühendus serveriga" -#: ../pyhoca/wxgui/menus_taskbar.py:841 +#: ../pyhoca/wxgui/menus_taskbar.py:849 msgid "Suspend Session and E&xit application" msgstr "&Lõpeta sessioon ja sule" -#: ../pyhoca/wxgui/menus_taskbar.py:845 +#: ../pyhoca/wxgui/menus_taskbar.py:853 msgid "Disconnect and E&xit application" msgstr "&Katkesta ühendus ja sule" -#: ../pyhoca/wxgui/menus_taskbar.py:899 +#: ../pyhoca/wxgui/menus_taskbar.py:907 msgid "Add Profile" msgstr "Lisa profiil" -#: ../pyhoca/wxgui/menus_taskbar.py:976 +#: ../pyhoca/wxgui/menus_taskbar.py:984 msgid "Session broker is not connected" msgstr "Sessioonihaldur ei ole ühendatud" -#: ../pyhoca/wxgui/menus_taskbar.py:978 +#: ../pyhoca/wxgui/menus_taskbar.py:986 msgid "No session profiles defined" msgstr "Sessiooni profiile ei ole" -#: ../pyhoca/wxgui/menus_taskbar.py:989 +#: ../pyhoca/wxgui/menus_taskbar.py:997 msgid "Export all Profiles" msgstr "Ekspordi kõik profiilid" -#: ../pyhoca/wxgui/menus_taskbar.py:991 +#: ../pyhoca/wxgui/menus_taskbar.py:999 msgid "Export Profile Group" msgstr "Ekspordi profiilide grupp" -#: ../pyhoca/wxgui/menus_taskbar.py:997 +#: ../pyhoca/wxgui/menus_taskbar.py:1005 msgid "Import Session Profiles" msgstr "Impordi sessiooni profiilid" -#: ../pyhoca/wxgui/menus_taskbar.py:1040 +#: ../pyhoca/wxgui/menus_taskbar.py:1048 msgid "Connect Server" msgstr "Ühenda server" diff --git a/po/fi.po b/po/fi.po index b1d70d6..f7b5ced 100644 --- a/po/fi.po +++ b/po/fi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PyHoca-GUI VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-10-29 12:52+0200\n" +"POT-Creation-Date: 2016-01-29 04:04+0100\n" "PO-Revision-Date: 2014-10-30 12:02+0200\n" "Last-Translator: martti pitkanen <martti@aplcomp.fi>\n" "Language-Team: X2Go i18n <x2go-i18n@lists.x2go.org>\n" @@ -243,7 +243,7 @@ msgstr "SSH -avain (X2Go -palvelimen käyttämä) ei avautunut!" msgid "SSH key file (for SSH proxy) could not be unlocked!" msgstr "SSH -avaintiedosto (SSH -proxya varten) ei avautunut!" -#: ../pyhoca/wxgui/taskbar.py:111 +#: ../pyhoca/wxgui/taskbar.py:118 #, python-format msgid "" "%s\n" @@ -252,7 +252,7 @@ msgstr "" "%s\n" "Yhdistää palvelimeen ,,%s''" -#: ../pyhoca/wxgui/taskbar.py:115 +#: ../pyhoca/wxgui/taskbar.py:122 #, python-format msgid "" "%s\n" @@ -261,7 +261,7 @@ msgstr "" "%s\n" "Yhdistää X2Go -palvelimeen ,,%s''" -#: ../pyhoca/wxgui/taskbar.py:125 +#: ../pyhoca/wxgui/taskbar.py:132 #, python-format msgid "" "%s\n" @@ -270,7 +270,7 @@ msgstr "" "%s\n" "Yhdistää X2Go..." -#: ../pyhoca/wxgui/taskbar.py:129 +#: ../pyhoca/wxgui/taskbar.py:136 #, python-format msgid "" "%s\n" @@ -745,14 +745,12 @@ msgstr "Palauta alkuarvot" msgid "Apply" msgstr "Käytä" -#: ../pyhoca/wxgui/profilemanager.py:453 -#: ../pyhoca/wxgui/profilemanager.py:1184 +#: ../pyhoca/wxgui/profilemanager.py:453 ../pyhoca/wxgui/profilemanager.py:1184 #: ../pyhoca/wxgui/profilemanager.py:2364 msgid "automatically" msgstr "automaattisesti" -#: ../pyhoca/wxgui/profilemanager.py:455 -#: ../pyhoca/wxgui/profilemanager.py:1186 +#: ../pyhoca/wxgui/profilemanager.py:455 ../pyhoca/wxgui/profilemanager.py:1186 msgid "manually" msgstr "manuaalisesti" @@ -942,8 +940,8 @@ msgstr "Tulostinasetukset" msgid "Client Options" msgstr "Pääteasetukset" -#: ../pyhoca/wxgui/menus_taskbar.py:169 ../pyhoca/wxgui/menus_taskbar.py:849 -#: ../pyhoca/wxgui/menus_taskbar.py:1070 +#: ../pyhoca/wxgui/menus_taskbar.py:169 ../pyhoca/wxgui/menus_taskbar.py:857 +#: ../pyhoca/wxgui/menus_taskbar.py:1078 msgid "E&xit" msgstr "E&xit" @@ -951,7 +949,7 @@ msgstr "E&xit" msgid "Window title" msgstr "Ikkunan otsikko" -#: ../pyhoca/wxgui/menus_taskbar.py:247 ../pyhoca/wxgui/menus_taskbar.py:649 +#: ../pyhoca/wxgui/menus_taskbar.py:247 ../pyhoca/wxgui/menus_taskbar.py:657 msgid "Resume Session" msgstr "Palaa istuntoon" @@ -967,27 +965,27 @@ msgstr "Siirrä istunto" msgid "Transfer Session (not possible)" msgstr "Siirrä istunto (ei onnistu)" -#: ../pyhoca/wxgui/menus_taskbar.py:267 ../pyhoca/wxgui/menus_taskbar.py:640 +#: ../pyhoca/wxgui/menus_taskbar.py:267 ../pyhoca/wxgui/menus_taskbar.py:648 msgid "Suspend Session (and disconnect/exit)" msgstr "Vaienna istunto (ja katkase yhteys/exit)" -#: ../pyhoca/wxgui/menus_taskbar.py:269 ../pyhoca/wxgui/menus_taskbar.py:642 +#: ../pyhoca/wxgui/menus_taskbar.py:269 ../pyhoca/wxgui/menus_taskbar.py:650 msgid "Suspend Session (and disconnect)" msgstr "Vaienna istunto (ja katkaise yhteys)" -#: ../pyhoca/wxgui/menus_taskbar.py:271 ../pyhoca/wxgui/menus_taskbar.py:644 +#: ../pyhoca/wxgui/menus_taskbar.py:271 ../pyhoca/wxgui/menus_taskbar.py:652 msgid "Suspend Session" msgstr "Vaienna istunto" -#: ../pyhoca/wxgui/menus_taskbar.py:277 ../pyhoca/wxgui/menus_taskbar.py:653 +#: ../pyhoca/wxgui/menus_taskbar.py:277 ../pyhoca/wxgui/menus_taskbar.py:661 msgid "Terminate Session (and disconnect/exit)" msgstr "Lopeta instunto ( ja katkaisu yhteys/exit)" -#: ../pyhoca/wxgui/menus_taskbar.py:279 ../pyhoca/wxgui/menus_taskbar.py:655 +#: ../pyhoca/wxgui/menus_taskbar.py:279 ../pyhoca/wxgui/menus_taskbar.py:663 msgid "Terminate Session (and disconnect)" msgstr "Lopeta istunto (ja katkaise yhteys)" -#: ../pyhoca/wxgui/menus_taskbar.py:281 ../pyhoca/wxgui/menus_taskbar.py:657 +#: ../pyhoca/wxgui/menus_taskbar.py:281 ../pyhoca/wxgui/menus_taskbar.py:665 msgid "Terminate Session" msgstr "Lopeta istunto" @@ -1003,7 +1001,7 @@ msgstr "Lopeta työpäydän jako (ja katkaise yhteys)" msgid "End Desktop Sharing" msgstr "Lopeta työpöydän jako" -#: ../pyhoca/wxgui/menus_taskbar.py:292 ../pyhoca/wxgui/menus_taskbar.py:637 +#: ../pyhoca/wxgui/menus_taskbar.py:292 ../pyhoca/wxgui/menus_taskbar.py:645 msgid "Refresh menu tree" msgstr "Päivitä valikko" @@ -1075,116 +1073,116 @@ msgstr "Apuohjelmat" msgid "Other Applications" msgstr "Muut sovellukset" -#: ../pyhoca/wxgui/menus_taskbar.py:545 ../pyhoca/wxgui/menus_taskbar.py:1035 +#: ../pyhoca/wxgui/menus_taskbar.py:553 ../pyhoca/wxgui/menus_taskbar.py:1043 msgid "Connect to" msgstr "Yhdistä" -#: ../pyhoca/wxgui/menus_taskbar.py:550 ../pyhoca/wxgui/menus_taskbar.py:565 +#: ../pyhoca/wxgui/menus_taskbar.py:558 ../pyhoca/wxgui/menus_taskbar.py:573 #, python-format msgid "Connect %s" msgstr "Yhdistä %s" -#: ../pyhoca/wxgui/menus_taskbar.py:559 +#: ../pyhoca/wxgui/menus_taskbar.py:567 msgid "Currently connecting..." msgstr "Yhdistää..." -#: ../pyhoca/wxgui/menus_taskbar.py:574 +#: ../pyhoca/wxgui/menus_taskbar.py:582 msgid "Start &new Desktop Session" msgstr "&Aloita uusi työpöydän jako" -#: ../pyhoca/wxgui/menus_taskbar.py:578 ../pyhoca/wxgui/menus_taskbar.py:678 +#: ../pyhoca/wxgui/menus_taskbar.py:586 ../pyhoca/wxgui/menus_taskbar.py:686 msgid "Start Desktop Sharing Session" msgstr "Käynnistä uusi työpöydän jako" -#: ../pyhoca/wxgui/menus_taskbar.py:584 ../pyhoca/wxgui/menus_taskbar.py:728 +#: ../pyhoca/wxgui/menus_taskbar.py:592 ../pyhoca/wxgui/menus_taskbar.py:736 msgid "Retrieving Application Menu..." msgstr "Hakee sovelluksen valikkoa..." -#: ../pyhoca/wxgui/menus_taskbar.py:588 ../pyhoca/wxgui/menus_taskbar.py:731 +#: ../pyhoca/wxgui/menus_taskbar.py:596 ../pyhoca/wxgui/menus_taskbar.py:739 msgid "Retrieve Application Menu" msgstr "Hae sovellusten valikko" -#: ../pyhoca/wxgui/menus_taskbar.py:591 +#: ../pyhoca/wxgui/menus_taskbar.py:599 msgid "Start &new RDP Session" msgstr "Aloista &uusi RDP -istunto" -#: ../pyhoca/wxgui/menus_taskbar.py:594 +#: ../pyhoca/wxgui/menus_taskbar.py:602 msgid "Start &new Session" msgstr "Aloita uusi &istunto" -#: ../pyhoca/wxgui/menus_taskbar.py:674 +#: ../pyhoca/wxgui/menus_taskbar.py:682 msgid "Launch Single Application" msgstr "Käynnistä yksi sovellus" -#: ../pyhoca/wxgui/menus_taskbar.py:715 +#: ../pyhoca/wxgui/menus_taskbar.py:723 msgid "Manage Application Menu" msgstr "Hallinnoi sovellusvalikkoa" -#: ../pyhoca/wxgui/menus_taskbar.py:770 +#: ../pyhoca/wxgui/menus_taskbar.py:778 msgid "Running" msgstr "Suorittaa" -#: ../pyhoca/wxgui/menus_taskbar.py:772 +#: ../pyhoca/wxgui/menus_taskbar.py:780 msgid "Suspended" msgstr "&Pysäytetty" -#: ../pyhoca/wxgui/menus_taskbar.py:791 +#: ../pyhoca/wxgui/menus_taskbar.py:799 msgid "&Clean all sessions" msgstr "&Poista kaikki istunnot" -#: ../pyhoca/wxgui/menus_taskbar.py:798 +#: ../pyhoca/wxgui/menus_taskbar.py:806 msgid "Customize &profile" msgstr "Muokkaa profiilia" -#: ../pyhoca/wxgui/menus_taskbar.py:800 +#: ../pyhoca/wxgui/menus_taskbar.py:808 msgid "View &profile" msgstr "Katso profiilia" -#: ../pyhoca/wxgui/menus_taskbar.py:815 +#: ../pyhoca/wxgui/menus_taskbar.py:823 msgid "Shared &folders" msgstr "Jaetut &hakemistot" -#: ../pyhoca/wxgui/menus_taskbar.py:827 +#: ../pyhoca/wxgui/menus_taskbar.py:835 msgid "Server Information" msgstr "Palvelimen tiedot" -#: ../pyhoca/wxgui/menus_taskbar.py:834 +#: ../pyhoca/wxgui/menus_taskbar.py:842 msgid "&Disconnect from Server" msgstr "&Katkaise palvelinyhteys" -#: ../pyhoca/wxgui/menus_taskbar.py:841 +#: ../pyhoca/wxgui/menus_taskbar.py:849 msgid "Suspend Session and E&xit application" msgstr "Pysäytä istunto ja &lopeta sovellus" -#: ../pyhoca/wxgui/menus_taskbar.py:845 +#: ../pyhoca/wxgui/menus_taskbar.py:853 msgid "Disconnect and E&xit application" msgstr "Katkaise yhteys ja lopeta &sovellus" -#: ../pyhoca/wxgui/menus_taskbar.py:899 +#: ../pyhoca/wxgui/menus_taskbar.py:907 msgid "Add Profile" msgstr "Lisää profiili" -#: ../pyhoca/wxgui/menus_taskbar.py:976 +#: ../pyhoca/wxgui/menus_taskbar.py:984 msgid "Session broker is not connected" msgstr "Istuntojen välitystoiminto ei ole käynnissä" -#: ../pyhoca/wxgui/menus_taskbar.py:978 +#: ../pyhoca/wxgui/menus_taskbar.py:986 msgid "No session profiles defined" msgstr "Istunnon profiilea ei ole määritelty" -#: ../pyhoca/wxgui/menus_taskbar.py:989 +#: ../pyhoca/wxgui/menus_taskbar.py:997 msgid "Export all Profiles" msgstr "Siirrä kaikki profiilit" -#: ../pyhoca/wxgui/menus_taskbar.py:991 +#: ../pyhoca/wxgui/menus_taskbar.py:999 msgid "Export Profile Group" msgstr "Siirrä profiiliryhmä" -#: ../pyhoca/wxgui/menus_taskbar.py:997 +#: ../pyhoca/wxgui/menus_taskbar.py:1005 msgid "Import Session Profiles" msgstr "Hae istuntoprofiilit" -#: ../pyhoca/wxgui/menus_taskbar.py:1040 +#: ../pyhoca/wxgui/menus_taskbar.py:1048 msgid "Connect Server" msgstr "Yhdistä palvelimeen" @@ -1609,6 +1607,13 @@ msgid "" msgstr "" "TCP -portin edelleenohjaus istunnolle %s palvelimen porttiin %s on kielletty." +#: ../pyhoca/wxgui/frontend.py:1756 +#, python-format +msgid "" +"Forwarding tunnel request to [%s]:%s for session %s was denied by remote " +"X2Go/SSH server. Subsystem %sstartup failed." +msgstr "" + #: ../pyhoca/wxgui/frontend.py:1775 #, python-format msgid "%s - audio warning" diff --git a/po/fr.po b/po/fr.po index b6ce56d..5242f68 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PyHoca-GUI VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-10-20 12:52+0200\n" +"POT-Creation-Date: 2016-01-29 04:04+0100\n" "PO-Revision-Date: 2011-09-17 02:17+0100\n" "Last-Translator: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>\n" "Language-Team: X2Go i18n <x2go-i18n@lists.x2go.org>\n" @@ -236,28 +236,28 @@ msgstr "" msgid "SSH key file (for SSH proxy) could not be unlocked!" msgstr "" -#: ../pyhoca/wxgui/taskbar.py:111 +#: ../pyhoca/wxgui/taskbar.py:118 #, python-format msgid "" "%s\n" "Connecting you to ,,%s''" msgstr "" -#: ../pyhoca/wxgui/taskbar.py:115 +#: ../pyhoca/wxgui/taskbar.py:122 #, python-format msgid "" "%s\n" "Currently connecting you to remote X2Go server ,,%s''" msgstr "" -#: ../pyhoca/wxgui/taskbar.py:125 +#: ../pyhoca/wxgui/taskbar.py:132 #, python-format msgid "" "%s\n" "Connecting you to X2Go..." msgstr "" -#: ../pyhoca/wxgui/taskbar.py:129 +#: ../pyhoca/wxgui/taskbar.py:136 #, python-format msgid "" "%s\n" @@ -724,14 +724,12 @@ msgstr "" msgid "Apply" msgstr "" -#: ../pyhoca/wxgui/profilemanager.py:453 -#: ../pyhoca/wxgui/profilemanager.py:1184 +#: ../pyhoca/wxgui/profilemanager.py:453 ../pyhoca/wxgui/profilemanager.py:1184 #: ../pyhoca/wxgui/profilemanager.py:2364 msgid "automatically" msgstr "" -#: ../pyhoca/wxgui/profilemanager.py:455 -#: ../pyhoca/wxgui/profilemanager.py:1186 +#: ../pyhoca/wxgui/profilemanager.py:455 ../pyhoca/wxgui/profilemanager.py:1186 msgid "manually" msgstr "" @@ -921,8 +919,8 @@ msgstr "" msgid "Client Options" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:169 ../pyhoca/wxgui/menus_taskbar.py:849 -#: ../pyhoca/wxgui/menus_taskbar.py:1070 +#: ../pyhoca/wxgui/menus_taskbar.py:169 ../pyhoca/wxgui/menus_taskbar.py:857 +#: ../pyhoca/wxgui/menus_taskbar.py:1078 msgid "E&xit" msgstr "" @@ -930,7 +928,7 @@ msgstr "" msgid "Window title" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:247 ../pyhoca/wxgui/menus_taskbar.py:649 +#: ../pyhoca/wxgui/menus_taskbar.py:247 ../pyhoca/wxgui/menus_taskbar.py:657 msgid "Resume Session" msgstr "" @@ -946,27 +944,27 @@ msgstr "" msgid "Transfer Session (not possible)" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:267 ../pyhoca/wxgui/menus_taskbar.py:640 +#: ../pyhoca/wxgui/menus_taskbar.py:267 ../pyhoca/wxgui/menus_taskbar.py:648 msgid "Suspend Session (and disconnect/exit)" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:269 ../pyhoca/wxgui/menus_taskbar.py:642 +#: ../pyhoca/wxgui/menus_taskbar.py:269 ../pyhoca/wxgui/menus_taskbar.py:650 msgid "Suspend Session (and disconnect)" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:271 ../pyhoca/wxgui/menus_taskbar.py:644 +#: ../pyhoca/wxgui/menus_taskbar.py:271 ../pyhoca/wxgui/menus_taskbar.py:652 msgid "Suspend Session" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:277 ../pyhoca/wxgui/menus_taskbar.py:653 +#: ../pyhoca/wxgui/menus_taskbar.py:277 ../pyhoca/wxgui/menus_taskbar.py:661 msgid "Terminate Session (and disconnect/exit)" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:279 ../pyhoca/wxgui/menus_taskbar.py:655 +#: ../pyhoca/wxgui/menus_taskbar.py:279 ../pyhoca/wxgui/menus_taskbar.py:663 msgid "Terminate Session (and disconnect)" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:281 ../pyhoca/wxgui/menus_taskbar.py:657 +#: ../pyhoca/wxgui/menus_taskbar.py:281 ../pyhoca/wxgui/menus_taskbar.py:665 msgid "Terminate Session" msgstr "" @@ -982,7 +980,7 @@ msgstr "" msgid "End Desktop Sharing" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:292 ../pyhoca/wxgui/menus_taskbar.py:637 +#: ../pyhoca/wxgui/menus_taskbar.py:292 ../pyhoca/wxgui/menus_taskbar.py:645 msgid "Refresh menu tree" msgstr "" @@ -1054,116 +1052,116 @@ msgstr "" msgid "Other Applications" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:545 ../pyhoca/wxgui/menus_taskbar.py:1035 +#: ../pyhoca/wxgui/menus_taskbar.py:553 ../pyhoca/wxgui/menus_taskbar.py:1043 msgid "Connect to" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:550 ../pyhoca/wxgui/menus_taskbar.py:565 +#: ../pyhoca/wxgui/menus_taskbar.py:558 ../pyhoca/wxgui/menus_taskbar.py:573 #, python-format msgid "Connect %s" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:559 +#: ../pyhoca/wxgui/menus_taskbar.py:567 msgid "Currently connecting..." msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:574 +#: ../pyhoca/wxgui/menus_taskbar.py:582 msgid "Start &new Desktop Session" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:578 ../pyhoca/wxgui/menus_taskbar.py:678 +#: ../pyhoca/wxgui/menus_taskbar.py:586 ../pyhoca/wxgui/menus_taskbar.py:686 msgid "Start Desktop Sharing Session" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:584 ../pyhoca/wxgui/menus_taskbar.py:728 +#: ../pyhoca/wxgui/menus_taskbar.py:592 ../pyhoca/wxgui/menus_taskbar.py:736 msgid "Retrieving Application Menu..." msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:588 ../pyhoca/wxgui/menus_taskbar.py:731 +#: ../pyhoca/wxgui/menus_taskbar.py:596 ../pyhoca/wxgui/menus_taskbar.py:739 msgid "Retrieve Application Menu" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:591 +#: ../pyhoca/wxgui/menus_taskbar.py:599 msgid "Start &new RDP Session" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:594 +#: ../pyhoca/wxgui/menus_taskbar.py:602 msgid "Start &new Session" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:674 +#: ../pyhoca/wxgui/menus_taskbar.py:682 msgid "Launch Single Application" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:715 +#: ../pyhoca/wxgui/menus_taskbar.py:723 msgid "Manage Application Menu" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:770 +#: ../pyhoca/wxgui/menus_taskbar.py:778 msgid "Running" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:772 +#: ../pyhoca/wxgui/menus_taskbar.py:780 msgid "Suspended" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:791 +#: ../pyhoca/wxgui/menus_taskbar.py:799 msgid "&Clean all sessions" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:798 +#: ../pyhoca/wxgui/menus_taskbar.py:806 msgid "Customize &profile" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:800 +#: ../pyhoca/wxgui/menus_taskbar.py:808 msgid "View &profile" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:815 +#: ../pyhoca/wxgui/menus_taskbar.py:823 msgid "Shared &folders" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:827 +#: ../pyhoca/wxgui/menus_taskbar.py:835 msgid "Server Information" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:834 +#: ../pyhoca/wxgui/menus_taskbar.py:842 msgid "&Disconnect from Server" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:841 +#: ../pyhoca/wxgui/menus_taskbar.py:849 msgid "Suspend Session and E&xit application" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:845 +#: ../pyhoca/wxgui/menus_taskbar.py:853 msgid "Disconnect and E&xit application" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:899 +#: ../pyhoca/wxgui/menus_taskbar.py:907 msgid "Add Profile" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:976 +#: ../pyhoca/wxgui/menus_taskbar.py:984 msgid "Session broker is not connected" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:978 +#: ../pyhoca/wxgui/menus_taskbar.py:986 msgid "No session profiles defined" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:989 +#: ../pyhoca/wxgui/menus_taskbar.py:997 msgid "Export all Profiles" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:991 +#: ../pyhoca/wxgui/menus_taskbar.py:999 msgid "Export Profile Group" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:997 +#: ../pyhoca/wxgui/menus_taskbar.py:1005 msgid "Import Session Profiles" msgstr "" -#: ../pyhoca/wxgui/menus_taskbar.py:1040 +#: ../pyhoca/wxgui/menus_taskbar.py:1048 msgid "Connect Server" msgstr "" diff --git a/po/nb_NO.po b/po/nb_NO.po index 4058cd0..b3fee56 100644 --- a/po/nb_NO.po +++ b/po/nb_NO.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PyHoca-GUI VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-10-20 12:52+0200\n" +"POT-Creation-Date: 2016-01-29 04:04+0100\n" "PO-Revision-Date: 2014-10-12 14:00+0100\n" "Last-Translator: Klaus Ade Johnstad <klaus@linuxavdelingen.no>\n" "Language-Team: X2Go i18n <x2go-i18n@lists.x2go.org>\n" @@ -246,7 +246,7 @@ msgstr "SSH nøkkelfil (for X2Go-server) kunne ikke bli låst opp!" msgid "SSH key file (for SSH proxy) could not be unlocked!" msgstr "SSH nøkkelfil (for SSH mellomtjener) kunne ikke bli låst opp!" -#: ../pyhoca/wxgui/taskbar.py:111 +#: ../pyhoca/wxgui/taskbar.py:118 #, python-format msgid "" "%s\n" @@ -255,7 +255,7 @@ msgstr "" "%s\n" "Kobler deg til ,,%s''" -#: ../pyhoca/wxgui/taskbar.py:115 +#: ../pyhoca/wxgui/taskbar.py:122 #, python-format msgid "" "%s\n" @@ -264,7 +264,7 @@ msgstr "" "%s\n" "Holder på med å koble deg til X2Go serveren ,,%s''" -#: ../pyhoca/wxgui/taskbar.py:125 +#: ../pyhoca/wxgui/taskbar.py:132 #, python-format msgid "" "%s\n" @@ -273,7 +273,7 @@ msgstr "" "%s\n" "Kobler deg til X2Go..." -#: ../pyhoca/wxgui/taskbar.py:129 +#: ../pyhoca/wxgui/taskbar.py:136 #, python-format msgid "" "%s\n" @@ -746,14 +746,12 @@ msgstr "Tilbakestill" msgid "Apply" msgstr "Bruk" -#: ../pyhoca/wxgui/profilemanager.py:453 -#: ../pyhoca/wxgui/profilemanager.py:1184 +#: ../pyhoca/wxgui/profilemanager.py:453 ../pyhoca/wxgui/profilemanager.py:1184 #: ../pyhoca/wxgui/profilemanager.py:2364 msgid "automatically" msgstr "automatisk" -#: ../pyhoca/wxgui/profilemanager.py:455 -#: ../pyhoca/wxgui/profilemanager.py:1186 +#: ../pyhoca/wxgui/profilemanager.py:455 ../pyhoca/wxgui/profilemanager.py:1186 msgid "manually" msgstr "manuelt" @@ -943,8 +941,8 @@ msgstr "Utksriftsinnstillinger" msgid "Client Options" msgstr "Klient alternativer" -#: ../pyhoca/wxgui/menus_taskbar.py:169 ../pyhoca/wxgui/menus_taskbar.py:849 -#: ../pyhoca/wxgui/menus_taskbar.py:1070 +#: ../pyhoca/wxgui/menus_taskbar.py:169 ../pyhoca/wxgui/menus_taskbar.py:857 +#: ../pyhoca/wxgui/menus_taskbar.py:1078 msgid "E&xit" msgstr "&Avslutt" @@ -952,7 +950,7 @@ msgstr "&Avslutt" msgid "Window title" msgstr "Vindustittel" -#: ../pyhoca/wxgui/menus_taskbar.py:247 ../pyhoca/wxgui/menus_taskbar.py:649 +#: ../pyhoca/wxgui/menus_taskbar.py:247 ../pyhoca/wxgui/menus_taskbar.py:657 msgid "Resume Session" msgstr "Gjenoppta sesjon" @@ -968,27 +966,27 @@ msgstr "Overfør sesjon" msgid "Transfer Session (not possible)" msgstr "Overfør sesjon (ikke mulig)" -#: ../pyhoca/wxgui/menus_taskbar.py:267 ../pyhoca/wxgui/menus_taskbar.py:640 +#: ../pyhoca/wxgui/menus_taskbar.py:267 ../pyhoca/wxgui/menus_taskbar.py:648 msgid "Suspend Session (and disconnect/exit)" msgstr "Koble fra sesjonen (og avslutte)" -#: ../pyhoca/wxgui/menus_taskbar.py:269 ../pyhoca/wxgui/menus_taskbar.py:642 +#: ../pyhoca/wxgui/menus_taskbar.py:269 ../pyhoca/wxgui/menus_taskbar.py:650 msgid "Suspend Session (and disconnect)" msgstr "Koble fra sesjonen" -#: ../pyhoca/wxgui/menus_taskbar.py:271 ../pyhoca/wxgui/menus_taskbar.py:644 +#: ../pyhoca/wxgui/menus_taskbar.py:271 ../pyhoca/wxgui/menus_taskbar.py:652 msgid "Suspend Session" msgstr "Frakoble sesjon" -#: ../pyhoca/wxgui/menus_taskbar.py:277 ../pyhoca/wxgui/menus_taskbar.py:653 +#: ../pyhoca/wxgui/menus_taskbar.py:277 ../pyhoca/wxgui/menus_taskbar.py:661 msgid "Terminate Session (and disconnect/exit)" msgstr "Avslutte sesjonen (og koble fra/Avslutt) " -#: ../pyhoca/wxgui/menus_taskbar.py:279 ../pyhoca/wxgui/menus_taskbar.py:655 +#: ../pyhoca/wxgui/menus_taskbar.py:279 ../pyhoca/wxgui/menus_taskbar.py:663 msgid "Terminate Session (and disconnect)" msgstr "Avslutte sesjon (og koble fra)" -#: ../pyhoca/wxgui/menus_taskbar.py:281 ../pyhoca/wxgui/menus_taskbar.py:657 +#: ../pyhoca/wxgui/menus_taskbar.py:281 ../pyhoca/wxgui/menus_taskbar.py:665 msgid "Terminate Session" msgstr "Avslutte sesjon" @@ -1004,7 +1002,7 @@ msgstr "Avslutt skrivebordsdeling (og koble fra)" msgid "End Desktop Sharing" msgstr "Avslutt skrivebordsdeling" -#: ../pyhoca/wxgui/menus_taskbar.py:292 ../pyhoca/wxgui/menus_taskbar.py:637 +#: ../pyhoca/wxgui/menus_taskbar.py:292 ../pyhoca/wxgui/menus_taskbar.py:645 msgid "Refresh menu tree" msgstr "Oppfrisk menytreet" @@ -1076,116 +1074,116 @@ msgstr "Verktøy" msgid "Other Applications" msgstr "Andre applikasjoner" -#: ../pyhoca/wxgui/menus_taskbar.py:545 ../pyhoca/wxgui/menus_taskbar.py:1035 +#: ../pyhoca/wxgui/menus_taskbar.py:553 ../pyhoca/wxgui/menus_taskbar.py:1043 msgid "Connect to" msgstr "Koble til" -#: ../pyhoca/wxgui/menus_taskbar.py:550 ../pyhoca/wxgui/menus_taskbar.py:565 +#: ../pyhoca/wxgui/menus_taskbar.py:558 ../pyhoca/wxgui/menus_taskbar.py:573 #, python-format msgid "Connect %s" msgstr "Koble til %s" -#: ../pyhoca/wxgui/menus_taskbar.py:559 +#: ../pyhoca/wxgui/menus_taskbar.py:567 msgid "Currently connecting..." msgstr "Kobler til..." -#: ../pyhoca/wxgui/menus_taskbar.py:574 +#: ../pyhoca/wxgui/menus_taskbar.py:582 msgid "Start &new Desktop Session" msgstr "Start &ny skrivebordssesjon" -#: ../pyhoca/wxgui/menus_taskbar.py:578 ../pyhoca/wxgui/menus_taskbar.py:678 +#: ../pyhoca/wxgui/menus_taskbar.py:586 ../pyhoca/wxgui/menus_taskbar.py:686 msgid "Start Desktop Sharing Session" msgstr "Start sesjon for skrivebordsdeling" -#: ../pyhoca/wxgui/menus_taskbar.py:584 ../pyhoca/wxgui/menus_taskbar.py:728 +#: ../pyhoca/wxgui/menus_taskbar.py:592 ../pyhoca/wxgui/menus_taskbar.py:736 msgid "Retrieving Application Menu..." msgstr "Henter applikasjonsmenyen..." -#: ../pyhoca/wxgui/menus_taskbar.py:588 ../pyhoca/wxgui/menus_taskbar.py:731 +#: ../pyhoca/wxgui/menus_taskbar.py:596 ../pyhoca/wxgui/menus_taskbar.py:739 msgid "Retrieve Application Menu" msgstr "Hent applikasjonsmenyen" -#: ../pyhoca/wxgui/menus_taskbar.py:591 +#: ../pyhoca/wxgui/menus_taskbar.py:599 msgid "Start &new RDP Session" msgstr "Start &ny RDP sesjon" -#: ../pyhoca/wxgui/menus_taskbar.py:594 +#: ../pyhoca/wxgui/menus_taskbar.py:602 msgid "Start &new Session" msgstr "Start &ny sesjon" -#: ../pyhoca/wxgui/menus_taskbar.py:674 +#: ../pyhoca/wxgui/menus_taskbar.py:682 msgid "Launch Single Application" msgstr "Start enkeltapplikasjon" -#: ../pyhoca/wxgui/menus_taskbar.py:715 +#: ../pyhoca/wxgui/menus_taskbar.py:723 msgid "Manage Application Menu" msgstr "Administrer applkasjonsmenyen" -#: ../pyhoca/wxgui/menus_taskbar.py:770 +#: ../pyhoca/wxgui/menus_taskbar.py:778 msgid "Running" msgstr "Aktiv" -#: ../pyhoca/wxgui/menus_taskbar.py:772 +#: ../pyhoca/wxgui/menus_taskbar.py:780 msgid "Suspended" msgstr "Frakoblet" -#: ../pyhoca/wxgui/menus_taskbar.py:791 +#: ../pyhoca/wxgui/menus_taskbar.py:799 msgid "&Clean all sessions" msgstr "&Rensk opp alle sesjoner" -#: ../pyhoca/wxgui/menus_taskbar.py:798 +#: ../pyhoca/wxgui/menus_taskbar.py:806 msgid "Customize &profile" msgstr "TIlpass &profil" -#: ../pyhoca/wxgui/menus_taskbar.py:800 +#: ../pyhoca/wxgui/menus_taskbar.py:808 msgid "View &profile" msgstr "Vis &profilen" -#: ../pyhoca/wxgui/menus_taskbar.py:815 +#: ../pyhoca/wxgui/menus_taskbar.py:823 msgid "Shared &folders" msgstr "Delte &mapper" -#: ../pyhoca/wxgui/menus_taskbar.py:827 +#: ../pyhoca/wxgui/menus_taskbar.py:835 msgid "Server Information" msgstr "Serverinformasjon" -#: ../pyhoca/wxgui/menus_taskbar.py:834 +#: ../pyhoca/wxgui/menus_taskbar.py:842 msgid "&Disconnect from Server" msgstr "&Koble fra serveren" -#: ../pyhoca/wxgui/menus_taskbar.py:841 +#: ../pyhoca/wxgui/menus_taskbar.py:849 msgid "Suspend Session and E&xit application" msgstr "Koble fra sesjonen og &Avslutt applikasjonen" -#: ../pyhoca/wxgui/menus_taskbar.py:845 +#: ../pyhoca/wxgui/menus_taskbar.py:853 msgid "Disconnect and E&xit application" msgstr "Koble fra sesjonen og &Avslutt applikasjonen" -#: ../pyhoca/wxgui/menus_taskbar.py:899 +#: ../pyhoca/wxgui/menus_taskbar.py:907 msgid "Add Profile" msgstr "Legg til profil" -#: ../pyhoca/wxgui/menus_taskbar.py:976 +#: ../pyhoca/wxgui/menus_taskbar.py:984 msgid "Session broker is not connected" msgstr "Sesjonbroker er ikke tilkoblet" -#: ../pyhoca/wxgui/menus_taskbar.py:978 +#: ../pyhoca/wxgui/menus_taskbar.py:986 msgid "No session profiles defined" msgstr "Ingen sesjonsprofiler er definert" -#: ../pyhoca/wxgui/menus_taskbar.py:989 +#: ../pyhoca/wxgui/menus_taskbar.py:997 msgid "Export all Profiles" msgstr "Eksporter alle profiler" -#: ../pyhoca/wxgui/menus_taskbar.py:991 +#: ../pyhoca/wxgui/menus_taskbar.py:999 msgid "Export Profile Group" msgstr "Eksporter profilgruppe" -#: ../pyhoca/wxgui/menus_taskbar.py:997 +#: ../pyhoca/wxgui/menus_taskbar.py:1005 msgid "Import Session Profiles" msgstr "Importere sesjonsprofiler" -#: ../pyhoca/wxgui/menus_taskbar.py:1040 +#: ../pyhoca/wxgui/menus_taskbar.py:1048 msgid "Connect Server" msgstr "Koble til server" diff --git a/po/nl.po b/po/nl.po index b26833a..dcf8b7f 100644 --- a/po/nl.po +++ b/po/nl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PyHoca-GUI VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-10-20 12:52+0200\n" +"POT-Creation-Date: 2016-01-29 04:04+0100\n" "PO-Revision-Date: 2014-08-17 21:29+0100\n" "Last-Translator: Jos <jos@ossolutions.nl>\n" "Language-Team: X2Go i18n <x2go-i18n@lists.x2go.org>\n" @@ -244,7 +244,7 @@ msgstr "SSH sleutel (voor X2GO server) kon niet geopend worden!" msgid "SSH key file (for SSH proxy) could not be unlocked!" msgstr "SSH sleutel (voor SSH proxy) kon niet geopend worden!" -#: ../pyhoca/wxgui/taskbar.py:111 +#: ../pyhoca/wxgui/taskbar.py:118 #, python-format msgid "" "%s\n" @@ -253,7 +253,7 @@ msgstr "" "%s\n" "Verbinden met ,,%s''" -#: ../pyhoca/wxgui/taskbar.py:115 +#: ../pyhoca/wxgui/taskbar.py:122 #, python-format msgid "" "%s\n" @@ -262,7 +262,7 @@ msgstr "" "%s\n" "Momenteel verbonden met X2GO server ,,%s''" -#: ../pyhoca/wxgui/taskbar.py:125 +#: ../pyhoca/wxgui/taskbar.py:132 #, python-format msgid "" "%s\n" @@ -271,7 +271,7 @@ msgstr "" "%s\n" "Verbindt u met X2Go ..." -#: ../pyhoca/wxgui/taskbar.py:129 +#: ../pyhoca/wxgui/taskbar.py:136 #, python-format msgid "" "%s\n" @@ -745,14 +745,12 @@ msgstr "Reset" msgid "Apply" msgstr "Toepassen" -#: ../pyhoca/wxgui/profilemanager.py:453 -#: ../pyhoca/wxgui/profilemanager.py:1184 +#: ../pyhoca/wxgui/profilemanager.py:453 ../pyhoca/wxgui/profilemanager.py:1184 #: ../pyhoca/wxgui/profilemanager.py:2364 msgid "automatically" msgstr "automatisch" -#: ../pyhoca/wxgui/profilemanager.py:455 -#: ../pyhoca/wxgui/profilemanager.py:1186 +#: ../pyhoca/wxgui/profilemanager.py:455 ../pyhoca/wxgui/profilemanager.py:1186 msgid "manually" msgstr "handmatig" @@ -942,8 +940,8 @@ msgstr "Voorkeuren voor afdrukken" msgid "Client Options" msgstr "Client opties" -#: ../pyhoca/wxgui/menus_taskbar.py:169 ../pyhoca/wxgui/menus_taskbar.py:849 -#: ../pyhoca/wxgui/menus_taskbar.py:1070 +#: ../pyhoca/wxgui/menus_taskbar.py:169 ../pyhoca/wxgui/menus_taskbar.py:857 +#: ../pyhoca/wxgui/menus_taskbar.py:1078 msgid "E&xit" msgstr "&Beëindigen" @@ -951,7 +949,7 @@ msgstr "&Beëindigen" msgid "Window title" msgstr "Scherm titel" -#: ../pyhoca/wxgui/menus_taskbar.py:247 ../pyhoca/wxgui/menus_taskbar.py:649 +#: ../pyhoca/wxgui/menus_taskbar.py:247 ../pyhoca/wxgui/menus_taskbar.py:657 msgid "Resume Session" msgstr "Sessie hervatten" @@ -967,27 +965,27 @@ msgstr "Sessie overnemen" msgid "Transfer Session (not possible)" msgstr "Sessie overnemen (niet mogelijk)" -#: ../pyhoca/wxgui/menus_taskbar.py:267 ../pyhoca/wxgui/menus_taskbar.py:640 +#: ../pyhoca/wxgui/menus_taskbar.py:267 ../pyhoca/wxgui/menus_taskbar.py:648 msgid "Suspend Session (and disconnect/exit)" msgstr "Sessie pauzeren (en verbinding verbreken/afsluiten)" -#: ../pyhoca/wxgui/menus_taskbar.py:269 ../pyhoca/wxgui/menus_taskbar.py:642 +#: ../pyhoca/wxgui/menus_taskbar.py:269 ../pyhoca/wxgui/menus_taskbar.py:650 msgid "Suspend Session (and disconnect)" msgstr "Sessie pauzeren (en verbinding verbreken)" -#: ../pyhoca/wxgui/menus_taskbar.py:271 ../pyhoca/wxgui/menus_taskbar.py:644 +#: ../pyhoca/wxgui/menus_taskbar.py:271 ../pyhoca/wxgui/menus_taskbar.py:652 msgid "Suspend Session" msgstr "Sessie pauzeren" -#: ../pyhoca/wxgui/menus_taskbar.py:277 ../pyhoca/wxgui/menus_taskbar.py:653 +#: ../pyhoca/wxgui/menus_taskbar.py:277 ../pyhoca/wxgui/menus_taskbar.py:661 msgid "Terminate Session (and disconnect/exit)" msgstr "Sessie beëindigen (en verbinding verbreken/afsluiten)" -#: ../pyhoca/wxgui/menus_taskbar.py:279 ../pyhoca/wxgui/menus_taskbar.py:655 +#: ../pyhoca/wxgui/menus_taskbar.py:279 ../pyhoca/wxgui/menus_taskbar.py:663 msgid "Terminate Session (and disconnect)" msgstr "Sessie beëindigen (en verbinding verbreken)" -#: ../pyhoca/wxgui/menus_taskbar.py:281 ../pyhoca/wxgui/menus_taskbar.py:657 +#: ../pyhoca/wxgui/menus_taskbar.py:281 ../pyhoca/wxgui/menus_taskbar.py:665 msgid "Terminate Session" msgstr "Sessie beëindigen" @@ -1003,7 +1001,7 @@ msgstr "Beëindig delen van de desktop (en verbreek verbinding)" msgid "End Desktop Sharing" msgstr "Beëindig delen van de desktop" -#: ../pyhoca/wxgui/menus_taskbar.py:292 ../pyhoca/wxgui/menus_taskbar.py:637 +#: ../pyhoca/wxgui/menus_taskbar.py:292 ../pyhoca/wxgui/menus_taskbar.py:645 msgid "Refresh menu tree" msgstr "Ververs menu" @@ -1075,116 +1073,116 @@ msgstr "Hulpmiddelen" msgid "Other Applications" msgstr "Overige applicaties" -#: ../pyhoca/wxgui/menus_taskbar.py:545 ../pyhoca/wxgui/menus_taskbar.py:1035 +#: ../pyhoca/wxgui/menus_taskbar.py:553 ../pyhoca/wxgui/menus_taskbar.py:1043 msgid "Connect to" msgstr "Verbinden met" -#: ../pyhoca/wxgui/menus_taskbar.py:550 ../pyhoca/wxgui/menus_taskbar.py:565 +#: ../pyhoca/wxgui/menus_taskbar.py:558 ../pyhoca/wxgui/menus_taskbar.py:573 #, python-format msgid "Connect %s" msgstr "Verbind %s" -#: ../pyhoca/wxgui/menus_taskbar.py:559 +#: ../pyhoca/wxgui/menus_taskbar.py:567 msgid "Currently connecting..." msgstr "Momenteel aan het verbinden..." -#: ../pyhoca/wxgui/menus_taskbar.py:574 +#: ../pyhoca/wxgui/menus_taskbar.py:582 msgid "Start &new Desktop Session" msgstr "Start &nieuwe Desktop Sessie" -#: ../pyhoca/wxgui/menus_taskbar.py:578 ../pyhoca/wxgui/menus_taskbar.py:678 +#: ../pyhoca/wxgui/menus_taskbar.py:586 ../pyhoca/wxgui/menus_taskbar.py:686 msgid "Start Desktop Sharing Session" msgstr "Start desktop delen sessie" -#: ../pyhoca/wxgui/menus_taskbar.py:584 ../pyhoca/wxgui/menus_taskbar.py:728 +#: ../pyhoca/wxgui/menus_taskbar.py:592 ../pyhoca/wxgui/menus_taskbar.py:736 msgid "Retrieving Application Menu..." msgstr "Bezig met ophalen applicatiemenu..." -#: ../pyhoca/wxgui/menus_taskbar.py:588 ../pyhoca/wxgui/menus_taskbar.py:731 +#: ../pyhoca/wxgui/menus_taskbar.py:596 ../pyhoca/wxgui/menus_taskbar.py:739 msgid "Retrieve Application Menu" msgstr "Haal applicatiemenu op" -#: ../pyhoca/wxgui/menus_taskbar.py:591 +#: ../pyhoca/wxgui/menus_taskbar.py:599 msgid "Start &new RDP Session" msgstr "Start &nieuwe RDP sessie" -#: ../pyhoca/wxgui/menus_taskbar.py:594 +#: ../pyhoca/wxgui/menus_taskbar.py:602 msgid "Start &new Session" msgstr "&Nieuwe sessie starten" -#: ../pyhoca/wxgui/menus_taskbar.py:674 +#: ../pyhoca/wxgui/menus_taskbar.py:682 msgid "Launch Single Application" msgstr "Enkele applicatie starten" -#: ../pyhoca/wxgui/menus_taskbar.py:715 +#: ../pyhoca/wxgui/menus_taskbar.py:723 msgid "Manage Application Menu" msgstr "Applicatie menu beheren" -#: ../pyhoca/wxgui/menus_taskbar.py:770 +#: ../pyhoca/wxgui/menus_taskbar.py:778 msgid "Running" msgstr "Aktief" -#: ../pyhoca/wxgui/menus_taskbar.py:772 +#: ../pyhoca/wxgui/menus_taskbar.py:780 msgid "Suspended" msgstr "Pauzeren" -#: ../pyhoca/wxgui/menus_taskbar.py:791 +#: ../pyhoca/wxgui/menus_taskbar.py:799 msgid "&Clean all sessions" msgstr "&Alle sessies verwijderen" -#: ../pyhoca/wxgui/menus_taskbar.py:798 +#: ../pyhoca/wxgui/menus_taskbar.py:806 msgid "Customize &profile" msgstr "Wijzigen &profiel" -#: ../pyhoca/wxgui/menus_taskbar.py:800 +#: ../pyhoca/wxgui/menus_taskbar.py:808 msgid "View &profile" msgstr "Bekijk &profiel" -#: ../pyhoca/wxgui/menus_taskbar.py:815 +#: ../pyhoca/wxgui/menus_taskbar.py:823 msgid "Shared &folders" msgstr "Gedeelde &mappen" -#: ../pyhoca/wxgui/menus_taskbar.py:827 +#: ../pyhoca/wxgui/menus_taskbar.py:835 msgid "Server Information" msgstr "Server informatie" -#: ../pyhoca/wxgui/menus_taskbar.py:834 +#: ../pyhoca/wxgui/menus_taskbar.py:842 msgid "&Disconnect from Server" msgstr "&Verbinding met server verbreken" -#: ../pyhoca/wxgui/menus_taskbar.py:841 +#: ../pyhoca/wxgui/menus_taskbar.py:849 msgid "Suspend Session and E&xit application" msgstr "Sessie pauzeren en a&fsluiten applicatie" -#: ../pyhoca/wxgui/menus_taskbar.py:845 +#: ../pyhoca/wxgui/menus_taskbar.py:853 msgid "Disconnect and E&xit application" msgstr "Verbinding verbreken en a&fsluiten applicatie" -#: ../pyhoca/wxgui/menus_taskbar.py:899 +#: ../pyhoca/wxgui/menus_taskbar.py:907 msgid "Add Profile" msgstr "Profiel toevoegen" -#: ../pyhoca/wxgui/menus_taskbar.py:976 +#: ../pyhoca/wxgui/menus_taskbar.py:984 msgid "Session broker is not connected" msgstr "Sessie broker is niet verbonden" -#: ../pyhoca/wxgui/menus_taskbar.py:978 +#: ../pyhoca/wxgui/menus_taskbar.py:986 msgid "No session profiles defined" msgstr "Geen sessie profielen gedefinieerd" -#: ../pyhoca/wxgui/menus_taskbar.py:989 +#: ../pyhoca/wxgui/menus_taskbar.py:997 msgid "Export all Profiles" msgstr "Alle profielen exporteren" -#: ../pyhoca/wxgui/menus_taskbar.py:991 +#: ../pyhoca/wxgui/menus_taskbar.py:999 msgid "Export Profile Group" msgstr " Profielgroep exporteren" -#: ../pyhoca/wxgui/menus_taskbar.py:997 +#: ../pyhoca/wxgui/menus_taskbar.py:1005 msgid "Import Session Profiles" msgstr "Importeer sessie profielen" -#: ../pyhoca/wxgui/menus_taskbar.py:1040 +#: ../pyhoca/wxgui/menus_taskbar.py:1048 msgid "Connect Server" msgstr "Verbinden met server" diff --git a/po/ru.po b/po/ru.po index 021e6bd..616963c 100644 --- a/po/ru.po +++ b/po/ru.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: PyHoca-GUI VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-10-20 12:52+0200\n" +"POT-Creation-Date: 2016-01-29 04:04+0100\n" "PO-Revision-Date: 2013-01-28 13:39+0100\n" "Last-Translator: Oleksandr Shneyder <o.shneyder@phoca-gmbh.de>\n" "Language-Team: German <x2go-i18n@lists.x2go.org>\n" @@ -249,7 +249,7 @@ msgstr "" msgid "SSH key file (for SSH proxy) could not be unlocked!" msgstr "" -#: ../pyhoca/wxgui/taskbar.py:111 +#: ../pyhoca/wxgui/taskbar.py:118 #, fuzzy, python-format msgid "" "%s\n" @@ -258,7 +258,7 @@ msgstr "" "PyHoca-GUI\n" "Соединяет Вас с ,,%s''" -#: ../pyhoca/wxgui/taskbar.py:115 +#: ../pyhoca/wxgui/taskbar.py:122 #, fuzzy, python-format msgid "" "%s\n" @@ -267,7 +267,7 @@ msgstr "" "PyHoca-GUI (Python X2Go Client)\n" "Соединяет Вас с удаленным сервером X2Go ,,%s''" -#: ../pyhoca/wxgui/taskbar.py:125 +#: ../pyhoca/wxgui/taskbar.py:132 #, fuzzy, python-format msgid "" "%s\n" @@ -276,7 +276,7 @@ msgstr "" "PyHoca-GUI\n" "Соединяет Вас с X2Go..." -#: ../pyhoca/wxgui/taskbar.py:129 +#: ../pyhoca/wxgui/taskbar.py:136 #, fuzzy, python-format msgid "" "%s\n" @@ -751,14 +751,12 @@ msgstr "Восстановить" msgid "Apply" msgstr "Применить" -#: ../pyhoca/wxgui/profilemanager.py:453 -#: ../pyhoca/wxgui/profilemanager.py:1184 +#: ../pyhoca/wxgui/profilemanager.py:453 ../pyhoca/wxgui/profilemanager.py:1184 #: ../pyhoca/wxgui/profilemanager.py:2364 msgid "automatically" msgstr "автоматически" -#: ../pyhoca/wxgui/profilemanager.py:455 -#: ../pyhoca/wxgui/profilemanager.py:1186 +#: ../pyhoca/wxgui/profilemanager.py:455 ../pyhoca/wxgui/profilemanager.py:1186 msgid "manually" msgstr "вручную" @@ -950,8 +948,8 @@ msgstr "Установки печати" msgid "Client Options" msgstr "Опции клиента" -#: ../pyhoca/wxgui/menus_taskbar.py:169 ../pyhoca/wxgui/menus_taskbar.py:849 -#: ../pyhoca/wxgui/menus_taskbar.py:1070 +#: ../pyhoca/wxgui/menus_taskbar.py:169 ../pyhoca/wxgui/menus_taskbar.py:857 +#: ../pyhoca/wxgui/menus_taskbar.py:1078 msgid "E&xit" msgstr "Вы&ход" @@ -959,7 +957,7 @@ msgstr "Вы&ход" msgid "Window title" msgstr "Заголовок окна" -#: ../pyhoca/wxgui/menus_taskbar.py:247 ../pyhoca/wxgui/menus_taskbar.py:649 +#: ../pyhoca/wxgui/menus_taskbar.py:247 ../pyhoca/wxgui/menus_taskbar.py:657 msgid "Resume Session" msgstr "Восстановить сессию" @@ -975,27 +973,27 @@ msgstr "Трансфер сессии" msgid "Transfer Session (not possible)" msgstr "Трансфер сессии (невозможен)" -#: ../pyhoca/wxgui/menus_taskbar.py:267 ../pyhoca/wxgui/menus_taskbar.py:640 +#: ../pyhoca/wxgui/menus_taskbar.py:267 ../pyhoca/wxgui/menus_taskbar.py:648 msgid "Suspend Session (and disconnect/exit)" msgstr "Прервать сессию (и разъединить/выйти)" -#: ../pyhoca/wxgui/menus_taskbar.py:269 ../pyhoca/wxgui/menus_taskbar.py:642 +#: ../pyhoca/wxgui/menus_taskbar.py:269 ../pyhoca/wxgui/menus_taskbar.py:650 msgid "Suspend Session (and disconnect)" msgstr "Прервать сессию (и разъединить)" -#: ../pyhoca/wxgui/menus_taskbar.py:271 ../pyhoca/wxgui/menus_taskbar.py:644 +#: ../pyhoca/wxgui/menus_taskbar.py:271 ../pyhoca/wxgui/menus_taskbar.py:652 msgid "Suspend Session" msgstr "Прервать сессию" -#: ../pyhoca/wxgui/menus_taskbar.py:277 ../pyhoca/wxgui/menus_taskbar.py:653 +#: ../pyhoca/wxgui/menus_taskbar.py:277 ../pyhoca/wxgui/menus_taskbar.py:661 msgid "Terminate Session (and disconnect/exit)" msgstr "Завершить сессию (и разъединить/выйти)" -#: ../pyhoca/wxgui/menus_taskbar.py:279 ../pyhoca/wxgui/menus_taskbar.py:655 +#: ../pyhoca/wxgui/menus_taskbar.py:279 ../pyhoca/wxgui/menus_taskbar.py:663 msgid "Terminate Session (and disconnect)" msgstr "Завершить сессию (и разъединить)" -#: ../pyhoca/wxgui/menus_taskbar.py:281 ../pyhoca/wxgui/menus_taskbar.py:657 +#: ../pyhoca/wxgui/menus_taskbar.py:281 ../pyhoca/wxgui/menus_taskbar.py:665 msgid "Terminate Session" msgstr "Завершить сессию" @@ -1011,7 +1009,7 @@ msgstr "Завершить сессию (и разъединить)" msgid "End Desktop Sharing" msgstr "Завершить сессию" -#: ../pyhoca/wxgui/menus_taskbar.py:292 ../pyhoca/wxgui/menus_taskbar.py:637 +#: ../pyhoca/wxgui/menus_taskbar.py:292 ../pyhoca/wxgui/menus_taskbar.py:645 msgid "Refresh menu tree" msgstr "Обновить меню" @@ -1083,119 +1081,119 @@ msgstr "Утилиты" msgid "Other Applications" msgstr "Другие программы" -#: ../pyhoca/wxgui/menus_taskbar.py:545 ../pyhoca/wxgui/menus_taskbar.py:1035 +#: ../pyhoca/wxgui/menus_taskbar.py:553 ../pyhoca/wxgui/menus_taskbar.py:1043 #, fuzzy msgid "Connect to" msgstr "Метод подключения" -#: ../pyhoca/wxgui/menus_taskbar.py:550 ../pyhoca/wxgui/menus_taskbar.py:565 +#: ../pyhoca/wxgui/menus_taskbar.py:558 ../pyhoca/wxgui/menus_taskbar.py:573 #, python-format msgid "Connect %s" msgstr "Соединение %s" -#: ../pyhoca/wxgui/menus_taskbar.py:559 +#: ../pyhoca/wxgui/menus_taskbar.py:567 msgid "Currently connecting..." msgstr "Соединение ..." -#: ../pyhoca/wxgui/menus_taskbar.py:574 +#: ../pyhoca/wxgui/menus_taskbar.py:582 msgid "Start &new Desktop Session" msgstr "Запустить &новую сессию" -#: ../pyhoca/wxgui/menus_taskbar.py:578 ../pyhoca/wxgui/menus_taskbar.py:678 +#: ../pyhoca/wxgui/menus_taskbar.py:586 ../pyhoca/wxgui/menus_taskbar.py:686 msgid "Start Desktop Sharing Session" msgstr "Запустить сессию разделения десктопа" -#: ../pyhoca/wxgui/menus_taskbar.py:584 ../pyhoca/wxgui/menus_taskbar.py:728 +#: ../pyhoca/wxgui/menus_taskbar.py:592 ../pyhoca/wxgui/menus_taskbar.py:736 msgid "Retrieving Application Menu..." msgstr "Получаем меню приложений..." -#: ../pyhoca/wxgui/menus_taskbar.py:588 ../pyhoca/wxgui/menus_taskbar.py:731 +#: ../pyhoca/wxgui/menus_taskbar.py:596 ../pyhoca/wxgui/menus_taskbar.py:739 msgid "Retrieve Application Menu" msgstr "Получить меню приложений" -#: ../pyhoca/wxgui/menus_taskbar.py:591 +#: ../pyhoca/wxgui/menus_taskbar.py:599 msgid "Start &new RDP Session" msgstr "Запустить &новую RDP сессию" -#: ../pyhoca/wxgui/menus_taskbar.py:594 +#: ../pyhoca/wxgui/menus_taskbar.py:602 msgid "Start &new Session" msgstr "Запустить &новую сессию" -#: ../pyhoca/wxgui/menus_taskbar.py:674 +#: ../pyhoca/wxgui/menus_taskbar.py:682 msgid "Launch Single Application" msgstr "Запустить приложение" -#: ../pyhoca/wxgui/menus_taskbar.py:715 +#: ../pyhoca/wxgui/menus_taskbar.py:723 msgid "Manage Application Menu" msgstr "Управление меню приложений" -#: ../pyhoca/wxgui/menus_taskbar.py:770 +#: ../pyhoca/wxgui/menus_taskbar.py:778 msgid "Running" msgstr "Выполняется" -#: ../pyhoca/wxgui/menus_taskbar.py:772 +#: ../pyhoca/wxgui/menus_taskbar.py:780 msgid "Suspended" msgstr "Приостановлено" -#: ../pyhoca/wxgui/menus_taskbar.py:791 +#: ../pyhoca/wxgui/menus_taskbar.py:799 msgid "&Clean all sessions" msgstr "&Очистить все сессии" -#: ../pyhoca/wxgui/menus_taskbar.py:798 +#: ../pyhoca/wxgui/menus_taskbar.py:806 msgid "Customize &profile" msgstr "Изменить &профиль" -#: ../pyhoca/wxgui/menus_taskbar.py:800 +#: ../pyhoca/wxgui/menus_taskbar.py:808 #, fuzzy msgid "View &profile" msgstr "Изменить &профиль" -#: ../pyhoca/wxgui/menus_taskbar.py:815 +#: ../pyhoca/wxgui/menus_taskbar.py:823 msgid "Shared &folders" msgstr "Экспорт &каталогов" -#: ../pyhoca/wxgui/menus_taskbar.py:827 +#: ../pyhoca/wxgui/menus_taskbar.py:835 msgid "Server Information" msgstr "Информация о сервере" -#: ../pyhoca/wxgui/menus_taskbar.py:834 +#: ../pyhoca/wxgui/menus_taskbar.py:842 msgid "&Disconnect from Server" msgstr "&Отсоединить от сервера" -#: ../pyhoca/wxgui/menus_taskbar.py:841 +#: ../pyhoca/wxgui/menus_taskbar.py:849 msgid "Suspend Session and E&xit application" msgstr "&Прервать сессию и покинуть программу" -#: ../pyhoca/wxgui/menus_taskbar.py:845 +#: ../pyhoca/wxgui/menus_taskbar.py:853 msgid "Disconnect and E&xit application" msgstr "&Разъединить и покинуть программу" -#: ../pyhoca/wxgui/menus_taskbar.py:899 +#: ../pyhoca/wxgui/menus_taskbar.py:907 msgid "Add Profile" msgstr "Добавить профиль" -#: ../pyhoca/wxgui/menus_taskbar.py:976 +#: ../pyhoca/wxgui/menus_taskbar.py:984 #, fuzzy msgid "Session broker is not connected" msgstr "X2Go Профиль отсоединен." -#: ../pyhoca/wxgui/menus_taskbar.py:978 +#: ../pyhoca/wxgui/menus_taskbar.py:986 msgid "No session profiles defined" msgstr "Профили не определены" -#: ../pyhoca/wxgui/menus_taskbar.py:989 +#: ../pyhoca/wxgui/menus_taskbar.py:997 msgid "Export all Profiles" msgstr "Экспортировать все профили" -#: ../pyhoca/wxgui/menus_taskbar.py:991 +#: ../pyhoca/wxgui/menus_taskbar.py:999 msgid "Export Profile Group" msgstr "Экспортировать группу профилей" -#: ../pyhoca/wxgui/menus_taskbar.py:997 +#: ../pyhoca/wxgui/menus_taskbar.py:1005 msgid "Import Session Profiles" msgstr "Импортировать профили сессии" -#: ../pyhoca/wxgui/menus_taskbar.py:1040 +#: ../pyhoca/wxgui/menus_taskbar.py:1048 msgid "Connect Server" msgstr "Соединить с сервером" diff --git a/po/sv.po b/po/sv.po index 1d862b8..8553006 100644 --- a/po/sv.po +++ b/po/sv.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PyHoca-GUI VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-10-20 12:52+0200\n" +"POT-Creation-Date: 2016-01-29 04:04+0100\n" "PO-Revision-Date: 2014-07-09 15:00+0100\n" "Last-Translator: Daniel Lindgren <dali.spam@gmail.com>\n" "Language-Team: X2Go i18n <x2go-i18n@lists.x2go.org>\n" @@ -241,7 +241,7 @@ msgstr "SSH nyckelfil (för X2Go server) kunde ej låsas upp!" msgid "SSH key file (for SSH proxy) could not be unlocked!" msgstr "SSH nyckelfil (för SSH proxy) kunde ej låsas upp!" -#: ../pyhoca/wxgui/taskbar.py:111 +#: ../pyhoca/wxgui/taskbar.py:118 #, python-format msgid "" "%s\n" @@ -250,7 +250,7 @@ msgstr "" "%s\n" "Ansluter till \"%s\"" -#: ../pyhoca/wxgui/taskbar.py:115 +#: ../pyhoca/wxgui/taskbar.py:122 #, python-format msgid "" "%s\n" @@ -259,7 +259,7 @@ msgstr "" "%s\n" "Anslutning till \"%s\" pågår" -#: ../pyhoca/wxgui/taskbar.py:125 +#: ../pyhoca/wxgui/taskbar.py:132 #, python-format msgid "" "%s\n" @@ -268,7 +268,7 @@ msgstr "" "%s\n" "Ansluter dig till X2Go..." -#: ../pyhoca/wxgui/taskbar.py:129 +#: ../pyhoca/wxgui/taskbar.py:136 #, python-format msgid "" "%s\n" @@ -740,14 +740,12 @@ msgstr "Återställ" msgid "Apply" msgstr "Verkställ" -#: ../pyhoca/wxgui/profilemanager.py:453 -#: ../pyhoca/wxgui/profilemanager.py:1184 +#: ../pyhoca/wxgui/profilemanager.py:453 ../pyhoca/wxgui/profilemanager.py:1184 #: ../pyhoca/wxgui/profilemanager.py:2364 msgid "automatically" msgstr "automatisk" -#: ../pyhoca/wxgui/profilemanager.py:455 -#: ../pyhoca/wxgui/profilemanager.py:1186 +#: ../pyhoca/wxgui/profilemanager.py:455 ../pyhoca/wxgui/profilemanager.py:1186 msgid "manually" msgstr "manuellt" @@ -937,8 +935,8 @@ msgstr "Utskriftspreferenser" msgid "Client Options" msgstr "Klientalternativ" -#: ../pyhoca/wxgui/menus_taskbar.py:169 ../pyhoca/wxgui/menus_taskbar.py:849 -#: ../pyhoca/wxgui/menus_taskbar.py:1070 +#: ../pyhoca/wxgui/menus_taskbar.py:169 ../pyhoca/wxgui/menus_taskbar.py:857 +#: ../pyhoca/wxgui/menus_taskbar.py:1078 msgid "E&xit" msgstr "&Avsluta" @@ -946,7 +944,7 @@ msgstr "&Avsluta" msgid "Window title" msgstr "Fönstertitel" -#: ../pyhoca/wxgui/menus_taskbar.py:247 ../pyhoca/wxgui/menus_taskbar.py:649 +#: ../pyhoca/wxgui/menus_taskbar.py:247 ../pyhoca/wxgui/menus_taskbar.py:657 msgid "Resume Session" msgstr "Återanslut session" @@ -962,27 +960,27 @@ msgstr "Flytta session" msgid "Transfer Session (not possible)" msgstr "Flytta session (ej möjligt)" -#: ../pyhoca/wxgui/menus_taskbar.py:267 ../pyhoca/wxgui/menus_taskbar.py:640 +#: ../pyhoca/wxgui/menus_taskbar.py:267 ../pyhoca/wxgui/menus_taskbar.py:648 msgid "Suspend Session (and disconnect/exit)" msgstr "Försätt session i vila och avsluta" -#: ../pyhoca/wxgui/menus_taskbar.py:269 ../pyhoca/wxgui/menus_taskbar.py:642 +#: ../pyhoca/wxgui/menus_taskbar.py:269 ../pyhoca/wxgui/menus_taskbar.py:650 msgid "Suspend Session (and disconnect)" msgstr "Försätt session i vila och koppla från" -#: ../pyhoca/wxgui/menus_taskbar.py:271 ../pyhoca/wxgui/menus_taskbar.py:644 +#: ../pyhoca/wxgui/menus_taskbar.py:271 ../pyhoca/wxgui/menus_taskbar.py:652 msgid "Suspend Session" msgstr "Försätt session i vila" -#: ../pyhoca/wxgui/menus_taskbar.py:277 ../pyhoca/wxgui/menus_taskbar.py:653 +#: ../pyhoca/wxgui/menus_taskbar.py:277 ../pyhoca/wxgui/menus_taskbar.py:661 msgid "Terminate Session (and disconnect/exit)" msgstr "Avsluta session" -#: ../pyhoca/wxgui/menus_taskbar.py:279 ../pyhoca/wxgui/menus_taskbar.py:655 +#: ../pyhoca/wxgui/menus_taskbar.py:279 ../pyhoca/wxgui/menus_taskbar.py:663 msgid "Terminate Session (and disconnect)" msgstr "Koppla från session" -#: ../pyhoca/wxgui/menus_taskbar.py:281 ../pyhoca/wxgui/menus_taskbar.py:657 +#: ../pyhoca/wxgui/menus_taskbar.py:281 ../pyhoca/wxgui/menus_taskbar.py:665 msgid "Terminate Session" msgstr "Avsluta session" @@ -998,7 +996,7 @@ msgstr "Avsluta skrivbordsdelning (och koppla från)" msgid "End Desktop Sharing" msgstr "Avsluta skrivbordsdelning" -#: ../pyhoca/wxgui/menus_taskbar.py:292 ../pyhoca/wxgui/menus_taskbar.py:637 +#: ../pyhoca/wxgui/menus_taskbar.py:292 ../pyhoca/wxgui/menus_taskbar.py:645 msgid "Refresh menu tree" msgstr "Uppdatera menyträd" @@ -1070,116 +1068,116 @@ msgstr "Verktyg" msgid "Other Applications" msgstr "Övriga applikationer" -#: ../pyhoca/wxgui/menus_taskbar.py:545 ../pyhoca/wxgui/menus_taskbar.py:1035 +#: ../pyhoca/wxgui/menus_taskbar.py:553 ../pyhoca/wxgui/menus_taskbar.py:1043 msgid "Connect to" msgstr "Anslut till" -#: ../pyhoca/wxgui/menus_taskbar.py:550 ../pyhoca/wxgui/menus_taskbar.py:565 +#: ../pyhoca/wxgui/menus_taskbar.py:558 ../pyhoca/wxgui/menus_taskbar.py:573 #, python-format msgid "Connect %s" msgstr "Anslut %s" -#: ../pyhoca/wxgui/menus_taskbar.py:559 +#: ../pyhoca/wxgui/menus_taskbar.py:567 msgid "Currently connecting..." msgstr "Anslutning pågår..." -#: ../pyhoca/wxgui/menus_taskbar.py:574 +#: ../pyhoca/wxgui/menus_taskbar.py:582 msgid "Start &new Desktop Session" msgstr "Starta &ny Skrivbordssession" -#: ../pyhoca/wxgui/menus_taskbar.py:578 ../pyhoca/wxgui/menus_taskbar.py:678 +#: ../pyhoca/wxgui/menus_taskbar.py:586 ../pyhoca/wxgui/menus_taskbar.py:686 msgid "Start Desktop Sharing Session" msgstr "Starta skrivbordsdelning" -#: ../pyhoca/wxgui/menus_taskbar.py:584 ../pyhoca/wxgui/menus_taskbar.py:728 +#: ../pyhoca/wxgui/menus_taskbar.py:592 ../pyhoca/wxgui/menus_taskbar.py:736 msgid "Retrieving Application Menu..." msgstr "Hämtar applikationsmeny..." -#: ../pyhoca/wxgui/menus_taskbar.py:588 ../pyhoca/wxgui/menus_taskbar.py:731 +#: ../pyhoca/wxgui/menus_taskbar.py:596 ../pyhoca/wxgui/menus_taskbar.py:739 msgid "Retrieve Application Menu" msgstr "Hämta applikationsmeny" -#: ../pyhoca/wxgui/menus_taskbar.py:591 +#: ../pyhoca/wxgui/menus_taskbar.py:599 msgid "Start &new RDP Session" msgstr "Starta &ny RDP session" -#: ../pyhoca/wxgui/menus_taskbar.py:594 +#: ../pyhoca/wxgui/menus_taskbar.py:602 msgid "Start &new Session" msgstr "Starta &ny session" -#: ../pyhoca/wxgui/menus_taskbar.py:674 +#: ../pyhoca/wxgui/menus_taskbar.py:682 msgid "Launch Single Application" msgstr "Starta applikation" -#: ../pyhoca/wxgui/menus_taskbar.py:715 +#: ../pyhoca/wxgui/menus_taskbar.py:723 msgid "Manage Application Menu" msgstr "Hantera applikationsmeny" -#: ../pyhoca/wxgui/menus_taskbar.py:770 +#: ../pyhoca/wxgui/menus_taskbar.py:778 msgid "Running" msgstr "Aktiv" -#: ../pyhoca/wxgui/menus_taskbar.py:772 +#: ../pyhoca/wxgui/menus_taskbar.py:780 msgid "Suspended" msgstr "Vilande" -#: ../pyhoca/wxgui/menus_taskbar.py:791 +#: ../pyhoca/wxgui/menus_taskbar.py:799 msgid "&Clean all sessions" msgstr "&Rensa alla sessioner" -#: ../pyhoca/wxgui/menus_taskbar.py:798 +#: ../pyhoca/wxgui/menus_taskbar.py:806 msgid "Customize &profile" msgstr "Anpassa &profil" -#: ../pyhoca/wxgui/menus_taskbar.py:800 +#: ../pyhoca/wxgui/menus_taskbar.py:808 msgid "View &profile" msgstr "Visa &profil" -#: ../pyhoca/wxgui/menus_taskbar.py:815 +#: ../pyhoca/wxgui/menus_taskbar.py:823 msgid "Shared &folders" msgstr "Delade &mappar" -#: ../pyhoca/wxgui/menus_taskbar.py:827 +#: ../pyhoca/wxgui/menus_taskbar.py:835 msgid "Server Information" msgstr "Serverinformation" -#: ../pyhoca/wxgui/menus_taskbar.py:834 +#: ../pyhoca/wxgui/menus_taskbar.py:842 msgid "&Disconnect from Server" msgstr "&Koppla från server" -#: ../pyhoca/wxgui/menus_taskbar.py:841 +#: ../pyhoca/wxgui/menus_taskbar.py:849 msgid "Suspend Session and E&xit application" msgstr "Försätt session i vila och avsluta" -#: ../pyhoca/wxgui/menus_taskbar.py:845 +#: ../pyhoca/wxgui/menus_taskbar.py:853 msgid "Disconnect and E&xit application" msgstr "Kopplar från och &avsluta" -#: ../pyhoca/wxgui/menus_taskbar.py:899 +#: ../pyhoca/wxgui/menus_taskbar.py:907 msgid "Add Profile" msgstr "Lägg till profil" -#: ../pyhoca/wxgui/menus_taskbar.py:976 +#: ../pyhoca/wxgui/menus_taskbar.py:984 msgid "Session broker is not connected" msgstr "Sessionshanterare är frånkopplad" -#: ../pyhoca/wxgui/menus_taskbar.py:978 +#: ../pyhoca/wxgui/menus_taskbar.py:986 msgid "No session profiles defined" msgstr "Inga sessionsprofiler har definierats" -#: ../pyhoca/wxgui/menus_taskbar.py:989 +#: ../pyhoca/wxgui/menus_taskbar.py:997 msgid "Export all Profiles" msgstr "Exportera alla profiler" -#: ../pyhoca/wxgui/menus_taskbar.py:991 +#: ../pyhoca/wxgui/menus_taskbar.py:999 msgid "Export Profile Group" msgstr "Exportera profilgrupp" -#: ../pyhoca/wxgui/menus_taskbar.py:997 +#: ../pyhoca/wxgui/menus_taskbar.py:1005 msgid "Import Session Profiles" msgstr "Importera sessionsprofiler" -#: ../pyhoca/wxgui/menus_taskbar.py:1040 +#: ../pyhoca/wxgui/menus_taskbar.py:1048 msgid "Connect Server" msgstr "Anslut till server" diff --git a/po/tr.po b/po/tr.po index fb93553..0922d31 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PyHoca-GUI\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-27 12:31+0100\n" +"POT-Creation-Date: 2016-01-29 04:04+0100\n" "PO-Revision-Date: 2014-11-20 13:57+0000\n" "Last-Translator: Kaan Özdinçer <kaanozdincer@gmail.com>\n" "Language-Team: Turkish <x2go-i18n@lists.x2go.org>\n" @@ -184,8 +184,8 @@ msgid "" "\n" "However, for security reasons the connection will not be established!!!" msgstr "" -"İstemci anahtar doğrulaması başarısız oldu. X2Go sunucusu tehlikede olabilir." -"\n" +"İstemci anahtar doğrulaması başarısız oldu. X2Go sunucusu tehlikede " +"olabilir.\n" "\n" "Sadece istemci anahtarı değiştirilmiş de olabilir.\n" "\n" @@ -241,7 +241,7 @@ msgstr "SSH anahtar dosyası (X2Go sunucu için) kilitlenemedi!" msgid "SSH key file (for SSH proxy) could not be unlocked!" msgstr "SSH anahtar dosyası (SSH vekil sunucu için) kilitlenemedi!" -#: ../pyhoca/wxgui/taskbar.py:111 +#: ../pyhoca/wxgui/taskbar.py:118 #, python-format msgid "" "%s\n" @@ -250,7 +250,7 @@ msgstr "" "%s\n" ",,%s'' adresine bağlanıyorsunuz" -#: ../pyhoca/wxgui/taskbar.py:115 +#: ../pyhoca/wxgui/taskbar.py:122 #, python-format msgid "" "%s\n" @@ -259,7 +259,7 @@ msgstr "" "%s\n" "Uzak X2Go server ,,%s'' X2Go sunucusuna bağlanıyorsunuz" -#: ../pyhoca/wxgui/taskbar.py:125 +#: ../pyhoca/wxgui/taskbar.py:132 #, python-format msgid "" "%s\n" @@ -268,7 +268,7 @@ msgstr "" "%s\n" "X2Go'ya bağlanıyorsunuz..." -#: ../pyhoca/wxgui/taskbar.py:129 +#: ../pyhoca/wxgui/taskbar.py:136 #, python-format msgid "" "%s\n" @@ -745,14 +745,12 @@ msgstr "Sıfırla" msgid "Apply" msgstr "Uygula" -#: ../pyhoca/wxgui/profilemanager.py:453 -#: ../pyhoca/wxgui/profilemanager.py:1184 +#: ../pyhoca/wxgui/profilemanager.py:453 ../pyhoca/wxgui/profilemanager.py:1184 #: ../pyhoca/wxgui/profilemanager.py:2364 msgid "automatically" msgstr "Otomatik olarak" -#: ../pyhoca/wxgui/profilemanager.py:455 -#: ../pyhoca/wxgui/profilemanager.py:1186 +#: ../pyhoca/wxgui/profilemanager.py:455 ../pyhoca/wxgui/profilemanager.py:1186 msgid "manually" msgstr "el ile" @@ -942,8 +940,8 @@ msgstr "Tercihler Yazdırılıyor" msgid "Client Options" msgstr "İstemci Seçenekleri" -#: ../pyhoca/wxgui/menus_taskbar.py:169 ../pyhoca/wxgui/menus_taskbar.py:849 -#: ../pyhoca/wxgui/menus_taskbar.py:1070 +#: ../pyhoca/wxgui/menus_taskbar.py:169 ../pyhoca/wxgui/menus_taskbar.py:857 +#: ../pyhoca/wxgui/menus_taskbar.py:1078 msgid "E&xit" msgstr "Ç&ıkış" @@ -951,7 +949,7 @@ msgstr "Ç&ıkış" msgid "Window title" msgstr "Pencere başlığı" -#: ../pyhoca/wxgui/menus_taskbar.py:247 ../pyhoca/wxgui/menus_taskbar.py:649 +#: ../pyhoca/wxgui/menus_taskbar.py:247 ../pyhoca/wxgui/menus_taskbar.py:657 msgid "Resume Session" msgstr "Oturuma Devam Et" @@ -967,27 +965,27 @@ msgstr "Oturumu Aktar" msgid "Transfer Session (not possible)" msgstr "Oturumu Aktar (mümkün değil)" -#: ../pyhoca/wxgui/menus_taskbar.py:267 ../pyhoca/wxgui/menus_taskbar.py:640 +#: ../pyhoca/wxgui/menus_taskbar.py:267 ../pyhoca/wxgui/menus_taskbar.py:648 msgid "Suspend Session (and disconnect/exit)" msgstr "Oturumu Askıya Al (ve bağlantıyı kes/çıkış yap)" -#: ../pyhoca/wxgui/menus_taskbar.py:269 ../pyhoca/wxgui/menus_taskbar.py:642 +#: ../pyhoca/wxgui/menus_taskbar.py:269 ../pyhoca/wxgui/menus_taskbar.py:650 msgid "Suspend Session (and disconnect)" msgstr "Oturumu Askıya Al (ve bağlantıyı kes)" -#: ../pyhoca/wxgui/menus_taskbar.py:271 ../pyhoca/wxgui/menus_taskbar.py:644 +#: ../pyhoca/wxgui/menus_taskbar.py:271 ../pyhoca/wxgui/menus_taskbar.py:652 msgid "Suspend Session" msgstr "Oturumu Askıya Al" -#: ../pyhoca/wxgui/menus_taskbar.py:277 ../pyhoca/wxgui/menus_taskbar.py:653 +#: ../pyhoca/wxgui/menus_taskbar.py:277 ../pyhoca/wxgui/menus_taskbar.py:661 msgid "Terminate Session (and disconnect/exit)" msgstr "Oturum Sonlandır (ve bağlantıyı kes/çık)" -#: ../pyhoca/wxgui/menus_taskbar.py:279 ../pyhoca/wxgui/menus_taskbar.py:655 +#: ../pyhoca/wxgui/menus_taskbar.py:279 ../pyhoca/wxgui/menus_taskbar.py:663 msgid "Terminate Session (and disconnect)" msgstr "Oturumu Sonlandır (ve bağlantıyı kes)" -#: ../pyhoca/wxgui/menus_taskbar.py:281 ../pyhoca/wxgui/menus_taskbar.py:657 +#: ../pyhoca/wxgui/menus_taskbar.py:281 ../pyhoca/wxgui/menus_taskbar.py:665 msgid "Terminate Session" msgstr "Oturumu Sonlandır" @@ -1003,7 +1001,7 @@ msgstr "Masaüstü Paylaşımını Sonlandır (ve bağlantıyı kes)" msgid "End Desktop Sharing" msgstr "Masaüstü Paylaşımını Sonlandır" -#: ../pyhoca/wxgui/menus_taskbar.py:292 ../pyhoca/wxgui/menus_taskbar.py:637 +#: ../pyhoca/wxgui/menus_taskbar.py:292 ../pyhoca/wxgui/menus_taskbar.py:645 msgid "Refresh menu tree" msgstr "Menü ağacını tazele" @@ -1075,116 +1073,116 @@ msgstr "Araçlar" msgid "Other Applications" msgstr "Diğer Uygulamalar" -#: ../pyhoca/wxgui/menus_taskbar.py:545 ../pyhoca/wxgui/menus_taskbar.py:1035 +#: ../pyhoca/wxgui/menus_taskbar.py:553 ../pyhoca/wxgui/menus_taskbar.py:1043 msgid "Connect to" msgstr "Şuna bağlan" -#: ../pyhoca/wxgui/menus_taskbar.py:550 ../pyhoca/wxgui/menus_taskbar.py:565 +#: ../pyhoca/wxgui/menus_taskbar.py:558 ../pyhoca/wxgui/menus_taskbar.py:573 #, python-format msgid "Connect %s" msgstr "Bağlan %s" -#: ../pyhoca/wxgui/menus_taskbar.py:559 +#: ../pyhoca/wxgui/menus_taskbar.py:567 msgid "Currently connecting..." msgstr "Bağlanıyor..." -#: ../pyhoca/wxgui/menus_taskbar.py:574 +#: ../pyhoca/wxgui/menus_taskbar.py:582 msgid "Start &new Desktop Session" msgstr "Ye&ni Masaüstü Oturumu Başlat" -#: ../pyhoca/wxgui/menus_taskbar.py:578 ../pyhoca/wxgui/menus_taskbar.py:678 +#: ../pyhoca/wxgui/menus_taskbar.py:586 ../pyhoca/wxgui/menus_taskbar.py:686 msgid "Start Desktop Sharing Session" msgstr "Masaüstü Paylaşım Oturumu Başlat" -#: ../pyhoca/wxgui/menus_taskbar.py:584 ../pyhoca/wxgui/menus_taskbar.py:728 +#: ../pyhoca/wxgui/menus_taskbar.py:592 ../pyhoca/wxgui/menus_taskbar.py:736 msgid "Retrieving Application Menu..." msgstr "Uygulama Menüsü Alınıyor..." -#: ../pyhoca/wxgui/menus_taskbar.py:588 ../pyhoca/wxgui/menus_taskbar.py:731 +#: ../pyhoca/wxgui/menus_taskbar.py:596 ../pyhoca/wxgui/menus_taskbar.py:739 msgid "Retrieve Application Menu" msgstr "Uygulama Menüsünü Al" -#: ../pyhoca/wxgui/menus_taskbar.py:591 +#: ../pyhoca/wxgui/menus_taskbar.py:599 msgid "Start &new RDP Session" msgstr "Yeni RDP Oturumu &başlat" -#: ../pyhoca/wxgui/menus_taskbar.py:594 +#: ../pyhoca/wxgui/menus_taskbar.py:602 msgid "Start &new Session" msgstr "Ye&ni Oturum Başlat" -#: ../pyhoca/wxgui/menus_taskbar.py:674 +#: ../pyhoca/wxgui/menus_taskbar.py:682 msgid "Launch Single Application" msgstr "Tek Uygulama Başlat" -#: ../pyhoca/wxgui/menus_taskbar.py:715 +#: ../pyhoca/wxgui/menus_taskbar.py:723 msgid "Manage Application Menu" msgstr "Uygulama Menüsünü Yönet" -#: ../pyhoca/wxgui/menus_taskbar.py:770 +#: ../pyhoca/wxgui/menus_taskbar.py:778 msgid "Running" msgstr "Çalışıyor" -#: ../pyhoca/wxgui/menus_taskbar.py:772 +#: ../pyhoca/wxgui/menus_taskbar.py:780 msgid "Suspended" msgstr "Beklemede" -#: ../pyhoca/wxgui/menus_taskbar.py:791 +#: ../pyhoca/wxgui/menus_taskbar.py:799 msgid "&Clean all sessions" msgstr "&Tüm oturumları temizle" -#: ../pyhoca/wxgui/menus_taskbar.py:798 +#: ../pyhoca/wxgui/menus_taskbar.py:806 msgid "Customize &profile" msgstr "Profili &özelleştir" -#: ../pyhoca/wxgui/menus_taskbar.py:800 +#: ../pyhoca/wxgui/menus_taskbar.py:808 msgid "View &profile" msgstr "Profili &görüntüle" -#: ../pyhoca/wxgui/menus_taskbar.py:815 +#: ../pyhoca/wxgui/menus_taskbar.py:823 msgid "Shared &folders" msgstr "Paylaşılan &klasörler" -#: ../pyhoca/wxgui/menus_taskbar.py:827 +#: ../pyhoca/wxgui/menus_taskbar.py:835 msgid "Server Information" msgstr "Sunucu Bilgisi" -#: ../pyhoca/wxgui/menus_taskbar.py:834 +#: ../pyhoca/wxgui/menus_taskbar.py:842 msgid "&Disconnect from Server" msgstr "Sunucudan Bağlantıyı &Kes" -#: ../pyhoca/wxgui/menus_taskbar.py:841 +#: ../pyhoca/wxgui/menus_taskbar.py:849 msgid "Suspend Session and E&xit application" msgstr "Oturumu Askıya Al ve &Uygulamadan Çık" -#: ../pyhoca/wxgui/menus_taskbar.py:845 +#: ../pyhoca/wxgui/menus_taskbar.py:853 msgid "Disconnect and E&xit application" msgstr "Bağlantıyı Kes ve Uygulamadan &Çık" -#: ../pyhoca/wxgui/menus_taskbar.py:899 +#: ../pyhoca/wxgui/menus_taskbar.py:907 msgid "Add Profile" msgstr "Profil Ekle" -#: ../pyhoca/wxgui/menus_taskbar.py:976 +#: ../pyhoca/wxgui/menus_taskbar.py:984 msgid "Session broker is not connected" msgstr "Oturum aracısı bağlı değil" -#: ../pyhoca/wxgui/menus_taskbar.py:978 +#: ../pyhoca/wxgui/menus_taskbar.py:986 msgid "No session profiles defined" msgstr "Oturum profili tanımlanmadı" -#: ../pyhoca/wxgui/menus_taskbar.py:989 +#: ../pyhoca/wxgui/menus_taskbar.py:997 msgid "Export all Profiles" msgstr "Tüm profilleri dışa aktar" -#: ../pyhoca/wxgui/menus_taskbar.py:991 +#: ../pyhoca/wxgui/menus_taskbar.py:999 msgid "Export Profile Group" msgstr "Profil Grubunu Dışarı Aktar" -#: ../pyhoca/wxgui/menus_taskbar.py:997 +#: ../pyhoca/wxgui/menus_taskbar.py:1005 msgid "Import Session Profiles" msgstr "Oturum Profillerini İçeri Aktar" -#: ../pyhoca/wxgui/menus_taskbar.py:1040 +#: ../pyhoca/wxgui/menus_taskbar.py:1048 msgid "Connect Server" msgstr "Sunucuya Bağlan" -- Alioth's /srv/git/code.x2go.org/pyhoca-gui.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/pyhoca-gui.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository pyhoca-gui. commit b2bfa4ceb868e53268425085304fb54a8c924e50 Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Jan 29 04:13:37 2016 +0100 build/mo: add Turkish binary translation directory structure and file. --- build/mo/tr/LC_MESSAGES/PyHoca-GUI.mo | Bin 0 -> 35463 bytes debian/changelog | 1 + 2 files changed, 1 insertion(+) diff --git a/build/mo/tr/LC_MESSAGES/PyHoca-GUI.mo b/build/mo/tr/LC_MESSAGES/PyHoca-GUI.mo new file mode 100644 index 0000000..452c62c Binary files /dev/null and b/build/mo/tr/LC_MESSAGES/PyHoca-GUI.mo differ diff --git a/debian/changelog b/debian/changelog index 8d5bbbf..2d4fb81 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,6 +6,7 @@ pyhoca-gui (0.5.0.6-0x2go1) UNRELEASED; urgency=medium to all Linux branches. - setup.py: explain how to update the translation template file *.pot. - {po,build/mo}: update translation files. + - build/mo: add Turkish binary translation directory structure and file. -- X2Go Release Manager <git-admin@x2go.org> Thu, 28 Jan 2016 19:04:20 +0100 -- Alioth's /srv/git/code.x2go.org/pyhoca-gui.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/pyhoca-gui.git