Merge in trunk

This commit is contained in:
Tom Beckmann 2014-08-03 06:51:13 -05:00 committed by Cody Garver
commit 6c691f48bc
75 changed files with 4187 additions and 329 deletions

View File

@ -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

View File

@ -5,6 +5,7 @@ SUBDIRS = \
lib \
plugins \
src \
docs \
po \
vapi \
$(NULL)

View File

@ -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}
"

73
docs/Makefile.am Normal file
View File

@ -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

62
po/LINGUAS Normal file
View File

@ -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

View File

@ -1,2 +1 @@
src/EndSessionDialog.vala
src/WindowManager.vala

View File

@ -1,2 +1 @@
src/EndSessionDialog.c
src/WindowManager.c

68
po/am.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 2014.
#
msgid ""
msgstr ""
"Project-Id-Version: gala\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2014-07-20 08:32+0000\n"
"PO-Revision-Date: 2014-06-08 21:04+0000\n"
"Last-Translator: samson <Unknown>\n"
"Language-Team: Amharic <am@li.org>\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 "ይህ የተከፈቱ መተግበሪያዎች ይዘጋ እና ኮምፒዩተሩን ያጠፋል"

66
po/ar.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 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 <fdsmohammed@gmail.com>\n"
"Language-Team: Arabic <ar@li.org>\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 ""

65
po/az.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 2013.
#
msgid ""
msgstr ""
"Project-Id-Version: noise\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <emin25@ovi.com>\n"
"Language-Team: Azerbaijani <az@li.org>\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 ""

65
po/be.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 2013.
#
msgid ""
msgstr ""
"Project-Id-Version: noise\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <jan.pavolny@gmail.com>\n"
"Language-Team: Belarusian <be@li.org>\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 ""

71
po/bg.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 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 <Unknown>\n"
"Language-Team: Bulgarian <bg@li.org>\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 ""
#~ "Това ще затвори всяка отворена програма и ще изключи вашето устройството."

65
po/bs.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 2013.
#
msgid ""
msgstr ""
"Project-Id-Version: noise\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <corentin@elementaryos.org>\n"
"Language-Team: Bosnian <bs@li.org>\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 ""

66
po/ca.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 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 <Unknown>\n"
"Language-Team: Catalan <ca@li.org>\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 ""

65
po/ckb.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 2014.
#
msgid ""
msgstr ""
"Project-Id-Version: noise\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <corentin@elementaryos.org>\n"
"Language-Team: Kurdish (Sorani) <ckb@li.org>\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 ""

66
po/cs.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 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 <suchm@seznam.cz>\n"
"Language-Team: Czech <cs@li.org>\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 ""

66
po/da.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 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 <niels@fyhring.net>\n"
"Language-Team: Danish <da@li.org>\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 ""

71
po/de.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 2014.
#
msgid ""
msgstr ""
"Project-Id-Version: gala\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <Unknown>\n"
"Language-Team: German <de@li.org>\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."

65
po/el.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: noise\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <corentin@elementaryos.org>\n"
"Language-Team: Greek <el@li.org>\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 ""

66
po/en_CA.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 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 <corentin@elementaryos.org>\n"
"Language-Team: English (Canada) <en_CA@li.org>\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 ""

65
po/en_GB.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: beat-box\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <Unknown>\n"
"Language-Team: English (United Kingdom) <en_GB@li.org>\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 ""

66
po/eo.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 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 <corentin@elementaryos.org>\n"
"Language-Team: Esperanto <eo@li.org>\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 ""

65
po/es.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 2014.
#
msgid ""
msgstr ""
"Project-Id-Version: gala\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2014-07-20 08:32+0000\n"
"PO-Revision-Date: 2014-06-19 21:32+0000\n"
"Last-Translator: Christopher <Unknown>\n"
"Language-Team: Spanish <es@li.org>\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 ""

69
po/et.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 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 <tictac7x@gmail.com>\n"
"Language-Team: Estonian <et@li.org>\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."

66
po/eu.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 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 <corentin@elementaryos.org>\n"
"Language-Team: Basque <eu@li.org>\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 ""

66
po/fa.po Normal file
View File

@ -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 <mohamadzali@gmail.com>, 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 <rasez_secure@yahoo.com>\n"
"Language-Team: Persian <fa@li.org>\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 ""

