diff --git a/.bzrignore b/.bzrignore index e009b989..306d59b5 100644 --- a/.bzrignore +++ b/.bzrignore @@ -31,6 +31,8 @@ data/gschemas.compiled data/org.pantheon.desktop.gala.gschema.valid data/org.pantheon.desktop.gala.gschema.xml data/org.pantheon.desktop.gala.gschema.xml.in +docs/gala +docs/libgala lib/gala.vapi po/*.gmo po/.intltool-merge-cache diff --git a/Makefile.am b/Makefile.am index 46853965..0c0535ee 100644 --- a/Makefile.am +++ b/Makefile.am @@ -5,6 +5,7 @@ SUBDIRS = \ lib \ plugins \ src \ + docs \ po \ vapi \ $(NULL) diff --git a/configure.ac b/configure.ac index 543a90c6..14c34b17 100644 --- a/configure.ac +++ b/configure.ac @@ -127,8 +127,8 @@ GALA_CORE_VALA_PKGS="--pkg gio-unix-2.0 \ --pkg xfixes-4.0 \ --pkg plank" -VALAFLAGS="$VALAFLAGS --thread --target-glib=2.32" - +VALAFLAGS="--target-glib=2.32" +VALAFLAGS_CORE="--thread" PKG_CHECK_MODULES(GALA_CORE, $GALA_CORE_PKGS) @@ -159,7 +159,7 @@ fi # 3.14 PKG_CHECK_MODULES(MUTTER314, [libmutter >= 3.13], [have_mutter314=yes], [have_mutter314=no]) if test "x$have_mutter314" = "xyes" ; then - PKG_CHECK_MODULES(MUTTER314, [libmutter >= 3.13.2]) + PKG_CHECK_MODULES(MUTTER314, [libmutter >= 3.13.3]) VALAFLAGS="$VALAFLAGS --define HAS_MUTTER314" MUTTER_API="3.14" fi @@ -179,7 +179,7 @@ PKG_CHECK_MODULES(NOTIFICAION_PLUGIN, $NOTIFICATION_PLUGIN_PKGS) AC_SUBST([NOTIFICATION_PLUGIN_VALA_PKGS]) # ----------------------------------------------------------- -# Addional configure flags +# Additional configure flags # ----------------------------------------------------------- # Enable Vala debug-flag by default for non-release builds @@ -187,11 +187,44 @@ AC_ARG_ENABLE([debug], AS_HELP_STRING([--disable-debug],[compile without debug code]), [enable_debug=$enableval], [m4_if(gala_released, [1], [enable_debug=no], [enable_debug=yes])]) if test "x$enable_debug" = "xyes" ; then - VALAFLAGS="$VALAFLAGS -g" + VALAFLAGS_CORE="$VALAFLAGS_CORE -g" fi -GALA_CORE_VALAFLAGS="$VALAFLAGS $GALA_CORE_VALA_PKGS" +GALA_CORE_VALAFLAGS="$VALAFLAGS $VALAFLAGS_CORE $GALA_CORE_VALA_PKGS" AC_SUBST(GALA_CORE_VALAFLAGS) +GALA_DOCS_VALAFLAGS="$VALAFLAGS $GALA_CORE_VALA_PKGS" +AC_SUBST(GALA_DOCS_VALAFLAGS) + +# ----------------------------------------------------------- +# Additional build flags +# ----------------------------------------------------------- + +# Use RUNPATH instead of RPATH if needed +CFLAGS="$CFLAGS -Wl,--enable-new-dtags" + +# ----------------------------------------------------------- +# Documentation +# ----------------------------------------------------------- +VALADOC_MIN_VERSION=0.3.1 + +AC_ARG_ENABLE([docs], + AS_HELP_STRING([--enable-docs],[Enable documentation generation]), + [enable_docs=$enableval], [enable_docs=no]) +AM_CONDITIONAL([ENABLE_DOCS], [test "x$enable_docs" = "xyes"]) + +have_valadoc=no +if test "x$enable_docs" = "xyes"; then + # make sure the library is new enough and the program exists + PKG_CHECK_MODULES([VALADOC], [valadoc-1.0 >= $VALADOC_MIN_VERSION]) + AC_PATH_PROG([VALADOC], [valadoc], [:]) + AS_IF([test "$VALADOC" != :], have_valadoc=yes) +fi +AM_CONDITIONAL([HAVE_VALADOC], [test "x$have_valadoc" = "xyes"]) + +if test "x$enable_docs" = "xyes" -a "x$have_valadoc" != "xyes"; then + AC_MSG_ERROR([Doc building requested but valadoc not installed.]) +fi + # ----------------------------------------------------------- # Gettext @@ -209,6 +242,7 @@ AC_CONFIG_FILES([ Makefile src/Makefile lib/Makefile +docs/Makefile data/Makefile vapi/Makefile plugins/Makefile @@ -228,4 +262,6 @@ ${PACKAGE} ${VERSION} C Compiler Flags............: ${CFLAGS} Using Mutter................: ${MUTTER_API} + + Documentation...............: ${have_valadoc} " diff --git a/docs/Makefile.am b/docs/Makefile.am new file mode 100644 index 00000000..1ca975e0 --- /dev/null +++ b/docs/Makefile.am @@ -0,0 +1,73 @@ +include $(top_srcdir)/Makefile.common + +libgala_doc_files = \ + $(top_srcdir)/lib/Plugin.vala \ + $(top_srcdir)/lib/Utils.vala \ + $(top_srcdir)/lib/WindowManager.vala \ + $(NULL) + +gala_doc_files = \ + $(top_srcdir)/src/DBus.vala \ + $(top_srcdir)/src/DragDropAction.vala \ + $(top_srcdir)/src/InternalUtils.vala \ + $(top_srcdir)/src/Main.vala \ + $(top_srcdir)/src/PluginManager.vala \ + $(top_srcdir)/src/ScreenSaver.vala \ + $(top_srcdir)/src/Settings.vala \ + $(top_srcdir)/src/ShadowEffect.vala \ + $(top_srcdir)/src/TextShadowEffect.vala \ + $(top_srcdir)/src/WindowListener.vala \ + $(top_srcdir)/src/WindowManager.vala \ + $(top_srcdir)/src/WorkspaceManager.vala \ + $(top_srcdir)/src/Background/Background.vala \ + $(top_srcdir)/src/Background/BackgroundCache.vala \ + $(top_srcdir)/src/Background/BackgroundManager.vala \ + $(top_srcdir)/src/Background/SlideShow.vala \ + $(top_srcdir)/src/Background/SystemBackground.vala \ + $(top_srcdir)/src/Widgets/IconGroup.vala \ + $(top_srcdir)/src/Widgets/IconGroupContainer.vala \ + $(top_srcdir)/src/Widgets/MonitorClone.vala \ + $(top_srcdir)/src/Widgets/MultitaskingView.vala \ + $(top_srcdir)/src/Widgets/WindowClone.vala \ + $(top_srcdir)/src/Widgets/WindowCloneContainer.vala \ + $(top_srcdir)/src/Widgets/WindowOverview.vala \ + $(top_srcdir)/src/Widgets/WindowSwitcher.vala \ + $(top_srcdir)/src/Widgets/WorkspaceClone.vala \ + $(NULL) + +valadoc_flags_gala = \ + --force \ + --verbose \ + --package-name $(PACKAGE_NAME) \ + --package-version $(PACKAGE_VERSION) \ + $(GALA_DOCS_VALAFLAGS) \ + --driver "`$(VALAC) --version`" \ + --pkg config \ + --pkg cogl-fixes \ + --vapidir=$(top_builddir)/lib \ + --vapidir=$(top_srcdir)/vapi \ + $(NULL) + +#if HAVE_VALADOC + +html: $(libgala_doc_files) $(gala_doc_files) Makefile + $(AM_V_GEN)$(VALADOC) \ + -o gala/ \ + --doclet=html \ + --internal \ + $(valadoc_flags_gala) \ + $(filter %.vala,$^) + +libhtml: $(libgala_doc_files) Makefile + $(AM_V_GEN)$(VALADOC) \ + -o libgala/ \ + --doclet=html \ + $(valadoc_flags_gala) \ + $(filter %.vala,$^) + +#endif + +distclean-local: distclean-docs +distclean-docs: + rm -rf gala libgala + diff --git a/po/LINGUAS b/po/LINGUAS new file mode 100644 index 00000000..65eebb17 --- /dev/null +++ b/po/LINGUAS @@ -0,0 +1,62 @@ +# please keep this list sorted alphabetically +# +am +ar +az +be +bg +bs +ca +ckb +cs +da +de +el +en_CA +en_GB +eo +es +et +eu +fa +fi +fr +fr_CA +gl +he +hi +hr +hu +id +it +ja +ka +ko +ky +lb +lt +lv +ms +nb +nl +nn +om +pl +pt +pt_BR +ro +ru +si +sk +sl +sma +sr +sv +ta +th +tr +uk +vi +zh_CN +zh_HK +zh_TW diff --git a/po/POTFILES.in b/po/POTFILES.in index a213e7d5..02c1cfb2 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -1,2 +1 @@ -src/EndSessionDialog.vala src/WindowManager.vala diff --git a/po/POTFILES.skip b/po/POTFILES.skip index 3fb7c921..7fea1dbf 100644 --- a/po/POTFILES.skip +++ b/po/POTFILES.skip @@ -1,2 +1 @@ -src/EndSessionDialog.c src/WindowManager.c diff --git a/po/am.po b/po/am.po new file mode 100644 index 00000000..f32028df --- /dev/null +++ b/po/am.po @@ -0,0 +1,68 @@ +# Amharic translation for gala +# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 +# This file is distributed under the same license as the gala package. +# FIRST AUTHOR , 2014. +# +msgid "" +msgstr "" +"Project-Id-Version: gala\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-06-08 21:04+0000\n" +"Last-Translator: samson \n" +"Language-Team: Amharic \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "በእርግጥ መውጣት ይፈልጋሉ?" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "ይህ ሁሉንም የተከፈቱ መተግበሪያዎች ይዘጋል" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "መውጫ" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "በእርግጥ ማጥፋት ይፈልጋሉ?" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "ይህ ሁሉንም የተከፈቱ መተግበሪያዎች ይዘጋል እና ይህን አካል ያጠፋል" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "ማጥፊያ" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "እንደገና ማስጀመሪያ" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "መሰረዣ" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" + +#~ msgid "This will close any open app and turn off your device." +#~ msgstr "ይህ የተከፈቱ መተግበሪያዎች ይዘጋ እና ኮምፒዩተሩን ያጠፋል" diff --git a/po/ar.po b/po/ar.po new file mode 100644 index 00000000..ff8c3015 --- /dev/null +++ b/po/ar.po @@ -0,0 +1,66 @@ +# Arabic translation for noise +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the noise package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: noise\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-17 10:53+0000\n" +"Last-Translator: Mohammed Shammout \n" +"Language-Team: Arabic \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" +"Language: ar\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "إلغاء" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/az.po b/po/az.po new file mode 100644 index 00000000..fb09ce49 --- /dev/null +++ b/po/az.po @@ -0,0 +1,65 @@ +# Azerbaijani translation for noise +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the noise package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: noise\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-17 10:52+0000\n" +"Last-Translator: Emin Mastizada \n" +"Language-Team: Azerbaijani \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "Ləğv et" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/be.po b/po/be.po new file mode 100644 index 00000000..89dc8346 --- /dev/null +++ b/po/be.po @@ -0,0 +1,65 @@ +# Belarusian translation for noise +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the noise package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: noise\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-17 10:38+0000\n" +"Last-Translator: Yan Pavolny \n" +"Language-Team: Belarusian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/bg.po b/po/bg.po new file mode 100644 index 00000000..1c38925d --- /dev/null +++ b/po/bg.po @@ -0,0 +1,71 @@ +# Bulgarian translation for noise +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the noise package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: noise\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-07-03 14:41+0000\n" +"Last-Translator: stormbreaker \n" +"Language-Team: Bulgarian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" +"Language: bg\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "Уверени ли сте, че искате да излезете от потребител?" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "Това ще затвори всички отворени приложения." + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "Излизане" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "Уверени ли сте, че искате да изключите устройството?" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" +"Това ще затвори всички отворени приложения и ще изключи устройството." + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "Изключване" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "Рестартиране" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "Отказ" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "Наред ли е екрана?" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "Запази тези настройки" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "Възстанови предишните настройки" + +#~ msgid "This will close any open app and turn off your device." +#~ msgstr "" +#~ "Това ще затвори всяка отворена програма и ще изключи вашето устройството." diff --git a/po/bs.po b/po/bs.po new file mode 100644 index 00000000..1293b5a6 --- /dev/null +++ b/po/bs.po @@ -0,0 +1,65 @@ +# Bosnian translation for noise +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the noise package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: noise\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-17 10:44+0000\n" +"Last-Translator: Corentin Noël \n" +"Language-Team: Bosnian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/ca.po b/po/ca.po new file mode 100644 index 00000000..26f48e83 --- /dev/null +++ b/po/ca.po @@ -0,0 +1,66 @@ +# Catalan translation for beat-box +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the beat-box package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: beat-box\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-06-19 21:34+0000\n" +"Last-Translator: Alfredo Hernández \n" +"Language-Team: Catalan \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" +"Language: ca\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "Esteu segur que voleu sortir de la sessió?" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "Això tancarà totes les aplicacions obertes." + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "Surt de la sessió" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "Esteu segur que voleu aturar l'ordinador?" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "Això tancarà totes les aplicacions obertes i aturarà el dispositiu." + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "Atura" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "Reinicia" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "Cancel·la" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/ckb.po b/po/ckb.po new file mode 100644 index 00000000..a6282c7d --- /dev/null +++ b/po/ckb.po @@ -0,0 +1,65 @@ +# Kurdish (Sorani) translation for noise +# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 +# This file is distributed under the same license as the noise package. +# FIRST AUTHOR , 2014. +# +msgid "" +msgstr "" +"Project-Id-Version: noise\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-17 10:38+0000\n" +"Last-Translator: Corentin Noël \n" +"Language-Team: Kurdish (Sorani) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/cs.po b/po/cs.po new file mode 100644 index 00000000..c5fd857a --- /dev/null +++ b/po/cs.po @@ -0,0 +1,66 @@ +# Czech translation for beat-box +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the beat-box package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: beat-box\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-17 10:57+0000\n" +"Last-Translator: Marek Suchánek \n" +"Language-Team: Czech \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" +"Language: cs\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "Zrušit" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/da.po b/po/da.po new file mode 100644 index 00000000..f82d7485 --- /dev/null +++ b/po/da.po @@ -0,0 +1,66 @@ +# Danish translation for noise +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the noise package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: noise\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-17 10:57+0000\n" +"Last-Translator: Niels Fyhring \n" +"Language-Team: Danish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" +"Language: da\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "Annullér" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/de.po b/po/de.po new file mode 100644 index 00000000..1a7d9c22 --- /dev/null +++ b/po/de.po @@ -0,0 +1,71 @@ +# German translation for gala +# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 +# This file is distributed under the same license as the gala package. +# FIRST AUTHOR , 2014. +# +msgid "" +msgstr "" +"Project-Id-Version: gala\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-07-11 11:35+0000\n" +"Last-Translator: Phillip Sz \n" +"Language-Team: German \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "Sind Sie sicher, dass Sie sich abmelden wollen?" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "Dieses wird alle offenen Anwendungen schließen." + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "Abmelden" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "Sind Sie sicher, dass Sie herunterfahren wollen?" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" +"Dieses wird alle offenen Anwendungen schließen und das Gerät ausschalten." + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "Herunterfahren" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "Neustart" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "Abbrechen" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "Sieht der Bildschirm in Ordnung aus?" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "Diese Konfiguration speichern" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "Vorherige Konfiguration wiederherstellen" + +#~ msgid "This will close any open app and turn off your device." +#~ msgstr "" +#~ "Dadurch werden alle offenen Anwendungen geschlossen und Ihr Gerät " +#~ "heruntergefahren." diff --git a/po/el.po b/po/el.po new file mode 100644 index 00000000..5473a293 --- /dev/null +++ b/po/el.po @@ -0,0 +1,65 @@ +# Greek translation for noise +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the noise package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: noise\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-17 10:43+0000\n" +"Last-Translator: Corentin Noël \n" +"Language-Team: Greek \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "Ακύρωση" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/en_CA.po b/po/en_CA.po new file mode 100644 index 00000000..606f6deb --- /dev/null +++ b/po/en_CA.po @@ -0,0 +1,66 @@ +# English (Canada) translation for noise +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the noise package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: noise\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-17 10:47+0000\n" +"Last-Translator: Corentin Noël \n" +"Language-Team: English (Canada) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" +"Language: \n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "Cancel" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/en_GB.po b/po/en_GB.po new file mode 100644 index 00000000..4ba5fd2d --- /dev/null +++ b/po/en_GB.po @@ -0,0 +1,65 @@ +# English (United Kingdom) translation for beat-box +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the beat-box package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: beat-box\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-06-19 21:34+0000\n" +"Last-Translator: Alfredo Hernández \n" +"Language-Team: English (United Kingdom) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "Are you sure you want to log out?" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "This will close all open applications." + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "Log Out" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "Are you sure you want to shut down?" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "This will close all open applications and turn off this device." + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "Shut Down" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "Restart" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "Cancel" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/eo.po b/po/eo.po new file mode 100644 index 00000000..e2e30db2 --- /dev/null +++ b/po/eo.po @@ -0,0 +1,66 @@ +# Esperanto translation for beat-box +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the beat-box package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: beat-box\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-17 10:55+0000\n" +"Last-Translator: Corentin Noël \n" +"Language-Team: Esperanto \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" +"Language: eo\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/es.po b/po/es.po new file mode 100644 index 00000000..b8af7484 --- /dev/null +++ b/po/es.po @@ -0,0 +1,65 @@ +# Spanish translation for gala +# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 +# This file is distributed under the same license as the gala package. +# FIRST AUTHOR , 2014. +# +msgid "" +msgstr "" +"Project-Id-Version: gala\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-06-19 21:32+0000\n" +"Last-Translator: Christopher \n" +"Language-Team: Spanish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "¿Está seguro de que desea cerrar la sesión?" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "Se cerrarán todas las aplicaciones abiertas." + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "Cerrar sesión" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "¿Está seguro de que desea apagar el sistema?" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "Se cerrarán todas las aplicaciones y se apagará el dispositivo." + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "Apagar" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "Reiniciar" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "Cancelar" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/et.po b/po/et.po new file mode 100644 index 00000000..bd50cb03 --- /dev/null +++ b/po/et.po @@ -0,0 +1,69 @@ +# Estonian translation for noise +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the noise package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: noise\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-06-28 11:41+0000\n" +"Last-Translator: Kristjan Vool \n" +"Language-Team: Estonian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" +"Language: et\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "Oled sa kindel, et soovid välja logida?" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "Kõik avatud rakendused suletakse." + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "Logi välja" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "Oled sa kindel, et soovid välja lülitada?" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "Kõik avatud rakendused suletakse ja seade lülitatakse välja." + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "Lülita välja" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "Taaskäivita" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "Loobu" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "Kas ekraani pilt tundub korras olevat?" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "Kinnita praegune seadistus" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "Taasta eelmine seadistus" + +#~ msgid "This will close any open app and turn off your device." +#~ msgstr "Kõik avatud rakendused suletakse ning seade lülitatakse välja." diff --git a/po/eu.po b/po/eu.po new file mode 100644 index 00000000..d3ab8270 --- /dev/null +++ b/po/eu.po @@ -0,0 +1,66 @@ +# Basque translation for noise +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the noise package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: noise\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-17 10:58+0000\n" +"Last-Translator: Corentin Noël \n" +"Language-Team: Basque \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" +"Language: eu\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "Utzi" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/fa.po b/po/fa.po new file mode 100644 index 00000000..74db76a6 --- /dev/null +++ b/po/fa.po @@ -0,0 +1,66 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Mohammad Zali , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-17 10:44+0000\n" +"Last-Translator: reza abbasi \n" +"Language-Team: Persian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" +"Language: \n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "لغو" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/fi.po b/po/fi.po new file mode 100644 index 00000000..94d2bd5a --- /dev/null +++ b/po/fi.po @@ -0,0 +1,69 @@ +# Finnish translation for gala +# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 +# This file is distributed under the same license as the gala package. +# FIRST AUTHOR , 2014. +# +msgid "" +msgstr "" +"Project-Id-Version: gala\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-06-29 17:37+0000\n" +"Last-Translator: Jiri Grönroos \n" +"Language-Team: Finnish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "Haluatko varmasti kirjautua ulos?" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "Tämä sulkee kaikki avoinna olevat sovellukset." + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "Kirjaudu ulos" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "Haluatko varmasti sammuttaa tietokoneen?" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "Tämä sulkee kaikki avoinna olevat sovellukset ja sammuttaa laitteen." + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "Sammuta" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "Käynnistä uudelleen" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "Peru" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "Näyttääkö näyttö kelvolliselta?" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "Säilytä asetukset" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "Palauta aiemmat asetukset" + +#~ msgid "This will close any open app and turn off your device." +#~ msgstr "" +#~ "Kaikki avoinna olevat sovellukset suljetaan ja tietokone sammutetaan." diff --git a/po/fr.po b/po/fr.po new file mode 100644 index 00000000..36495fc0 --- /dev/null +++ b/po/fr.po @@ -0,0 +1,70 @@ +# French translation for gala +# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 +# This file is distributed under the same license as the gala package. +# FIRST AUTHOR , 2014. +# +msgid "" +msgstr "" +"Project-Id-Version: gala\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-07-11 17:36+0000\n" +"Last-Translator: Nikos \n" +"Language-Team: French \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "Voulez-vous vraiment fermer la session ?" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "Ceci fermera toutes les applications ouvertes." + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "Fermer la session" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "Voulez-vous vraiment éteindre l'ordinateur ?" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" +"Ceci fermera toutes les applications ouvertes et arrêtera cet ordinateur." + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "Éteindre" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "Redémarrer" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "Annuler" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "Est-ce que l'affichage est correct ?" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "Garder cette configuration" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "Restaurer la configuration précédente" + +#~ msgid "This will close any open app and turn off your device." +#~ msgstr "" +#~ "Ceci fermera toutes les applications en cours et éteindra l'ordinateur." diff --git a/po/fr_CA.po b/po/fr_CA.po new file mode 100644 index 00000000..fef4d099 --- /dev/null +++ b/po/fr_CA.po @@ -0,0 +1,66 @@ +# French (Canada) translation for noise +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the noise package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: noise\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-17 10:18+0000\n" +"Last-Translator: Corentin Noël \n" +"Language-Team: French (Canada) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" +"Language: \n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "Annuler" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/gala.pot b/po/gala.pot index 0dd01de2..896c10be 100644 --- a/po/gala.pot +++ b/po/gala.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-26 14:06+0200\n" +"POT-Creation-Date: 2014-07-28 13:31+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,49 +17,14 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: ../src/EndSessionDialog.vala:76 -msgid "Are you sure you want to Log Out?" -msgstr "" - -#: ../src/EndSessionDialog.vala:77 -msgid "This will close all open applications." -msgstr "" - -#: ../src/EndSessionDialog.vala:78 -msgid "Log Out" -msgstr "" - -#: ../src/EndSessionDialog.vala:83 -msgid "Are you sure you want to Shut Down?" -msgstr "" - -#: ../src/EndSessionDialog.vala:84 -msgid "This will close all open applications and turn off this device." -msgstr "" - -#: ../src/EndSessionDialog.vala:85 -msgid "Shut Down" -msgstr "" - -#. the indicator does not have a separate item for restart, that's -#. why we show both shutdown and restart for the restart action -#. (which is sent for shutdown as described above) -#: ../src/EndSessionDialog.vala:118 -msgid "Restart" -msgstr "" - -#: ../src/EndSessionDialog.vala:125 -msgid "Cancel" -msgstr "" - -#: ../src/WindowManager.vala:1107 +#: ../src/WindowManager.vala:1157 msgid "Does the display look OK?" msgstr "" -#: ../src/WindowManager.vala:1110 +#: ../src/WindowManager.vala:1160 msgid "Keep This Configuration" msgstr "" -#: ../src/WindowManager.vala:1111 +#: ../src/WindowManager.vala:1161 msgid "Restore Previous Configuration" msgstr "" diff --git a/po/gl.po b/po/gl.po new file mode 100644 index 00000000..61d704d4 --- /dev/null +++ b/po/gl.po @@ -0,0 +1,69 @@ +# Galician translation for noise +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the noise package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: noise\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-28 20:15+0000\n" +"Last-Translator: Miguel Anxo Bouzada \n" +"Language-Team: Galician \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" +"Language: gl\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "Confirma que quere saír?" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "Saír" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "Confirma que quere apagar o equipo?" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "Apagar" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "Reiniciar" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "Cancelar" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" + +#~ msgid "This will close any open app and turn off your device." +#~ msgstr "Isto pechará todos os aplicativos abertos e apagará o equipo." diff --git a/po/he.po b/po/he.po new file mode 100644 index 00000000..f9f2d690 --- /dev/null +++ b/po/he.po @@ -0,0 +1,61 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-17 10:41+0000\n" +"Last-Translator: Danny Damsky \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" +"Language: \n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "ביטול" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/hi.po b/po/hi.po new file mode 100644 index 00000000..fe34422a --- /dev/null +++ b/po/hi.po @@ -0,0 +1,66 @@ +# Hindi translation for beat-box +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the beat-box package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: beat-box\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-17 10:49+0000\n" +"Last-Translator: Corentin Noël \n" +"Language-Team: Hindi \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" +"Language: hi\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "रद्द करें" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/hr.po b/po/hr.po new file mode 100644 index 00000000..1147a585 --- /dev/null +++ b/po/hr.po @@ -0,0 +1,65 @@ +# Croatian translation for noise +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the noise package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: noise\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-17 10:47+0000\n" +"Last-Translator: zvacet \n" +"Language-Team: Croatian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/hu.po b/po/hu.po new file mode 100644 index 00000000..9d84fd31 --- /dev/null +++ b/po/hu.po @@ -0,0 +1,70 @@ +# Hungarian translation for noise +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the noise package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: noise\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-07-13 10:11+0000\n" +"Last-Translator: Mark Lutring \n" +"Language-Team: Hungarian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" +"Language: hu\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "Biztos, hogy ki akar jelentkezni?" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "Kijelentkezés" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "Biztos, hogy le akarja állítani a gépet?" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "Leállítás" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "Újraindítás" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "Mégsem" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "Megfelelően jelenik meg a kép?" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "Beállítások megtartása" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "Az előző beállítások visszaállítása" + +#~ msgid "This will close any open app and turn off your device." +#~ msgstr "" +#~ "Ez ki fog lépni minden megnyitott alkalmazásból, és kikapcsolja készülékét." diff --git a/po/id.po b/po/id.po new file mode 100644 index 00000000..f7b46752 --- /dev/null +++ b/po/id.po @@ -0,0 +1,66 @@ +# Indonesian translation for beat-box +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the beat-box package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: beat-box\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-17 10:58+0000\n" +"Last-Translator: Corentin Noël \n" +"Language-Team: Indonesian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" +"Language: id\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "Batal" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/it.po b/po/it.po new file mode 100644 index 00000000..05c992ef --- /dev/null +++ b/po/it.po @@ -0,0 +1,65 @@ +# Italian translation for beat-box +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the beat-box package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: beat-box\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-07-18 08:29+0000\n" +"Last-Translator: Matteo Formenti \n" +"Language-Team: Italian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "Sei sicuro di voler uscire?" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "Questo chiuderà tutti i programmi aperti." + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "Termina sessione" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "Sicuro di voler spegnere?" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "Questo chiuderà tutti i programmi aperti e spegnerà il dispositivo." + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "Arresta" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "Riavvia" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "Annulla" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "La visualizzazione appare corretta?" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "Mantieni questa configurazione" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "Ripristina la configurazione precedente" diff --git a/po/ja.po b/po/ja.po new file mode 100644 index 00000000..f4a85ce0 --- /dev/null +++ b/po/ja.po @@ -0,0 +1,66 @@ +# Japanese translation for noise +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the noise package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: noise\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-17 10:24+0000\n" +"Last-Translator: Corentin Noël \n" +"Language-Team: Japanese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" +"Language: ja\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "キャンセル" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/ka.po b/po/ka.po new file mode 100644 index 00000000..dd862152 --- /dev/null +++ b/po/ka.po @@ -0,0 +1,65 @@ +# Georgian translation for noise +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the noise package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: noise\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-17 10:53+0000\n" +"Last-Translator: Beqa Arabuli \n" +"Language-Team: Georgian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/ko.po b/po/ko.po new file mode 100644 index 00000000..b5771590 --- /dev/null +++ b/po/ko.po @@ -0,0 +1,65 @@ +# Korean translation for noise +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the noise package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: noise\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-17 10:56+0000\n" +"Last-Translator: Corentin Noël \n" +"Language-Team: Korean \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "취소" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/ky.po b/po/ky.po new file mode 100644 index 00000000..ec21a1ac --- /dev/null +++ b/po/ky.po @@ -0,0 +1,65 @@ +# Kirghiz translation for noise +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the noise package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: noise\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-17 10:49+0000\n" +"Last-Translator: Corentin Noël \n" +"Language-Team: Kirghiz \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/lb.po b/po/lb.po new file mode 100644 index 00000000..11f5b999 --- /dev/null +++ b/po/lb.po @@ -0,0 +1,65 @@ +# Luxembourgish translation for noise +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the noise package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: noise\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-17 10:43+0000\n" +"Last-Translator: Julien Spautz \n" +"Language-Team: Luxembourgish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "Ofbriechen" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/lt.po b/po/lt.po new file mode 100644 index 00000000..0276375a --- /dev/null +++ b/po/lt.po @@ -0,0 +1,65 @@ +# Lithuanian translation for noise +# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 +# This file is distributed under the same license as the noise package. +# FIRST AUTHOR , 2014. +# +msgid "" +msgstr "" +"Project-Id-Version: noise\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-17 10:41+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Lithuanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/lv.po b/po/lv.po new file mode 100644 index 00000000..3d34ac62 --- /dev/null +++ b/po/lv.po @@ -0,0 +1,65 @@ +# Latvian translation for noise +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the noise package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: noise\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-06-28 01:54+0000\n" +"Last-Translator: Matiss Roberts Treinis \n" +"Language-Team: Latvian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "Vai tiešām vēlies beigt sesiju?" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "Šī darbība aizvērs visas atvērtās aplikācijas." + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "Beigt darbu" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "Vai tiešām vēlies izslēgt datoru?" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "Šī darbība aizvērs visas atvērtās aplikācijas un izslēgs iekārtu." + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "Beigt darbu" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "Pārstartēt" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "Atcelt" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "Vai ekrāns izskatās labi?" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "Paturēt šos iestatījumus" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "Atjaunot iepriekšējos iestatījumus" diff --git a/po/ms.po b/po/ms.po new file mode 100644 index 00000000..08070c50 --- /dev/null +++ b/po/ms.po @@ -0,0 +1,69 @@ +# Malay translation for noise +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the noise package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: noise\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-07-02 11:21+0000\n" +"Last-Translator: abuyop \n" +"Language-Team: Malay \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "Anda pasti mahu Mendaftar Keluar?" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "Ini akan menutup semua aplikasi yang dibuka." + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "Daftar Keluar" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "Anda pasti mahu Matikan?" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "Ini akan menutup semua aplikasi yang dibuka dan matikan peranti ini." + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "Matikan" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "Mula Semula" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "Batal" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "Adakah paparan kelihatan baik?" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "Kekalkan Konfigurasi Ini" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "Pulih Konfigurasi Terdahulu" + +#~ msgid "This will close any open app and turn off your device." +#~ msgstr "" +#~ "Ia akan menutup mana-mana apl yang telah dibuka dan matikan peranti anda." diff --git a/po/nb.po b/po/nb.po new file mode 100644 index 00000000..6fdcaeb8 --- /dev/null +++ b/po/nb.po @@ -0,0 +1,69 @@ +# Norwegian Bokmal translation for noise +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the noise package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: noise\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-06-22 00:45+0000\n" +"Last-Translator: kingu \n" +"Language-Team: Norwegian Bokmal \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" +"Language: nb\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "Bekreft utlogging." + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "Dette vil lukke alle åpne programmer." + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "Logg ut" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "Bekreft avstengning." + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "Dette vil lukke alle åpne programmer og skru av enheten." + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "Slå av maskinen" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "Omstart" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "Avbryt" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" + +#~ msgid "This will close any open app and turn off your device." +#~ msgstr "Dette lukker alle åpne program og skrur av enheten." diff --git a/po/nl.po b/po/nl.po new file mode 100644 index 00000000..baa17de7 --- /dev/null +++ b/po/nl.po @@ -0,0 +1,68 @@ +# Dutch translation for gala +# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 +# This file is distributed under the same license as the gala package. +# FIRST AUTHOR , 2014. +# +msgid "" +msgstr "" +"Project-Id-Version: gala\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-11 17:51+0000\n" +"Last-Translator: Thomas Berends \n" +"Language-Team: Dutch \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "Weet je zeker dat je wilt uitloggen?" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "Uitloggen" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "Weet je zeker dat je wilt afsluiten?" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "Afsluiten" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "Opnieuw opstarten" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "Annuleren" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" + +#~ msgid "This will close any open app and turn off your device." +#~ msgstr "Dit zal alle open apps sluiten en je apparaat uitzetten." diff --git a/po/nn.po b/po/nn.po new file mode 100644 index 00000000..c747d6a5 --- /dev/null +++ b/po/nn.po @@ -0,0 +1,66 @@ +# Norwegian Nynorsk translation for beat-box +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the beat-box package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: beat-box\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-17 10:36+0000\n" +"Last-Translator: Corentin Noël \n" +"Language-Team: Norwegian Nynorsk \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" +"Language: nn\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "Avbryt" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/om.po b/po/om.po new file mode 100644 index 00000000..c8b51681 --- /dev/null +++ b/po/om.po @@ -0,0 +1,68 @@ +# Oromo translation for gala +# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 +# This file is distributed under the same license as the gala package. +# FIRST AUTHOR , 2014. +# +msgid "" +msgstr "" +"Project-Id-Version: gala\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-13 09:59+0000\n" +"Last-Translator: gudeta \n" +"Language-Team: Oromo \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "Dhuguma bahuu barbaaddaa?" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "Bahi" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "Dhuguma dhaamsuu barbaaddaa?" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "Dhaamsi" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "Lamkaasi" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "Dhiisi" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" + +#~ msgid "This will close any open app and turn off your device." +#~ msgstr "Kun dhimbaaftota banaman cufeetu kompiyuutara dhaamsa" diff --git a/po/pl.po b/po/pl.po new file mode 100644 index 00000000..9a8e370a --- /dev/null +++ b/po/pl.po @@ -0,0 +1,69 @@ +# Polish translation for gala +# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 +# This file is distributed under the same license as the gala package. +# FIRST AUTHOR , 2014. +# +msgid "" +msgstr "" +"Project-Id-Version: gala\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-11 20:45+0000\n" +"Last-Translator: Piotr Sokół \n" +"Language-Team: Polish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "Wyloguj" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "Wyłączyć komputer?" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "Wyłącz" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "Uruchom ponownie" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "Anuluj" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" + +#~ msgid "This will close any open app and turn off your device." +#~ msgstr "" +#~ "Wszystkie otwarte programy zostaną zakończone a urządzenie wyłączone." diff --git a/po/pt.po b/po/pt.po new file mode 100644 index 00000000..76387cb2 --- /dev/null +++ b/po/pt.po @@ -0,0 +1,68 @@ +# Portuguese translation for gala +# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 +# This file is distributed under the same license as the gala package. +# FIRST AUTHOR , 2014. +# +msgid "" +msgstr "" +"Project-Id-Version: gala\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-06-26 14:57+0000\n" +"Last-Translator: Pedro Monteiro \n" +"Language-Team: Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "Tem a certeza que pretende sair da sessão?" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "Todas as aplicações serão terminadas." + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "Sair" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "Tem a certeza que pretende desligar?" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "Todas as aplicações serão terminadas e o dispositivo será desligado." + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "Desligar" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "Reiniciar" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "Cancelar" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "O ecrã está bem assim?" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "Manter Esta Configuração" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "Restaurar Configuração Anterior" + +#~ msgid "This will close any open app and turn off your device." +#~ msgstr "Irá fechar todas as aplicações abertas e desligar o computador." diff --git a/po/pt_BR.po b/po/pt_BR.po new file mode 100644 index 00000000..9a1d58e0 --- /dev/null +++ b/po/pt_BR.po @@ -0,0 +1,65 @@ +# Brazilian Portuguese translation for beat-box +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the beat-box package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: beat-box\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-07-10 00:04+0000\n" +"Last-Translator: Leonardo Lemos \n" +"Language-Team: Brazilian Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "Você tem certeza de que deseja sair?" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "Isso vai fechar todos os aplicativos." + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "Sair" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "Você tem certeza de que deseja desligar?" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "Isso vai fechar todos os aplicativos e desligar este dispositivo." + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "Desligar" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "Reiniciar" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "Cancelar" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "O vídeo está bom?" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "Manter essa configuração" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "Restaurar configuração anterior" diff --git a/po/ro.po b/po/ro.po new file mode 100644 index 00000000..0186c11d --- /dev/null +++ b/po/ro.po @@ -0,0 +1,66 @@ +# Romanian translation for beat-box +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the beat-box package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: beat-box\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-17 10:49+0000\n" +"Last-Translator: Corentin Noël \n" +"Language-Team: Romanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" +"Language: ro\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "Anulează" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/ru.po b/po/ru.po new file mode 100644 index 00000000..cdf1dff1 --- /dev/null +++ b/po/ru.po @@ -0,0 +1,65 @@ +# Russian translation for beat-box +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the beat-box package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: beat-box\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-17 10:54+0000\n" +"Last-Translator: Corentin Noël \n" +"Language-Team: Russian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "Отмена" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/si.po b/po/si.po new file mode 100644 index 00000000..6dda90d9 --- /dev/null +++ b/po/si.po @@ -0,0 +1,66 @@ +# Sinhalese translation for beat-box +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the beat-box package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: beat-box\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-17 10:37+0000\n" +"Last-Translator: Yasith Vidanaarachchi \n" +"Language-Team: Sinhalese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" +"Language: \n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/sk.po b/po/sk.po new file mode 100644 index 00000000..f2139ba7 --- /dev/null +++ b/po/sk.po @@ -0,0 +1,68 @@ +# Slovak translation for noise +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the noise package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: noise\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-06-28 15:31+0000\n" +"Last-Translator: Milan Slovák \n" +"Language-Team: Slovak \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "Skutočne sa chcete odhlásiť?" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "Týmto ukončíte všetky otvorené aplikácie." + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "Odhlásiť sa" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "Skutočne chcete vypnúť?" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "Týmto ukončíte všetky otvorené aplikácie a vypnete zariadenie." + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "Vypnúť" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "Reštartovať" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "Zrušiť" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "Je zobrazenie na monitore v poriadku?" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "Ponechať toto nastavenie" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "Obnoviť pôvodné nastavenie" + +#~ msgid "This will close any open app and turn off your device." +#~ msgstr "Týmto zatvoríte všetky otvorené aplikácie a vypnete zariadenie." diff --git a/po/sl.po b/po/sl.po new file mode 100644 index 00000000..86d4b075 --- /dev/null +++ b/po/sl.po @@ -0,0 +1,66 @@ +# Slovenian translation for noise +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the noise package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: noise\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-17 10:51+0000\n" +"Last-Translator: Corentin Noël \n" +"Language-Team: Slovenian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" +"Language: sl\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "Prekliči" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/sma.po b/po/sma.po new file mode 100644 index 00000000..14374506 --- /dev/null +++ b/po/sma.po @@ -0,0 +1,66 @@ +# Southern Sami translation for noise +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the noise package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: noise\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-17 10:48+0000\n" +"Last-Translator: Corentin Noël \n" +"Language-Team: Southern Sami \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" +"Language: sma\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/sr.po b/po/sr.po new file mode 100644 index 00000000..077751a9 --- /dev/null +++ b/po/sr.po @@ -0,0 +1,65 @@ +# Serbian translation for noise +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the noise package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: noise\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-17 10:55+0000\n" +"Last-Translator: Саша Петровић \n" +"Language-Team: Serbian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "Откажи" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/sv.po b/po/sv.po new file mode 100644 index 00000000..a845d093 --- /dev/null +++ b/po/sv.po @@ -0,0 +1,66 @@ +# Swedish translation for beat-box +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the beat-box package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: beat-box\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-07-02 07:25+0000\n" +"Last-Translator: Zahirovic Mensur \n" +"Language-Team: Swedish\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" +"X-Poedit-Language: Swedish\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "Är du säker att du vill logga ut?" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "Detta kommer att stänga alla öppna program" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "Logga ut" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "Är du säker att du vill stänga av?" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "Detta kommer stänga alla öppna program och stänga av denna enheten." + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "Stäng av" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "Starta om" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "Avbryt" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "Ser skärmen bra ut?" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "Behåll denna konfiguration" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "Återställ föregående konfiguration" diff --git a/po/ta.po b/po/ta.po new file mode 100644 index 00000000..2efa29fc --- /dev/null +++ b/po/ta.po @@ -0,0 +1,65 @@ +# Tamil translation for noise +# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 +# This file is distributed under the same license as the noise package. +# FIRST AUTHOR , 2014. +# +msgid "" +msgstr "" +"Project-Id-Version: noise\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-17 10:54+0000\n" +"Last-Translator: SyedKhaleel Jageer \n" +"Language-Team: Tamil \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/th.po b/po/th.po new file mode 100644 index 00000000..358af662 --- /dev/null +++ b/po/th.po @@ -0,0 +1,65 @@ +# Thai translation for noise +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the noise package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: noise\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-17 10:55+0000\n" +"Last-Translator: siwakorn \n" +"Language-Team: Thai \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/tr.po b/po/tr.po new file mode 100644 index 00000000..368f17a5 --- /dev/null +++ b/po/tr.po @@ -0,0 +1,66 @@ +# Turkish translation for beat-box +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the beat-box package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: beat-box\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-17 10:48+0000\n" +"Last-Translator: Sadık Atalay \n" +"Language-Team: Turkish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" +"Language: tr\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "Vazgeç" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/uk.po b/po/uk.po new file mode 100644 index 00000000..06206f58 --- /dev/null +++ b/po/uk.po @@ -0,0 +1,66 @@ +# Ukrainian translation for beat-box +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the beat-box package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: beat-box\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-17 10:38+0000\n" +"Last-Translator: Mozila \n" +"Language-Team: Ukrainian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" +"Language: uk\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "Скасувати" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/vi.po b/po/vi.po new file mode 100644 index 00000000..72c82feb --- /dev/null +++ b/po/vi.po @@ -0,0 +1,66 @@ +# Vietnamese translation for beat-box +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the beat-box package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: beat-box\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-17 10:37+0000\n" +"Last-Translator: Minh Danh \n" +"Language-Team: Vietnamese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" +"Language: vi\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po new file mode 100644 index 00000000..90599bb9 --- /dev/null +++ b/po/zh_CN.po @@ -0,0 +1,68 @@ +# Chinese (Simplified) translation for noise +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the noise package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: noise\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-06-04 05:59+0000\n" +"Last-Translator: colindemian \n" +"Language-Team: Chinese (Simplified) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "确定要注销吗?" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "这将会关闭所有打开的程序。" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "注销" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "确定要关机吗?" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "这将会关闭所有打开的程序并关闭设备。" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "关机" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "重启" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "取消" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" + +#~ msgid "This will close any open app and turn off your device." +#~ msgstr "这会关闭所有正在运行的程序并关闭您的设备。" diff --git a/po/zh_HK.po b/po/zh_HK.po new file mode 100644 index 00000000..0dd38703 --- /dev/null +++ b/po/zh_HK.po @@ -0,0 +1,66 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-04-17 10:43+0000\n" +"Last-Translator: zypeh \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" +"Language: \n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/po/zh_TW.po b/po/zh_TW.po new file mode 100644 index 00000000..d63235ed --- /dev/null +++ b/po/zh_TW.po @@ -0,0 +1,66 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-07-20 08:32+0000\n" +"PO-Revision-Date: 2014-06-22 12:04+0000\n" +"Last-Translator: Cheng-Chia Tseng \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-07-24 05:12+0000\n" +"X-Generator: Launchpad (build 17114)\n" +"Language: \n" + +#: ../src/EndSessionDialog.vala:76 +msgid "Are you sure you want to Log Out?" +msgstr "您確定要登出?" + +#: ../src/EndSessionDialog.vala:77 +msgid "This will close all open applications." +msgstr "這會關閉所有開啟的應用程式。" + +#: ../src/EndSessionDialog.vala:78 +msgid "Log Out" +msgstr "登出" + +#: ../src/EndSessionDialog.vala:83 +msgid "Are you sure you want to Shut Down?" +msgstr "您確定要關機?" + +#: ../src/EndSessionDialog.vala:84 +msgid "This will close all open applications and turn off this device." +msgstr "這會關閉所有開啟的應用程式,並關閉本機器。" + +#: ../src/EndSessionDialog.vala:85 +msgid "Shut Down" +msgstr "關機" + +#. the indicator does not have a separate item for restart, that's +#. why we show both shutdown and restart for the restart action +#. (which is sent for shutdown as described above) +#: ../src/EndSessionDialog.vala:118 +msgid "Restart" +msgstr "重新啟動" + +#: ../src/EndSessionDialog.vala:125 +msgid "Cancel" +msgstr "取消" + +#: ../src/WindowManager.vala:1158 +msgid "Does the display look OK?" +msgstr "" + +#: ../src/WindowManager.vala:1161 +msgid "Keep This Configuration" +msgstr "" + +#: ../src/WindowManager.vala:1162 +msgid "Restore Previous Configuration" +msgstr "" diff --git a/src/EndSessionDialog.vala b/src/EndSessionDialog.vala deleted file mode 100644 index de27b85f..00000000 --- a/src/EndSessionDialog.vala +++ /dev/null @@ -1,273 +0,0 @@ -// -// Copyright (C) 2014 Tom Beckmann -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, see . -// - -// docs taken from unity indicator-session's -// src/backend-dbus/org.gnome.SessionManager.EndSessionDialog.xml - -namespace Gala -{ - enum EndSessionDialogType { - LOGOUT = 0, - SHUTDOWN = 1, - RESTART = 2 - } - - /** - * Private class wrapping most of the Gtk part of this dialog - */ - class Dialog : Gtk.Dialog - { - /** - * Confirm that logout has been clicked - */ - public signal void confirmed_logout (); - - /** - * Confirm that reboot has been clicked - */ - public signal void confirmed_reboot (); - - /** - * Confirm that shutdown has been clicked - */ - public signal void confirmed_shutdown (); - - /** - * Type of the dialog. See constructor for more info. - */ - public EndSessionDialogType dialog_type { get; construct; } - - /** - * Creates a new shutdown dialog - * - * @param type Set the type of this dialog. 0 creates a logout one, - * 1 creates a shutdown one and 2 will create a combined - * shutdown/reboot dialog. - */ - public Dialog (EndSessionDialogType type) - { - Object (type: Gtk.WindowType.POPUP, dialog_type: type); - } - - construct - { - string icon_name, heading_text, button_text, content_text; - - // the restart type is currently used by the indicator for what is - // labelled shutdown because of unity's implementation of it - // apparently. So we got to adjust to that until they fix this. - switch (dialog_type) { - case EndSessionDialogType.LOGOUT: - icon_name = "system-log-out"; - heading_text = _("Are you sure you want to Log Out?"); - content_text = _("This will close all open applications."); - button_text = _("Log Out"); - break; - case EndSessionDialogType.SHUTDOWN: - case EndSessionDialogType.RESTART: - icon_name = "system-shutdown"; - heading_text = _("Are you sure you want to Shut Down?"); - content_text = _("This will close all open applications and turn off this device."); - button_text = _("Shut Down"); - break; - /*case EndSessionDialogType.RESTART: - icon_name = "system-reboot"; - heading_text = _("Are you sure you want to Restart?"); - content_text = _("This will close all open applications."); - button_text = _("Restart"); - break;*/ - default: - warn_if_reached (); - break; - } - - set_position (Gtk.WindowPosition.CENTER_ALWAYS); - - var heading = new Gtk.Label ("" + - heading_text + ""); - heading.get_style_context ().add_class ("larger"); - heading.use_markup = true; - heading.xalign = 0; - - var grid = new Gtk.Grid (); - grid.column_spacing = 12; - grid.row_spacing = 12; - grid.margin_left = grid.margin_right = grid.margin_bottom = 12; - grid.attach (new Gtk.Image.from_icon_name (icon_name, Gtk.IconSize.DIALOG), 0, 0, 1, 2); - grid.attach (heading, 1, 0, 1, 1); - grid.attach (new Gtk.Label (content_text), 1, 1, 1, 1); - - // the indicator does not have a separate item for restart, that's - // why we show both shutdown and restart for the restart action - // (which is sent for shutdown as described above) - if (dialog_type == EndSessionDialogType.RESTART) { - var confirm_restart = add_button (_("Restart"), Gtk.ResponseType.OK) as Gtk.Button; - confirm_restart.clicked.connect (() => { - confirmed_reboot (); - destroy (); - }); - } - - var cancel = add_button (_("Cancel"), Gtk.ResponseType.CANCEL) as Gtk.Button; - cancel.clicked.connect (() => { destroy (); }); - - var confirm = add_button (button_text, Gtk.ResponseType.OK) as Gtk.Button; - confirm.get_style_context ().add_class ("destructive-action"); - confirm.clicked.connect (() => { - if (dialog_type == EndSessionDialogType.RESTART - || dialog_type == EndSessionDialogType.SHUTDOWN) - confirmed_shutdown (); - else - confirmed_logout (); - - destroy (); - }); - set_default (confirm); - - get_content_area ().add (grid); - - var action_area = get_action_area (); - action_area.margin_right = 6; - action_area.margin_bottom = 6; - } - - public override void map () - { - base.map (); - - Gdk.pointer_grab (get_window (), true, Gdk.EventMask.BUTTON_PRESS_MASK - | Gdk.EventMask.BUTTON_RELEASE_MASK - | Gdk.EventMask.POINTER_MOTION_MASK, - null, null, 0); - Gdk.keyboard_grab (get_window (), true, 0); - } - - public override void destroy () - { - Gdk.pointer_ungrab (0); - Gdk.keyboard_ungrab (0); - - base.destroy (); - } - } - - [DBus (name = "org.gnome.SessionManager.EndSessionDialog")] - public class EndSessionDialog : Clutter.Actor - { - /** - * Owns the Unity DBus and registers an instance of the EndSessionDialog - * - * @param wm The window manager - */ - [DBus (visible = false)] - public static void register (WindowManager wm) - { - Bus.own_name (BusType.SESSION, "com.canonical.Unity", - BusNameOwnerFlags.REPLACE, (connection) => { - connection.register_object ("/org/gnome/SessionManager/EndSessionDialog", - new EndSessionDialog (wm)); - }, - () => { }, - () => { warning ("Could not acquire Unity bus."); }); - } - - /** - * Confirm that logout has been clicked - */ - public signal void confirmed_logout (); - - /** - * Confirm that reboot has been clicked - */ - public signal void confirmed_reboot (); - - /** - * Confirm that shutdown has been clicked - */ - public signal void confirmed_shutdown (); - - /** - * The dialog has been cancelled - */ - public signal void canceled (); - - /** - * The dialog has been closed - */ - public signal void closed (); - - [DBus (visible = false)] - public WindowManager wm { get; construct; } - - public EndSessionDialog (WindowManager wm) - { - Object (wm: wm); - } - - construct - { - background_color = { 0, 0, 0, 255 }; - opacity = 0; - - add_constraint (new Clutter.BindConstraint (wm.stage, Clutter.BindCoordinate.SIZE, 0)); - } - - /** - * This function opens a dialog which asks the user for confirmation - * a logout, poweroff or reboot action. The dialog has a timeout - * after which the action is automatically taken, and it should show - * the inhibitors to the user. - * - * @param type The type of dialog to show. - * 0 for logout, 1 for shutdown, 2 for restart. - * @param timestamp Timestamp of the user-initiated event which - * triggered the call, or 0 if the call was not - * triggered by an event. - * @param seconds_to_stay_open The number of seconds which the dialog should - * stay open before automatic action is taken. - * @param inhibitor_object_paths The object paths of all inhibitors that - * are registered for the action. - */ - public void open (uint type, uint timestamp, uint seconds_to_stay_open, - ObjectPath[] inhibitor_object_paths) throws IOError - { - // note on the implementation: the unity indicator currently does not use - // the seconds_to_stay_open and inhibitor_object_paths parameters, so we - // ignore them here for now as well. - - if (type > 2) - throw new IOError.INVALID_ARGUMENT ("Invalid type requested"); - - wm.ui_group.insert_child_below (this, wm.top_window_group); - - animate (Clutter.AnimationMode.EASE_OUT_QUAD, 600, opacity: 80); - - var dialog = new Dialog ((EndSessionDialogType) type); - dialog.show_all (); - dialog.destroy.connect (() => { - animate (Clutter.AnimationMode.EASE_OUT_QUAD, 400, opacity: 0) - .completed.connect (() => { wm.ui_group.remove_child (this); }); - closed (); - }); - dialog.confirmed_logout.connect (() => { confirmed_logout (); }); - dialog.confirmed_shutdown.connect (() => { confirmed_shutdown (); }); - dialog.confirmed_reboot.connect (() => { confirmed_reboot (); }); - } - } -} - - diff --git a/src/InternalUtils.vala b/src/InternalUtils.vala index 874a4e85..a39686a1 100644 --- a/src/InternalUtils.vala +++ b/src/InternalUtils.vala @@ -177,10 +177,8 @@ namespace Gala workspace_manager.cleanup (); } - /** - * Code ported from KWin present windows effect - * https://projects.kde.org/projects/kde/kde-workspace/repository/revisions/master/entry/kwin/effects/presentwindows/presentwindows.cpp - **/ + // Code ported from KWin present windows effect + // https://projects.kde.org/projects/kde/kde-workspace/repository/revisions/master/entry/kwin/effects/presentwindows/presentwindows.cpp // constants, mainly for natural expo const int GAPS = 10; diff --git a/src/Makefile.am b/src/Makefile.am index 339e2cbc..d4ad0eb6 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -33,7 +33,6 @@ gala_LDADD = \ gala_VALASOURCES = \ DBus.vala \ DragDropAction.vala \ - EndSessionDialog.vala \ InternalUtils.vala \ Main.vala \ PluginManager.vala \ diff --git a/src/Widgets/IconGroupContainer.vala b/src/Widgets/IconGroupContainer.vala index 9000abfd..29da17a8 100644 --- a/src/Widgets/IconGroupContainer.vala +++ b/src/Widgets/IconGroupContainer.vala @@ -192,6 +192,8 @@ namespace Gala width += GROUP_WIDTH; } + width += SPACING; + return width; } diff --git a/src/Widgets/WindowClone.vala b/src/Widgets/WindowClone.vala index 1f95559c..d73a95ff 100644 --- a/src/Widgets/WindowClone.vala +++ b/src/Widgets/WindowClone.vala @@ -399,14 +399,14 @@ namespace Gala close_button.save_easing_state (); close_button.set_easing_duration (0); - close_button.y = -close_button.height * 0.25f; + close_button.y = -close_button.height * 0.33f; switch (pos) { case Granite.CloseButtonPosition.RIGHT: - close_button.x = dest_width + close_button.width * 0.25f; + close_button.x = dest_width - close_button.width * 0.5f; break; case Granite.CloseButtonPosition.LEFT: - close_button.x = -close_button.width * 0.25f; + close_button.x = -close_button.width * 0.5f; break; } close_button.restore_easing_state (); diff --git a/src/WindowManager.vala b/src/WindowManager.vala index 32410b8a..28f6c2bc 100644 --- a/src/WindowManager.vala +++ b/src/WindowManager.vala @@ -72,7 +72,6 @@ namespace Gala var screen = get_screen (); DBus.init (this); - EndSessionDialog.register (this); BackgroundCache.init (screen); WindowListener.init (screen); diff --git a/vapi/libmutter.vapi b/vapi/libmutter.vapi index 55e746f2..eb280e93 100644 --- a/vapi/libmutter.vapi +++ b/vapi/libmutter.vapi @@ -460,6 +460,10 @@ namespace Meta { public signal bool modifiers_accelerator_activated (); #endif public signal void overlay_key (); +#if HAS_MUTTER314 + public signal bool restart (); + public signal bool show_restart_message (string? message); +#endif public signal void window_created (Meta.Window object); public signal void window_demands_attention (Meta.Window object); public signal void window_marked_urgent (Meta.Window object); @@ -811,6 +815,9 @@ namespace Meta { #endif public bool is_ancestor_of_transient (Meta.Window transient); public bool is_attached_dialog (); +#if !HAS_MUTTER314 + public bool is_client_decorated (); +#endif public bool is_fullscreen (); public bool is_hidden (); #if !HAS_MUTTER312 @@ -1656,6 +1663,8 @@ namespace Meta { [CCode (cheader_filename = "meta/main.h")] public static void init (); #if HAS_MUTTER314 + [CCode (cheader_filename = "meta/main.h")] + public static bool is_restart (); [CCode (cheader_filename = "meta/main.h")] public static bool is_wayland_compositor (); #endif @@ -1663,6 +1672,10 @@ namespace Meta { public static void quit (Meta.ExitCode code); [CCode (cheader_filename = "meta/main.h")] public static void register_with_session (); +#if HAS_MUTTER314 + [CCode (cheader_filename = "meta/main.h")] + public static void restart (string message); +#endif [CCode (cheader_filename = "meta/main.h")] public static int run (); [CCode (cheader_filename = "meta/main.h")]