69
po/fi.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 2014.
#
msgid ""
msgstr ""
"Project-Id-Version: gala\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <Unknown>\n"
"Language-Team: Finnish <fi@li.org>\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."

70
po/fr.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 2014.
#
msgid ""
msgstr ""
"Project-Id-Version: gala\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2014-07-20 08:32+0000\n"
"PO-Revision-Date: 2014-07-11 17:36+0000\n"
"Last-Translator: Nikos <Unknown>\n"
"Language-Team: French <fr@li.org>\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."

66
po/fr_CA.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 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 <corentin@elementaryos.org>\n"
"Language-Team: French (Canada) <fr_CA@li.org>\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 ""

View File

@ -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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\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 ""

69
po/gl.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 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 <mbouzada@gmail.com>\n"
"Language-Team: Galician <gl@li.org>\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."

61
po/he.po Normal file
View File

@ -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 <dannydamsky99@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\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 ""

66
po/hi.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 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 <corentin@elementaryos.org>\n"
"Language-Team: Hindi <hi@li.org>\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 ""

65
po/hr.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 2013.
#
msgid ""
msgstr ""
"Project-Id-Version: noise\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2014-07-20 08:32+0000\n"
"PO-Revision-Date: 2014-04-17 10:47+0000\n"
"Last-Translator: zvacet <ikoli@yahoo.com>\n"
"Language-Team: Croatian <hr@li.org>\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 ""

70
po/hu.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 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 <marcus@elitemail.hu>\n"
"Language-Team: Hungarian <hu@li.org>\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."

66
po/id.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 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 <corentin@elementaryos.org>\n"
"Language-Team: Indonesian <id@li.org>\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 ""

65
po/it.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: beat-box\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <matteoformenti1998@gmail.com>\n"
"Language-Team: Italian <it@li.org>\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"

66
po/ja.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 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 <corentin@elementaryos.org>\n"
"Language-Team: Japanese <ja@li.org>\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 ""

65
po/ka.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: noise\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <arabulibeqa@yahoo.com>\n"
"Language-Team: Georgian <ka@li.org>\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 ""

65
po/ko.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: noise\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <corentin@elementaryos.org>\n"
"Language-Team: Korean <ko@li.org>\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 ""

65
po/ky.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: noise\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <corentin@elementaryos.org>\n"
"Language-Team: Kirghiz <ky@li.org>\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 ""

65
po/lb.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: noise\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <spautz.julien@gmail.com>\n"
"Language-Team: Luxembourgish <lb@li.org>\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 ""

65
po/lt.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 2014.
#
msgid ""
msgstr ""
"Project-Id-Version: noise\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <EMAIL@ADDRESS>\n"
"Language-Team: Lithuanian <lt@li.org>\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 ""

65
po/lv.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 2013.
#
msgid ""
msgstr ""
"Project-Id-Version: noise\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <matiss@marolind.com>\n"
"Language-Team: Latvian <lv@li.org>\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"

69
po/ms.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: noise\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2014-07-20 08:32+0000\n"
"PO-Revision-Date: 2014-07-02 11:21+0000\n"
"Last-Translator: abuyop <Unknown>\n"
"Language-Team: Malay <ms@li.org>\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."

69
po/nb.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 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 <comradekingu@gmail.com>\n"
"Language-Team: Norwegian Bokmal <nb@li.org>\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."

68
po/nl.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 2014.
#
msgid ""
msgstr ""
"Project-Id-Version: gala\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <Unknown>\n"
"Language-Team: Dutch <nl@li.org>\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."

66
po/nn.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 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 <corentin@elementaryos.org>\n"
"Language-Team: Norwegian Nynorsk <nn@li.org>\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 ""

68
po/om.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 2014.
#
msgid ""
msgstr ""
"Project-Id-Version: gala\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2014-07-20 08:32+0000\n"
"PO-Revision-Date: 2014-04-13 09:59+0000\n"
"Last-Translator: gudeta <gudbog@gmail.com>\n"
"Language-Team: Oromo <om@li.org>\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"

69
po/pl.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 2014.
#
msgid ""
msgstr ""
"Project-Id-Version: gala\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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ół <Unknown>\n"
"Language-Team: Polish <pl@li.org>\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."

68
po/pt.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 2014.
#
msgid ""
msgstr ""
"Project-Id-Version: gala\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <Unknown>\n"
"Language-Team: Portuguese <pt@li.org>\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."

65
po/pt_BR.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: beat-box\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <leonardolemos@live.com>\n"
"Language-Team: Brazilian Portuguese <pt_BR@li.org>\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"

66
po/ro.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 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 <corentin@elementaryos.org>\n"
"Language-Team: Romanian <ro@li.org>\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 ""

65
po/ru.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: beat-box\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <corentin@elementaryos.org>\n"
"Language-Team: Russian <ru@li.org>\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 ""

66
po/si.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 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 <yasith.vidanaarachchi@gmail.com>\n"
"Language-Team: Sinhalese <si@li.org>\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 ""

68
po/sk.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 2013.
#
msgid ""
msgstr ""
"Project-Id-Version: noise\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <Unknown>\n"
"Language-Team: Slovak <sk@li.org>\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."

66
po/sl.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 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 <corentin@elementaryos.org>\n"
"Language-Team: Slovenian <sl@li.org>\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 ""

66
po/sma.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 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 <corentin@elementaryos.org>\n"
"Language-Team: Southern Sami <sma@li.org>\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 ""

65
po/sr.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 2013.
#
msgid ""
msgstr ""
"Project-Id-Version: noise\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2014-07-20 08:32+0000\n"
"PO-Revision-Date: 2014-04-17 10:55+0000\n"
"Last-Translator: Саша Петровић <salepetronije@gmail.com>\n"
"Language-Team: Serbian <sr@li.org>\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 ""

66
po/sv.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: beat-box\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <Unknown>\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"

65
po/ta.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 2014.
#
msgid ""
msgstr ""
"Project-Id-Version: noise\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <jskcse4@gmail.com>\n"
"Language-Team: Tamil <ta@li.org>\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 ""

65
po/th.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 2013.
#
msgid ""
msgstr ""
"Project-Id-Version: noise\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2014-07-20 08:32+0000\n"
"PO-Revision-Date: 2014-04-17 10:55+0000\n"
"Last-Translator: siwakorn <ibeerz.s@gmail.com>\n"
"Language-Team: Thai <th@li.org>\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 ""

66
po/tr.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 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 <seaflames@gmail.com>\n"
"Language-Team: Turkish <tr@li.org>\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 ""

66
po/uk.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 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 <mr.mozila@gmail.com>\n"
"Language-Team: Ukrainian <uk@li.org>\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 ""

66
po/vi.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 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 <r00t3rvn@gmail.com>\n"
"Language-Team: Vietnamese <vi@li.org>\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 ""

68
po/zh_CN.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: noise\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2014-07-20 08:32+0000\n"
"PO-Revision-Date: 2014-06-04 05:59+0000\n"
"Last-Translator: colindemian <dengmengpc@gmail.com>\n"
"Language-Team: Chinese (Simplified) <zh_CN@li.org>\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 "这会关闭所有正在运行的程序并关闭您的设备。"

66
po/zh_HK.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 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 <ciboy2011@gmail.com>\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 ""

66
po/zh_TW.po Normal file
View File

@ -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 <EMAIL@ADDRESS>, 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 <pswo10680@gmail.com>\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 ""

View File

@ -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 <http://www.gnu.org/licenses/>.
//
// 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 ("<span weight='bold' size='larger'>" +
heading_text + "</span>");
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 (); });
}
}
}

View File

@ -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;

View File

@ -33,7 +33,6 @@ gala_LDADD = \
gala_VALASOURCES = \
DBus.vala \
DragDropAction.vala \
EndSessionDialog.vala \
InternalUtils.vala \
Main.vala \
PluginManager.vala \

View File

@ -192,6 +192,8 @@ namespace Gala
width += GROUP_WIDTH;
}
width += SPACING;
return width;
}

View File

@ -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 ();

View File

@ -72,7 +72,6 @@ namespace Gala
var screen = get_screen ();
DBus.init (this);
EndSessionDialog.register (this);
BackgroundCache.init (screen);
WindowListener.init (screen);

View File

@ -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")]