diff -Nru indicator-cpufreq-0.2/PKG-INFO indicator-cpufreq-0.2.2/PKG-INFO --- indicator-cpufreq-0.2/PKG-INFO 2013-01-25 14:31:07.000000000 +0000 +++ indicator-cpufreq-0.2.2/PKG-INFO 2013-03-08 07:16:49.000000000 +0000 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: indicator-cpufreq -Version: 0.2 +Version: 0.2.2 Summary: CPU frequency scaling indicator Home-page: https://launchpad.net/indicator-cpufreq Author: Artem Popov diff -Nru indicator-cpufreq-0.2/debian/changelog indicator-cpufreq-0.2.2/debian/changelog --- indicator-cpufreq-0.2/debian/changelog 2013-01-30 02:22:54.000000000 +0000 +++ indicator-cpufreq-0.2.2/debian/changelog 2013-03-11 08:31:28.000000000 +0000 @@ -1,3 +1,18 @@ +indicator-cpufreq (0.2.2-0ubuntu1) raring; urgency=low + + * New upstream release (LP: #1152566): + - Translation updates. + + -- Artem Popov Fri, 08 Mar 2013 18:39:46 +0700 + +indicator-cpufreq (0.2.1-0ubuntu1) raring; urgency=low + + * New upstream bugfix release (LP: #1130508): + - Correctly display turbo mode option in menu (LP: #1110429). + - Install hicolor icons (LP: #1125598). + + -- Artem Popov Wed, 20 Feb 2013 10:39:05 +0700 + indicator-cpufreq (0.2-0ubuntu1) raring; urgency=low * New upstream release (LP: #1105609): diff -Nru indicator-cpufreq-0.2/indicator_cpufreq/indicator.py indicator-cpufreq-0.2.2/indicator_cpufreq/indicator.py --- indicator-cpufreq-0.2/indicator_cpufreq/indicator.py 2013-01-25 14:21:30.000000000 +0000 +++ indicator-cpufreq-0.2.2/indicator_cpufreq/indicator.py 2013-02-25 16:18:40.000000000 +0000 @@ -30,7 +30,11 @@ #gettext.textdomain('indicator-cpufreq') def readable_frequency(f): - return _("%s GHz") % locale.format(_("%.2f"), f / 1.0e6) + # temp hack for properly displaying intel turbo mode (actual freq + 1000kHz) + label = _("%s GHz") % locale.format(_("%.2f"), f / 1.0e6) + if f % 10000 != 0: + label = label + " " + _("(turbo mode)") + return label governor_names = { 'conservative': _("Conservative"), diff -Nru indicator-cpufreq-0.2/po/ast.po indicator-cpufreq-0.2.2/po/ast.po --- indicator-cpufreq-0.2/po/ast.po 2013-01-25 14:13:10.000000000 +0000 +++ indicator-cpufreq-0.2.2/po/ast.po 2013-03-08 07:15:41.000000000 +0000 @@ -7,30 +7,53 @@ msgstr "" "Project-Id-Version: indicator-cpufreq\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2011-07-20 16:36+0700\n" -"PO-Revision-Date: 2011-10-29 11:32+0000\n" -"Last-Translator: ASTUR2000 \n" +"POT-Creation-Date: 2013-02-25 23:19+0700\n" +"PO-Revision-Date: 2013-02-28 13:06+0000\n" +"Last-Translator: ivarela \n" "Language-Team: Asturian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-10-30 05:24+0000\n" -"X-Generator: Launchpad (build 14197)\n" +"X-Launchpad-Export-Date: 2013-03-01 05:01+0000\n" +"X-Generator: Launchpad (build 16514)\n" + +#: ../indicator-cpufreq.desktop.in.h:1 +msgid "CPU Frequency Scaling Indicator" +msgstr "Indicador de frecuencia CPU n'escala" + +#: ../indicator-cpufreq.desktop.in.h:2 +msgid "An indicator for monitoring and switching CPU frequency scaling" +msgstr "" +"Un indicador pal siguimientu ya la camudancia d'escala de frecuencia CPU" #. Support for command line options. -#: ../bin/indicator-cpufreq.py:64 +#: ../bin/indicator-cpufreq.py:60 msgid "indicator-cpufreq [options]" msgstr "indicator-cpufreq [options]" -#: ../bin/indicator-cpufreq.py:67 -msgid "Print the maximum debugging info (implies -vv)" -msgstr "Amosar la másima información de depuranción (implies -vv)" +#: ../bin/indicator-cpufreq.py:63 +msgid "print the maximum debugging info (implies -vv)" +msgstr "imprentar la máxima información de la depuración (implica -w)" -#: ../bin/indicator-cpufreq.py:69 +#: ../bin/indicator-cpufreq.py:65 msgid "set error_level output to warning, info, and then debug" msgstr "" "Poner error_level output pa'allertar, información, ya dempués depurar" +#: ../bin/indicator-cpufreq.py:67 +msgid "show the frequency with text along with the icon" +msgstr "amosar la frecuencia con testu xunto al iconu" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 +msgid "Change CPU frequency scaling" +msgstr "Camudar la escala de frecuencia CPU" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 +msgid "System policy prevents you from changing CPU frequency scaling." +msgstr "" +"La direutiva'l sistema nun-y almite camudar la escala frecuencia la CPU." + +#. temp hack for properly displaying intel turbo mode (actual freq + 1000kHz) #: ../indicator_cpufreq/indicator.py:34 #, python-format msgid "%s GHz" @@ -41,37 +64,23 @@ msgid "%.2f" msgstr "%.2f" -#: ../indicator_cpufreq/indicator.py:37 +#: ../indicator_cpufreq/indicator.py:36 +msgid "(turbo mode)" +msgstr "(mou turbo)" + +#: ../indicator_cpufreq/indicator.py:40 msgid "Conservative" msgstr "Aforrador" -#: ../indicator_cpufreq/indicator.py:38 +#: ../indicator_cpufreq/indicator.py:41 msgid "Ondemand" msgstr "Embaxo demanda" #. 'userspace': _("Userspace"), -#: ../indicator_cpufreq/indicator.py:40 +#: ../indicator_cpufreq/indicator.py:43 msgid "Powersave" msgstr "Aforru d'enerxía" -#: ../indicator_cpufreq/indicator.py:41 +#: ../indicator_cpufreq/indicator.py:44 msgid "Performance" msgstr "Rendimientu" - -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 -msgid "Change CPU frequency scaling" -msgstr "Camudar la escala de frecuencia CPU" - -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 -msgid "System policy prevents you from changing CPU frequency scaling." -msgstr "" -"La direutiva'l sistema nun-y almite camudar la escala frecuencia la CPU." - -#: ../indicator-cpufreq.desktop.in.h:1 -msgid "An indicator for monitoring and switching CPU frequency scaling" -msgstr "" -"Un indicador pal siguimientu ya la camudancia d'escala de frecuencia CPU" - -#: ../indicator-cpufreq.desktop.in.h:2 -msgid "CPU Frequency Scaling Indicator" -msgstr "Indicador de frecuencia CPU n'escala" diff -Nru indicator-cpufreq-0.2/po/az.po indicator-cpufreq-0.2.2/po/az.po --- indicator-cpufreq-0.2/po/az.po 1970-01-01 00:00:00.000000000 +0000 +++ indicator-cpufreq-0.2.2/po/az.po 2013-03-08 07:15:41.000000000 +0000 @@ -0,0 +1,87 @@ +# Azerbaijani translation for indicator-cpufreq +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the indicator-cpufreq package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: indicator-cpufreq\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-02-25 23:19+0700\n" +"PO-Revision-Date: 2013-02-26 17:17+0000\n" +"Last-Translator: Rashid Aliyev \n" +"Language-Team: Azerbaijani \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-02-27 04:56+0000\n" +"X-Generator: Launchpad (build 16506)\n" + +#: ../indicator-cpufreq.desktop.in.h:1 +msgid "CPU Frequency Scaling Indicator" +msgstr "MPQ Tezliyini Ölçən İndikator" + +#: ../indicator-cpufreq.desktop.in.h:2 +msgid "An indicator for monitoring and switching CPU frequency scaling" +msgstr "MPQ-nua nəzarət etmək və tezlik dəyişdirmək üçün göstərici" + +#. Support for command line options. +#: ../bin/indicator-cpufreq.py:60 +msgid "indicator-cpufreq [options]" +msgstr "indikator-cpufreq [semənəklər]" + +#: ../bin/indicator-cpufreq.py:63 +msgid "print the maximum debugging info (implies -vv)" +msgstr "maksimal yoxlama məlumatlarını çap et (implies -vv)" + +#: ../bin/indicator-cpufreq.py:65 +msgid "set error_level output to warning, info, and then debug" +msgstr "" +"xəbərdarlıq, məlumat üçün xəta_səviyyəsini (error_level) təyin et və sonra " +"yoxla" + +#: ../bin/indicator-cpufreq.py:67 +msgid "show the frequency with text along with the icon" +msgstr "tezliyi şəxilin arxasınca yazı ilə göstər" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 +msgid "Change CPU frequency scaling" +msgstr "MPQ tezlik ölçüsü göstəricisni dəyiş" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 +msgid "System policy prevents you from changing CPU frequency scaling." +msgstr "" +"Sistem siyasəti Sizi MPQ-nun tezlik göstəricisi ölmüsünü dəyişməyə icazə " +"vermir." + +#. temp hack for properly displaying intel turbo mode (actual freq + 1000kHz) +#: ../indicator_cpufreq/indicator.py:34 +#, python-format +msgid "%s GHz" +msgstr "%s GHz" + +#: ../indicator_cpufreq/indicator.py:34 +#, python-format +msgid "%.2f" +msgstr "%.2f" + +#: ../indicator_cpufreq/indicator.py:36 +msgid "(turbo mode)" +msgstr "(turbo rejim)" + +#: ../indicator_cpufreq/indicator.py:40 +msgid "Conservative" +msgstr "Konservativ" + +#: ../indicator_cpufreq/indicator.py:41 +msgid "Ondemand" +msgstr "Lazım gəldikdə" + +#. 'userspace': _("Userspace"), +#: ../indicator_cpufreq/indicator.py:43 +msgid "Powersave" +msgstr "Enerji qənaətcil" + +#: ../indicator_cpufreq/indicator.py:44 +msgid "Performance" +msgstr "Prefirmans" diff -Nru indicator-cpufreq-0.2/po/be.po indicator-cpufreq-0.2.2/po/be.po --- indicator-cpufreq-0.2/po/be.po 1970-01-01 00:00:00.000000000 +0000 +++ indicator-cpufreq-0.2.2/po/be.po 2013-03-08 07:15:41.000000000 +0000 @@ -0,0 +1,83 @@ +# Belarusian translation for indicator-cpufreq +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the indicator-cpufreq package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: indicator-cpufreq\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-02-25 23:19+0700\n" +"PO-Revision-Date: 2013-03-01 07:23+0000\n" +"Last-Translator: Vitaly Danilovich \n" +"Language-Team: Belarusian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-03-02 05:05+0000\n" +"X-Generator: Launchpad (build 16514)\n" + +#: ../indicator-cpufreq.desktop.in.h:1 +msgid "CPU Frequency Scaling Indicator" +msgstr "Індыкатар частаты працэсара" + +#: ../indicator-cpufreq.desktop.in.h:2 +msgid "An indicator for monitoring and switching CPU frequency scaling" +msgstr "Індыкатар для адлюстравання і пераключэння частаты працэсара" + +#. Support for command line options. +#: ../bin/indicator-cpufreq.py:60 +msgid "indicator-cpufreq [options]" +msgstr "" + +#: ../bin/indicator-cpufreq.py:63 +msgid "print the maximum debugging info (implies -vv)" +msgstr "" + +#: ../bin/indicator-cpufreq.py:65 +msgid "set error_level output to warning, info, and then debug" +msgstr "усталяваць error_level output на warning, info і затым debug" + +#: ../bin/indicator-cpufreq.py:67 +msgid "show the frequency with text along with the icon" +msgstr "паказваць значэнне частоты побач са значком" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 +msgid "Change CPU frequency scaling" +msgstr "Змена частаты працэсара" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 +msgid "System policy prevents you from changing CPU frequency scaling." +msgstr "Сістэмная палітыка перашкаджае змене частоты працэсара." + +#. temp hack for properly displaying intel turbo mode (actual freq + 1000kHz) +#: ../indicator_cpufreq/indicator.py:34 +#, python-format +msgid "%s GHz" +msgstr "%s ГГц" + +#: ../indicator_cpufreq/indicator.py:34 +#, python-format +msgid "%.2f" +msgstr "%.2f" + +#: ../indicator_cpufreq/indicator.py:36 +msgid "(turbo mode)" +msgstr "" + +#: ../indicator_cpufreq/indicator.py:40 +msgid "Conservative" +msgstr "" + +#: ../indicator_cpufreq/indicator.py:41 +msgid "Ondemand" +msgstr "Дынамічны" + +#. 'userspace': _("Userspace"), +#: ../indicator_cpufreq/indicator.py:43 +msgid "Powersave" +msgstr "Энергазберажэнне" + +#: ../indicator_cpufreq/indicator.py:44 +msgid "Performance" +msgstr "Прадукцыйнасць" diff -Nru indicator-cpufreq-0.2/po/bg.po indicator-cpufreq-0.2.2/po/bg.po --- indicator-cpufreq-0.2/po/bg.po 1970-01-01 00:00:00.000000000 +0000 +++ indicator-cpufreq-0.2.2/po/bg.po 2013-03-08 07:15:41.000000000 +0000 @@ -0,0 +1,84 @@ +# Bulgarian translation for indicator-cpufreq +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the indicator-cpufreq package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: indicator-cpufreq\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-02-25 23:19+0700\n" +"PO-Revision-Date: 2013-03-06 14:45+0000\n" +"Last-Translator: Atanas Kovachki \n" +"Language-Team: Bulgarian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-03-07 05:30+0000\n" +"X-Generator: Launchpad (build 16514)\n" + +#: ../indicator-cpufreq.desktop.in.h:1 +msgid "CPU Frequency Scaling Indicator" +msgstr "Индикатор за честотата на процесора" + +#: ../indicator-cpufreq.desktop.in.h:2 +msgid "An indicator for monitoring and switching CPU frequency scaling" +msgstr "Индикатор за наблюдение и превключване на честотата на процесора" + +#. Support for command line options. +#: ../bin/indicator-cpufreq.py:60 +msgid "indicator-cpufreq [options]" +msgstr "indicator-cpufreq [параметри]" + +#: ../bin/indicator-cpufreq.py:63 +msgid "print the maximum debugging info (implies -vv)" +msgstr "" +"показване на максимална информация за отстраняване на грешки (предполага -vv)" + +#: ../bin/indicator-cpufreq.py:65 +msgid "set error_level output to warning, info, and then debug" +msgstr "показване на значение за частоты рядом со значком" + +#: ../bin/indicator-cpufreq.py:67 +msgid "show the frequency with text along with the icon" +msgstr "показване честота в непосредствена близост до иконката" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 +msgid "Change CPU frequency scaling" +msgstr "Промяна на честотата на процесора" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 +msgid "System policy prevents you from changing CPU frequency scaling." +msgstr "Системаната политика пречи на промяна в честотата на процесора." + +#. temp hack for properly displaying intel turbo mode (actual freq + 1000kHz) +#: ../indicator_cpufreq/indicator.py:34 +#, python-format +msgid "%s GHz" +msgstr "%s GHz" + +#: ../indicator_cpufreq/indicator.py:34 +#, python-format +msgid "%.2f" +msgstr "%.2f" + +#: ../indicator_cpufreq/indicator.py:36 +msgid "(turbo mode)" +msgstr "(турбо режим)" + +#: ../indicator_cpufreq/indicator.py:40 +msgid "Conservative" +msgstr "Умерено" + +#: ../indicator_cpufreq/indicator.py:41 +msgid "Ondemand" +msgstr "При поискване" + +#. 'userspace': _("Userspace"), +#: ../indicator_cpufreq/indicator.py:43 +msgid "Powersave" +msgstr "Енергоспестяване" + +#: ../indicator_cpufreq/indicator.py:44 +msgid "Performance" +msgstr "Ускоряване" diff -Nru indicator-cpufreq-0.2/po/ca.po indicator-cpufreq-0.2.2/po/ca.po --- indicator-cpufreq-0.2/po/ca.po 1970-01-01 00:00:00.000000000 +0000 +++ indicator-cpufreq-0.2.2/po/ca.po 2013-03-08 07:15:41.000000000 +0000 @@ -0,0 +1,85 @@ +# Catalan translation for indicator-cpufreq +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the indicator-cpufreq package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: indicator-cpufreq\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-02-25 23:19+0700\n" +"PO-Revision-Date: 2013-02-26 13:37+0000\n" +"Last-Translator: VPablo \n" +"Language-Team: Catalan \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-02-27 04:56+0000\n" +"X-Generator: Launchpad (build 16506)\n" + +#: ../indicator-cpufreq.desktop.in.h:1 +msgid "CPU Frequency Scaling Indicator" +msgstr "Indicador de la Escala de Freqüència de la CPU" + +#: ../indicator-cpufreq.desktop.in.h:2 +msgid "An indicator for monitoring and switching CPU frequency scaling" +msgstr "Un indicador pel seguiment i el canvi d'escala de freqüència de CPU" + +#. Support for command line options. +#: ../bin/indicator-cpufreq.py:60 +msgid "indicator-cpufreq [options]" +msgstr "indicator-cpufreq [opcions]" + +#: ../bin/indicator-cpufreq.py:63 +msgid "print the maximum debugging info (implies -vv)" +msgstr "mostra la major informació de depuració (implica -vv)" + +#: ../bin/indicator-cpufreq.py:65 +msgid "set error_level output to warning, info, and then debug" +msgstr "establir eixida d'error-level a warning, info, i després depura" + +#: ../bin/indicator-cpufreq.py:67 +msgid "show the frequency with text along with the icon" +msgstr "mostra la freqüència amb text al llarg de la icona" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 +msgid "Change CPU frequency scaling" +msgstr "Canvia la escala de freqüència de CPU" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 +msgid "System policy prevents you from changing CPU frequency scaling." +msgstr "" +"La directiva del sistema no el permet canviar la escala de freqüència de la " +"CPU" + +#. temp hack for properly displaying intel turbo mode (actual freq + 1000kHz) +#: ../indicator_cpufreq/indicator.py:34 +#, python-format +msgid "%s GHz" +msgstr "%s GHz" + +#: ../indicator_cpufreq/indicator.py:34 +#, python-format +msgid "%.2f" +msgstr "%.2f" + +#: ../indicator_cpufreq/indicator.py:36 +msgid "(turbo mode)" +msgstr "(mode turbo)" + +#: ../indicator_cpufreq/indicator.py:40 +msgid "Conservative" +msgstr "Conservador" + +#: ../indicator_cpufreq/indicator.py:41 +msgid "Ondemand" +msgstr "Baix demanda" + +#. 'userspace': _("Userspace"), +#: ../indicator_cpufreq/indicator.py:43 +msgid "Powersave" +msgstr "Estalvi d'energia" + +#: ../indicator_cpufreq/indicator.py:44 +msgid "Performance" +msgstr "Rendiment" diff -Nru indicator-cpufreq-0.2/po/cs.po indicator-cpufreq-0.2.2/po/cs.po --- indicator-cpufreq-0.2/po/cs.po 2013-01-25 14:13:10.000000000 +0000 +++ indicator-cpufreq-0.2.2/po/cs.po 2013-03-08 07:15:41.000000000 +0000 @@ -7,29 +7,50 @@ msgstr "" "Project-Id-Version: indicator-cpufreq\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2011-07-20 16:36+0700\n" -"PO-Revision-Date: 2012-05-13 20:38+0000\n" +"POT-Creation-Date: 2013-02-25 23:19+0700\n" +"PO-Revision-Date: 2013-02-26 13:17+0000\n" "Last-Translator: Tadeáš Pařík \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-05-14 04:52+0000\n" -"X-Generator: Launchpad (build 15238)\n" +"X-Launchpad-Export-Date: 2013-02-27 04:56+0000\n" +"X-Generator: Launchpad (build 16506)\n" + +#: ../indicator-cpufreq.desktop.in.h:1 +msgid "CPU Frequency Scaling Indicator" +msgstr "Indikátor škálování frekvence CPU" + +#: ../indicator-cpufreq.desktop.in.h:2 +msgid "An indicator for monitoring and switching CPU frequency scaling" +msgstr "Indikátor pro monitorování a přepínání frekvence CPU" #. Support for command line options. -#: ../bin/indicator-cpufreq.py:64 +#: ../bin/indicator-cpufreq.py:60 msgid "indicator-cpufreq [options]" msgstr "indicator-cpufreq [volby]" -#: ../bin/indicator-cpufreq.py:67 -msgid "Print the maximum debugging info (implies -vv)" -msgstr "Zobrazí maximální možné ladící informace (předpokládá -vv)" +#: ../bin/indicator-cpufreq.py:63 +msgid "print the maximum debugging info (implies -vv)" +msgstr "vypsat maximální možné informace o ladění (znamená -vv)" -#: ../bin/indicator-cpufreq.py:69 +#: ../bin/indicator-cpufreq.py:65 msgid "set error_level output to warning, info, and then debug" msgstr "nastavit výstup error_level na varování, info a poté režim lazení" +#: ../bin/indicator-cpufreq.py:67 +msgid "show the frequency with text along with the icon" +msgstr "zobrazit frekvenci s textem spolu s ikonou" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 +msgid "Change CPU frequency scaling" +msgstr "Změna škálování frekvence CPU" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 +msgid "System policy prevents you from changing CPU frequency scaling." +msgstr "Systémová nastavení vám brání ve změně škálování frekvence CPU." + +#. temp hack for properly displaying intel turbo mode (actual freq + 1000kHz) #: ../indicator_cpufreq/indicator.py:34 #, python-format msgid "%s GHz" @@ -40,35 +61,23 @@ msgid "%.2f" msgstr "%.2f" -#: ../indicator_cpufreq/indicator.py:37 +#: ../indicator_cpufreq/indicator.py:36 +msgid "(turbo mode)" +msgstr "(turbo mód)" + +#: ../indicator_cpufreq/indicator.py:40 msgid "Conservative" msgstr "Konzervativní" -#: ../indicator_cpufreq/indicator.py:38 +#: ../indicator_cpufreq/indicator.py:41 msgid "Ondemand" msgstr "Podle potřeby" #. 'userspace': _("Userspace"), -#: ../indicator_cpufreq/indicator.py:40 +#: ../indicator_cpufreq/indicator.py:43 msgid "Powersave" msgstr "Úsporný" -#: ../indicator_cpufreq/indicator.py:41 +#: ../indicator_cpufreq/indicator.py:44 msgid "Performance" msgstr "Výkon" - -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 -msgid "Change CPU frequency scaling" -msgstr "Změna škálování frekvence CPU" - -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 -msgid "System policy prevents you from changing CPU frequency scaling." -msgstr "Systémová nastavení vám brání ve změně škálování frekvence CPU." - -#: ../indicator-cpufreq.desktop.in.h:1 -msgid "An indicator for monitoring and switching CPU frequency scaling" -msgstr "Indikátor pro monitorování a přepínání frekvence CPU" - -#: ../indicator-cpufreq.desktop.in.h:2 -msgid "CPU Frequency Scaling Indicator" -msgstr "Indikátor škálování frekvence CPU" diff -Nru indicator-cpufreq-0.2/po/de.po indicator-cpufreq-0.2.2/po/de.po --- indicator-cpufreq-0.2/po/de.po 2013-01-25 14:13:10.000000000 +0000 +++ indicator-cpufreq-0.2.2/po/de.po 2013-03-08 07:15:41.000000000 +0000 @@ -7,30 +7,52 @@ msgstr "" "Project-Id-Version: indicator-cpufreq\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2011-07-20 16:36+0700\n" +"POT-Creation-Date: 2013-02-25 23:19+0700\n" "PO-Revision-Date: 2011-11-29 11:56+0000\n" "Last-Translator: Jan Simon \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-11-30 05:47+0000\n" -"X-Generator: Launchpad (build 14404)\n" +"X-Launchpad-Export-Date: 2013-02-26 05:16+0000\n" +"X-Generator: Launchpad (build 16506)\n" + +#: ../indicator-cpufreq.desktop.in.h:1 +msgid "CPU Frequency Scaling Indicator" +msgstr "CPU-Frequenzskalierungs Indicator" + +#: ../indicator-cpufreq.desktop.in.h:2 +msgid "An indicator for monitoring and switching CPU frequency scaling" +msgstr "Ein Indicator zum Beobachten und Ändern der CPU-Frequenzskalierung" #. Support for command line options. -#: ../bin/indicator-cpufreq.py:64 +#: ../bin/indicator-cpufreq.py:60 msgid "indicator-cpufreq [options]" msgstr "indicator-cpufreq [Optionen]" -#: ../bin/indicator-cpufreq.py:67 -msgid "Print the maximum debugging info (implies -vv)" -msgstr "Gibt die maximalen Debugging-Informationen aus (beinhaltet -vv)" +#: ../bin/indicator-cpufreq.py:63 +msgid "print the maximum debugging info (implies -vv)" +msgstr "" -#: ../bin/indicator-cpufreq.py:69 +#: ../bin/indicator-cpufreq.py:65 msgid "set error_level output to warning, info, and then debug" msgstr "" "Setzt die error_level Ausgabe auf Warnung, Information und dann Debug" +#: ../bin/indicator-cpufreq.py:67 +msgid "show the frequency with text along with the icon" +msgstr "" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 +msgid "Change CPU frequency scaling" +msgstr "Ändere CPU-Frequenzskalierung" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 +msgid "System policy prevents you from changing CPU frequency scaling." +msgstr "" +"Systemrichtlinien verhindern die Änderung der CPU-Frequenzskalierung." + +#. temp hack for properly displaying intel turbo mode (actual freq + 1000kHz) #: ../indicator_cpufreq/indicator.py:34 #, python-format msgid "%s GHz" @@ -41,36 +63,26 @@ msgid "%.2f" msgstr "%.2f" -#: ../indicator_cpufreq/indicator.py:37 +#: ../indicator_cpufreq/indicator.py:36 +msgid "(turbo mode)" +msgstr "" + +#: ../indicator_cpufreq/indicator.py:40 msgid "Conservative" msgstr "Konservativ" -#: ../indicator_cpufreq/indicator.py:38 +#: ../indicator_cpufreq/indicator.py:41 msgid "Ondemand" msgstr "Bedarf" #. 'userspace': _("Userspace"), -#: ../indicator_cpufreq/indicator.py:40 +#: ../indicator_cpufreq/indicator.py:43 msgid "Powersave" msgstr "Energiesparen" -#: ../indicator_cpufreq/indicator.py:41 +#: ../indicator_cpufreq/indicator.py:44 msgid "Performance" msgstr "Leistung" -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 -msgid "Change CPU frequency scaling" -msgstr "Ändere CPU-Frequenzskalierung" - -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 -msgid "System policy prevents you from changing CPU frequency scaling." -msgstr "" -"Systemrichtlinien verhindern die Änderung der CPU-Frequenzskalierung." - -#: ../indicator-cpufreq.desktop.in.h:1 -msgid "An indicator for monitoring and switching CPU frequency scaling" -msgstr "Ein Indicator zum Beobachten und Ändern der CPU-Frequenzskalierung" - -#: ../indicator-cpufreq.desktop.in.h:2 -msgid "CPU Frequency Scaling Indicator" -msgstr "CPU-Frequenzskalierungs Indicator" +#~ msgid "Print the maximum debugging info (implies -vv)" +#~ msgstr "Gibt die maximalen Debugging-Informationen aus (beinhaltet -vv)" diff -Nru indicator-cpufreq-0.2/po/en_GB.po indicator-cpufreq-0.2.2/po/en_GB.po --- indicator-cpufreq-0.2/po/en_GB.po 1970-01-01 00:00:00.000000000 +0000 +++ indicator-cpufreq-0.2.2/po/en_GB.po 2013-03-08 07:15:41.000000000 +0000 @@ -0,0 +1,83 @@ +# English (United Kingdom) translation for indicator-cpufreq +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the indicator-cpufreq package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: indicator-cpufreq\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-02-25 23:19+0700\n" +"PO-Revision-Date: 2013-02-26 13:17+0000\n" +"Last-Translator: fossfreedom \n" +"Language-Team: English (United Kingdom) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-02-27 04:56+0000\n" +"X-Generator: Launchpad (build 16506)\n" + +#: ../indicator-cpufreq.desktop.in.h:1 +msgid "CPU Frequency Scaling Indicator" +msgstr "CPU Frequency Scaling Indicator" + +#: ../indicator-cpufreq.desktop.in.h:2 +msgid "An indicator for monitoring and switching CPU frequency scaling" +msgstr "An indicator for monitoring and switching CPU frequency scaling" + +#. Support for command line options. +#: ../bin/indicator-cpufreq.py:60 +msgid "indicator-cpufreq [options]" +msgstr "indicator-cpufreq [options]" + +#: ../bin/indicator-cpufreq.py:63 +msgid "print the maximum debugging info (implies -vv)" +msgstr "print the maximum debugging info (implies -vv)" + +#: ../bin/indicator-cpufreq.py:65 +msgid "set error_level output to warning, info, and then debug" +msgstr "set error_level output to warning, info, and then debug" + +#: ../bin/indicator-cpufreq.py:67 +msgid "show the frequency with text along with the icon" +msgstr "show the frequency with text along with the icon" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 +msgid "Change CPU frequency scaling" +msgstr "Change CPU frequency scaling" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 +msgid "System policy prevents you from changing CPU frequency scaling." +msgstr "System policy prevents you from changing CPU frequency scaling." + +#. temp hack for properly displaying intel turbo mode (actual freq + 1000kHz) +#: ../indicator_cpufreq/indicator.py:34 +#, python-format +msgid "%s GHz" +msgstr "%s GHz" + +#: ../indicator_cpufreq/indicator.py:34 +#, python-format +msgid "%.2f" +msgstr "%.2f" + +#: ../indicator_cpufreq/indicator.py:36 +msgid "(turbo mode)" +msgstr "(turbo mode)" + +#: ../indicator_cpufreq/indicator.py:40 +msgid "Conservative" +msgstr "Conservative" + +#: ../indicator_cpufreq/indicator.py:41 +msgid "Ondemand" +msgstr "Ondemand" + +#. 'userspace': _("Userspace"), +#: ../indicator_cpufreq/indicator.py:43 +msgid "Powersave" +msgstr "Powersave" + +#: ../indicator_cpufreq/indicator.py:44 +msgid "Performance" +msgstr "Performance" diff -Nru indicator-cpufreq-0.2/po/es.po indicator-cpufreq-0.2.2/po/es.po --- indicator-cpufreq-0.2/po/es.po 2013-01-25 14:13:10.000000000 +0000 +++ indicator-cpufreq-0.2.2/po/es.po 2013-03-08 07:15:41.000000000 +0000 @@ -7,29 +7,53 @@ msgstr "" "Project-Id-Version: indicator-cpufreq\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2011-07-20 16:36+0700\n" -"PO-Revision-Date: 2012-03-28 06:47+0000\n" -"Last-Translator: Fitoschido \n" +"POT-Creation-Date: 2013-02-25 23:19+0700\n" +"PO-Revision-Date: 2013-02-26 14:36+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-03-29 04:51+0000\n" -"X-Generator: Launchpad (build 15032)\n" +"X-Launchpad-Export-Date: 2013-02-27 04:56+0000\n" +"X-Generator: Launchpad (build 16506)\n" + +#: ../indicator-cpufreq.desktop.in.h:1 +msgid "CPU Frequency Scaling Indicator" +msgstr "Frecuencia de la CPU de escala en el indicador" + +#: ../indicator-cpufreq.desktop.in.h:2 +msgid "An indicator for monitoring and switching CPU frequency scaling" +msgstr "" +"Un indicador para el seguimiento y el cambio de escala de frecuencia de CPU" #. Support for command line options. -#: ../bin/indicator-cpufreq.py:64 +#: ../bin/indicator-cpufreq.py:60 msgid "indicator-cpufreq [options]" msgstr "indicator-cpufreq [opciones]" -#: ../bin/indicator-cpufreq.py:67 -msgid "Print the maximum debugging info (implies -vv)" -msgstr "Mostrar el máximo de información de depuración (implica -vv)" +#: ../bin/indicator-cpufreq.py:63 +msgid "print the maximum debugging info (implies -vv)" +msgstr "imprimir la máxima información de la depuración (implica -w)" -#: ../bin/indicator-cpufreq.py:69 +#: ../bin/indicator-cpufreq.py:65 msgid "set error_level output to warning, info, and then debug" msgstr "establecer salida error_level a warning, info, y después depurar" +#: ../bin/indicator-cpufreq.py:67 +msgid "show the frequency with text along with the icon" +msgstr "mostrar la frecuencia con texto junto al icono" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 +msgid "Change CPU frequency scaling" +msgstr "Cambiar la escala de frecuencia de CPU" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 +msgid "System policy prevents you from changing CPU frequency scaling." +msgstr "" +"La directiva del sistema no le permite cambiar la escala de frecuencia de la " +"CPU." + +#. temp hack for properly displaying intel turbo mode (actual freq + 1000kHz) #: ../indicator_cpufreq/indicator.py:34 #, python-format msgid "%s GHz" @@ -40,38 +64,23 @@ msgid "%.2f" msgstr "%.2f" -#: ../indicator_cpufreq/indicator.py:37 +#: ../indicator_cpufreq/indicator.py:36 +msgid "(turbo mode)" +msgstr "(modo turbo)" + +#: ../indicator_cpufreq/indicator.py:40 msgid "Conservative" msgstr "Conservador" -#: ../indicator_cpufreq/indicator.py:38 +#: ../indicator_cpufreq/indicator.py:41 msgid "Ondemand" msgstr "Demandado" #. 'userspace': _("Userspace"), -#: ../indicator_cpufreq/indicator.py:40 +#: ../indicator_cpufreq/indicator.py:43 msgid "Powersave" msgstr "Ahorro de energía" -#: ../indicator_cpufreq/indicator.py:41 +#: ../indicator_cpufreq/indicator.py:44 msgid "Performance" msgstr "Rendimiento" - -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 -msgid "Change CPU frequency scaling" -msgstr "Cambiar la escala de frecuencia de CPU" - -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 -msgid "System policy prevents you from changing CPU frequency scaling." -msgstr "" -"La directiva del sistema no le permite cambiar la escala de frecuencia de la " -"CPU." - -#: ../indicator-cpufreq.desktop.in.h:1 -msgid "An indicator for monitoring and switching CPU frequency scaling" -msgstr "" -"Un indicador para el seguimiento y el cambio de escala de frecuencia de CPU" - -#: ../indicator-cpufreq.desktop.in.h:2 -msgid "CPU Frequency Scaling Indicator" -msgstr "Frecuencia de la CPU de escala en el indicador" diff -Nru indicator-cpufreq-0.2/po/fa.po indicator-cpufreq-0.2.2/po/fa.po --- indicator-cpufreq-0.2/po/fa.po 1970-01-01 00:00:00.000000000 +0000 +++ indicator-cpufreq-0.2.2/po/fa.po 2013-03-08 07:15:41.000000000 +0000 @@ -0,0 +1,83 @@ +# Persian translation for indicator-cpufreq +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the indicator-cpufreq package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: indicator-cpufreq\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-02-25 23:19+0700\n" +"PO-Revision-Date: 2013-02-27 12:19+0000\n" +"Last-Translator: Plugin \n" +"Language-Team: Persian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-02-28 05:08+0000\n" +"X-Generator: Launchpad (build 16506)\n" + +#: ../indicator-cpufreq.desktop.in.h:1 +msgid "CPU Frequency Scaling Indicator" +msgstr "نماگر میزان فرکانس CPU" + +#: ../indicator-cpufreq.desktop.in.h:2 +msgid "An indicator for monitoring and switching CPU frequency scaling" +msgstr "نماگری برای نمایش و تغییر میزان فرکانس CPU" + +#. Support for command line options. +#: ../bin/indicator-cpufreq.py:60 +msgid "indicator-cpufreq [options]" +msgstr "نماگر-cpufreq [گزینه‌ها]" + +#: ../bin/indicator-cpufreq.py:63 +msgid "print the maximum debugging info (implies -vv)" +msgstr "" + +#: ../bin/indicator-cpufreq.py:65 +msgid "set error_level output to warning, info, and then debug" +msgstr "" + +#: ../bin/indicator-cpufreq.py:67 +msgid "show the frequency with text along with the icon" +msgstr "نمایش فرکانس با نوشته در کنار آیکون" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 +msgid "Change CPU frequency scaling" +msgstr "تغییر میزان فرکانس CPU" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 +msgid "System policy prevents you from changing CPU frequency scaling." +msgstr "خطی مشی سیستم از تغییر میزان فرکانس CPU جلوگیری می‌کند." + +#. temp hack for properly displaying intel turbo mode (actual freq + 1000kHz) +#: ../indicator_cpufreq/indicator.py:34 +#, python-format +msgid "%s GHz" +msgstr "%s گیگاهرتز" + +#: ../indicator_cpufreq/indicator.py:34 +#, python-format +msgid "%.2f" +msgstr "%.2f" + +#: ../indicator_cpufreq/indicator.py:36 +msgid "(turbo mode)" +msgstr "(حالت سریع)" + +#: ../indicator_cpufreq/indicator.py:40 +msgid "Conservative" +msgstr "پایستار" + +#: ../indicator_cpufreq/indicator.py:41 +msgid "Ondemand" +msgstr "بنا به تقاضا" + +#. 'userspace': _("Userspace"), +#: ../indicator_cpufreq/indicator.py:43 +msgid "Powersave" +msgstr "" + +#: ../indicator_cpufreq/indicator.py:44 +msgid "Performance" +msgstr "کارایی" diff -Nru indicator-cpufreq-0.2/po/fi.po indicator-cpufreq-0.2.2/po/fi.po --- indicator-cpufreq-0.2/po/fi.po 2013-01-25 14:13:10.000000000 +0000 +++ indicator-cpufreq-0.2.2/po/fi.po 2013-03-08 07:15:41.000000000 +0000 @@ -7,29 +7,51 @@ msgstr "" "Project-Id-Version: indicator-cpufreq\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2011-07-20 16:36+0700\n" -"PO-Revision-Date: 2012-02-28 10:41+0000\n" +"POT-Creation-Date: 2013-02-25 23:19+0700\n" +"PO-Revision-Date: 2013-02-26 13:20+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-29 04:57+0000\n" -"X-Generator: Launchpad (build 14874)\n" +"X-Launchpad-Export-Date: 2013-02-27 04:56+0000\n" +"X-Generator: Launchpad (build 16506)\n" + +#: ../indicator-cpufreq.desktop.in.h:1 +msgid "CPU Frequency Scaling Indicator" +msgstr "Suorittimen kellotaajuuden ilmaisin" + +#: ../indicator-cpufreq.desktop.in.h:2 +msgid "An indicator for monitoring and switching CPU frequency scaling" +msgstr "Ilmaisin suorittimen kellotaajuuden hallintaa varten" #. Support for command line options. -#: ../bin/indicator-cpufreq.py:64 +#: ../bin/indicator-cpufreq.py:60 msgid "indicator-cpufreq [options]" msgstr "indicator-cpufreq [valinnat]" -#: ../bin/indicator-cpufreq.py:67 -msgid "Print the maximum debugging info (implies -vv)" +#: ../bin/indicator-cpufreq.py:63 +msgid "print the maximum debugging info (implies -vv)" msgstr "" -#: ../bin/indicator-cpufreq.py:69 +#: ../bin/indicator-cpufreq.py:65 msgid "set error_level output to warning, info, and then debug" msgstr "" +#: ../bin/indicator-cpufreq.py:67 +msgid "show the frequency with text along with the icon" +msgstr "näytä taajuus ja teksti kuvakkeen kera" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 +msgid "Change CPU frequency scaling" +msgstr "Muuta suorittimen kellotaajuutta" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 +msgid "System policy prevents you from changing CPU frequency scaling." +msgstr "" +"Järjestelmäkäytäntö estää sinua muuttamasta suorittimen kellotaajuutta." + +#. temp hack for properly displaying intel turbo mode (actual freq + 1000kHz) #: ../indicator_cpufreq/indicator.py:34 #, python-format msgid "%s GHz" @@ -40,36 +62,23 @@ msgid "%.2f" msgstr "%.2f" -#: ../indicator_cpufreq/indicator.py:37 +#: ../indicator_cpufreq/indicator.py:36 +msgid "(turbo mode)" +msgstr "(turbo-tila)" + +#: ../indicator_cpufreq/indicator.py:40 msgid "Conservative" msgstr "Konservatiivinen" -#: ../indicator_cpufreq/indicator.py:38 +#: ../indicator_cpufreq/indicator.py:41 msgid "Ondemand" msgstr "Tarpeen mukaan" #. 'userspace': _("Userspace"), -#: ../indicator_cpufreq/indicator.py:40 +#: ../indicator_cpufreq/indicator.py:43 msgid "Powersave" msgstr "Virransäästö" -#: ../indicator_cpufreq/indicator.py:41 +#: ../indicator_cpufreq/indicator.py:44 msgid "Performance" msgstr "Suorituskyky" - -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 -msgid "Change CPU frequency scaling" -msgstr "Muuta suorittimen kellotaajuutta" - -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 -msgid "System policy prevents you from changing CPU frequency scaling." -msgstr "" -"Järjestelmäkäytäntö estää sinua muuttamasta suorittimen kellotaajuutta." - -#: ../indicator-cpufreq.desktop.in.h:1 -msgid "An indicator for monitoring and switching CPU frequency scaling" -msgstr "Ilmaisin suorittimen kellotaajuuden hallintaa varten" - -#: ../indicator-cpufreq.desktop.in.h:2 -msgid "CPU Frequency Scaling Indicator" -msgstr "Suorittimen kellotaajuuden ilmaisin" diff -Nru indicator-cpufreq-0.2/po/fr.po indicator-cpufreq-0.2.2/po/fr.po --- indicator-cpufreq-0.2/po/fr.po 2013-01-25 14:13:10.000000000 +0000 +++ indicator-cpufreq-0.2.2/po/fr.po 2013-03-08 07:15:41.000000000 +0000 @@ -7,30 +7,53 @@ msgstr "" "Project-Id-Version: indicator-cpufreq\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2011-07-20 16:36+0700\n" -"PO-Revision-Date: 2011-07-28 07:51+0000\n" -"Last-Translator: LEROY Jean-Christophe \n" +"POT-Creation-Date: 2013-02-25 23:19+0700\n" +"PO-Revision-Date: 2013-02-26 14:26+0000\n" +"Last-Translator: Nicolas Delvaux \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-07-29 05:41+0000\n" -"X-Generator: Launchpad (build 13405)\n" +"X-Launchpad-Export-Date: 2013-02-27 04:56+0000\n" +"X-Generator: Launchpad (build 16506)\n" + +#: ../indicator-cpufreq.desktop.in.h:1 +msgid "CPU Frequency Scaling Indicator" +msgstr "Indicateur d'ajustement de fréquence du CPU" + +#: ../indicator-cpufreq.desktop.in.h:2 +msgid "An indicator for monitoring and switching CPU frequency scaling" +msgstr "" +"Un indicateur de surveillance et de commutation d'ajustement de fréquence du " +"CPU" #. Support for command line options. -#: ../bin/indicator-cpufreq.py:64 +#: ../bin/indicator-cpufreq.py:60 msgid "indicator-cpufreq [options]" msgstr "indicator-cpufreq [options]" -#: ../bin/indicator-cpufreq.py:67 -msgid "Print the maximum debugging info (implies -vv)" -msgstr "Affiche le maximum d'informations de débogage (implique -vv)" +#: ../bin/indicator-cpufreq.py:63 +msgid "print the maximum debugging info (implies -vv)" +msgstr "afficher toutes les informations de débogage (implique -vv)" -#: ../bin/indicator-cpufreq.py:69 +#: ../bin/indicator-cpufreq.py:65 msgid "set error_level output to warning, info, and then debug" msgstr "" "Régler la sortie de error_level à avertissement, info et puis débogage" +#: ../bin/indicator-cpufreq.py:67 +msgid "show the frequency with text along with the icon" +msgstr "afficher la fréquence textuellement à côté de l'icône" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 +msgid "Change CPU frequency scaling" +msgstr "Ajustement de la fréquence du CPU" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 +msgid "System policy prevents you from changing CPU frequency scaling." +msgstr "La politique de système vous empêche d'ajuster la fréquence du CPU." + +#. temp hack for properly displaying intel turbo mode (actual freq + 1000kHz) #: ../indicator_cpufreq/indicator.py:34 #, python-format msgid "%s GHz" @@ -41,49 +64,23 @@ msgid "%.2f" msgstr "%.2f" -#: ../indicator_cpufreq/indicator.py:37 +#: ../indicator_cpufreq/indicator.py:36 +msgid "(turbo mode)" +msgstr "(mode turbo)" + +#: ../indicator_cpufreq/indicator.py:40 msgid "Conservative" msgstr "Conservateur" -#: ../indicator_cpufreq/indicator.py:38 +#: ../indicator_cpufreq/indicator.py:41 msgid "Ondemand" msgstr "À la demande" #. 'userspace': _("Userspace"), -#: ../indicator_cpufreq/indicator.py:40 +#: ../indicator_cpufreq/indicator.py:43 msgid "Powersave" msgstr "Économies d'énergie" -#: ../indicator_cpufreq/indicator.py:41 +#: ../indicator_cpufreq/indicator.py:44 msgid "Performance" msgstr "Performances" - -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 -msgid "Change CPU frequency scaling" -msgstr "Ajustement de la fréquence du CPU" - -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 -msgid "System policy prevents you from changing CPU frequency scaling." -msgstr "La politique de système vous empêche d'ajuster la fréquence du CPU." - -#: ../indicator-cpufreq.desktop.in.h:1 -msgid "An indicator for monitoring and switching CPU frequency scaling" -msgstr "" -"Un indicateur de surveillance et de commutation d'ajustement de fréquence du " -"CPU" - -#: ../indicator-cpufreq.desktop.in.h:2 -msgid "CPU Frequency Scaling Indicator" -msgstr "Indicateur d'ajustement de fréquence du CPU" - -#~ msgid "easter egg found" -#~ msgstr "Oeuf de pâque trouvé" - -#~ msgid "Schweet" -#~ msgstr "Schweet" - -#~ msgid "foo should be assigned to bar" -#~ msgstr "Foo devrait être assigné à une barre" - -#~ msgid "Show debug messages" -#~ msgstr "Afficher les messages de débogage" diff -Nru indicator-cpufreq-0.2/po/gl.po indicator-cpufreq-0.2.2/po/gl.po --- indicator-cpufreq-0.2/po/gl.po 1970-01-01 00:00:00.000000000 +0000 +++ indicator-cpufreq-0.2.2/po/gl.po 2013-03-08 07:15:41.000000000 +0000 @@ -0,0 +1,86 @@ +# Galician translation for indicator-cpufreq +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the indicator-cpufreq package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: indicator-cpufreq\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-02-25 23:19+0700\n" +"PO-Revision-Date: 2013-02-26 18:45+0000\n" +"Last-Translator: Miguel Anxo Bouzada \n" +"Language-Team: Galician \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-02-27 04:56+0000\n" +"X-Generator: Launchpad (build 16506)\n" + +#: ../indicator-cpufreq.desktop.in.h:1 +msgid "CPU Frequency Scaling Indicator" +msgstr "Indicador da escala de frecuencia da CPU" + +#: ../indicator-cpufreq.desktop.in.h:2 +msgid "An indicator for monitoring and switching CPU frequency scaling" +msgstr "" +"Un indicador para a supervisión e o cambio de escala de frecuencia da CPU" + +#. Support for command line options. +#: ../bin/indicator-cpufreq.py:60 +msgid "indicator-cpufreq [options]" +msgstr "indicator-cpufreq [opcións]" + +#: ../bin/indicator-cpufreq.py:63 +msgid "print the maximum debugging info (implies -vv)" +msgstr "imprimir a máxima información da depuración (implica -w)" + +#: ../bin/indicator-cpufreq.py:65 +msgid "set error_level output to warning, info, and then debug" +msgstr "" +"Definir a saída de «error_level» para «warning» ou «info» e deseguido depurar" + +#: ../bin/indicator-cpufreq.py:67 +msgid "show the frequency with text along with the icon" +msgstr "amosar a frecuencia con texto a carón da icona" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 +msgid "Change CPU frequency scaling" +msgstr "Cambiar a escala de frecuencia da CPU" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 +msgid "System policy prevents you from changing CPU frequency scaling." +msgstr "" +"A política do sistema non lle permite cambiar a escala de frecuencia da CPU." + +#. temp hack for properly displaying intel turbo mode (actual freq + 1000kHz) +#: ../indicator_cpufreq/indicator.py:34 +#, python-format +msgid "%s GHz" +msgstr "%s GHz" + +#: ../indicator_cpufreq/indicator.py:34 +#, python-format +msgid "%.2f" +msgstr "%.2f" + +#: ../indicator_cpufreq/indicator.py:36 +msgid "(turbo mode)" +msgstr "(modo turbo)" + +#: ../indicator_cpufreq/indicator.py:40 +msgid "Conservative" +msgstr "Conservador" + +#: ../indicator_cpufreq/indicator.py:41 +msgid "Ondemand" +msgstr "Baixo demanda" + +#. 'userspace': _("Userspace"), +#: ../indicator_cpufreq/indicator.py:43 +msgid "Powersave" +msgstr "Aforro de enerxía" + +#: ../indicator_cpufreq/indicator.py:44 +msgid "Performance" +msgstr "Rendemento" diff -Nru indicator-cpufreq-0.2/po/he.po indicator-cpufreq-0.2.2/po/he.po --- indicator-cpufreq-0.2/po/he.po 1970-01-01 00:00:00.000000000 +0000 +++ indicator-cpufreq-0.2.2/po/he.po 2013-03-08 07:15:41.000000000 +0000 @@ -0,0 +1,83 @@ +# Hebrew translation for indicator-cpufreq +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the indicator-cpufreq package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: indicator-cpufreq\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-02-25 23:19+0700\n" +"PO-Revision-Date: 2013-02-26 14:33+0000\n" +"Last-Translator: Yaron \n" +"Language-Team: Hebrew \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-02-27 04:56+0000\n" +"X-Generator: Launchpad (build 16506)\n" + +#: ../indicator-cpufreq.desktop.in.h:1 +msgid "CPU Frequency Scaling Indicator" +msgstr "מחוון שינוי בתדירות המעבד" + +#: ../indicator-cpufreq.desktop.in.h:2 +msgid "An indicator for monitoring and switching CPU frequency scaling" +msgstr "מחוון למעקב ולהחלפה בין תדירויות המעבד" + +#. Support for command line options. +#: ../bin/indicator-cpufreq.py:60 +msgid "indicator-cpufreq [options]" +msgstr "indicator-cpufreq [options]" + +#: ../bin/indicator-cpufreq.py:63 +msgid "print the maximum debugging info (implies -vv)" +msgstr "print the maximum debugging info (implies -vv)" + +#: ../bin/indicator-cpufreq.py:65 +msgid "set error_level output to warning, info, and then debug" +msgstr "set error_level output to warning, info, and then debug" + +#: ../bin/indicator-cpufreq.py:67 +msgid "show the frequency with text along with the icon" +msgstr "show the frequency with text along with the icon" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 +msgid "Change CPU frequency scaling" +msgstr "החלפת תדירות המעבד" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 +msgid "System policy prevents you from changing CPU frequency scaling." +msgstr "מדיניות המערכת מונעת ממך לשנות את תדירות המעבד." + +#. temp hack for properly displaying intel turbo mode (actual freq + 1000kHz) +#: ../indicator_cpufreq/indicator.py:34 +#, python-format +msgid "%s GHz" +msgstr "%s גה״ץ" + +#: ../indicator_cpufreq/indicator.py:34 +#, python-format +msgid "%.2f" +msgstr "%.2f" + +#: ../indicator_cpufreq/indicator.py:36 +msgid "(turbo mode)" +msgstr "(מצב מהיר)" + +#: ../indicator_cpufreq/indicator.py:40 +msgid "Conservative" +msgstr "שמרני" + +#: ../indicator_cpufreq/indicator.py:41 +msgid "Ondemand" +msgstr "לפי_דרישה" + +#. 'userspace': _("Userspace"), +#: ../indicator_cpufreq/indicator.py:43 +msgid "Powersave" +msgstr "חסכון" + +#: ../indicator_cpufreq/indicator.py:44 +msgid "Performance" +msgstr "ביצועים" diff -Nru indicator-cpufreq-0.2/po/hr.po indicator-cpufreq-0.2.2/po/hr.po --- indicator-cpufreq-0.2/po/hr.po 2013-01-25 14:13:10.000000000 +0000 +++ indicator-cpufreq-0.2.2/po/hr.po 2013-03-08 07:15:41.000000000 +0000 @@ -7,30 +7,51 @@ msgstr "" "Project-Id-Version: indicator-cpufreq\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2011-07-20 16:36+0700\n" -"PO-Revision-Date: 2012-06-02 10:55+0000\n" +"POT-Creation-Date: 2013-02-25 23:19+0700\n" +"PO-Revision-Date: 2013-02-27 21:16+0000\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-06-03 05:11+0000\n" -"X-Generator: Launchpad (build 15342)\n" +"X-Launchpad-Export-Date: 2013-02-28 05:08+0000\n" +"X-Generator: Launchpad (build 16506)\n" + +#: ../indicator-cpufreq.desktop.in.h:1 +msgid "CPU Frequency Scaling Indicator" +msgstr "Indikator CPU frekvencije" + +#: ../indicator-cpufreq.desktop.in.h:2 +msgid "An indicator for monitoring and switching CPU frequency scaling" +msgstr "Indikator za nadzor i promjenu CPU frekvencije" #. Support for command line options. -#: ../bin/indicator-cpufreq.py:64 +#: ../bin/indicator-cpufreq.py:60 msgid "indicator-cpufreq [options]" msgstr "indikator-cpufrek [mogućnosti]" -#: ../bin/indicator-cpufreq.py:67 -msgid "Print the maximum debugging info (implies -vv)" -msgstr "Ispiši najveću informaciju otklanjanja greške (implies -vv)" +#: ../bin/indicator-cpufreq.py:63 +msgid "print the maximum debugging info (implies -vv)" +msgstr "ispiši maksimalne informacije otkalanjanja greške (implies -vv)" -#: ../bin/indicator-cpufreq.py:69 +#: ../bin/indicator-cpufreq.py:65 msgid "set error_level output to warning, info, and then debug" msgstr "" "postavi error_level izlaz za upozorenje, informacije i onda otkloni grešku" +#: ../bin/indicator-cpufreq.py:67 +msgid "show the frequency with text along with the icon" +msgstr "prikaži frekvenciju sa tekstom zajedno sa ikonom" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 +msgid "Change CPU frequency scaling" +msgstr "Promjena CPU frekvencije" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 +msgid "System policy prevents you from changing CPU frequency scaling." +msgstr "Pravila sustava sprječavaju promjene CPU frekvencije." + +#. temp hack for properly displaying intel turbo mode (actual freq + 1000kHz) #: ../indicator_cpufreq/indicator.py:34 #, python-format msgid "%s GHz" @@ -41,35 +62,23 @@ msgid "%.2f" msgstr "%.2f" -#: ../indicator_cpufreq/indicator.py:37 +#: ../indicator_cpufreq/indicator.py:36 +msgid "(turbo mode)" +msgstr "(turbo mod)" + +#: ../indicator_cpufreq/indicator.py:40 msgid "Conservative" msgstr "Konzervativno" -#: ../indicator_cpufreq/indicator.py:38 +#: ../indicator_cpufreq/indicator.py:41 msgid "Ondemand" msgstr "Na zahtjev" #. 'userspace': _("Userspace"), -#: ../indicator_cpufreq/indicator.py:40 +#: ../indicator_cpufreq/indicator.py:43 msgid "Powersave" msgstr "Štedljivo" -#: ../indicator_cpufreq/indicator.py:41 +#: ../indicator_cpufreq/indicator.py:44 msgid "Performance" msgstr "Performanse" - -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 -msgid "Change CPU frequency scaling" -msgstr "Promjena CPU frekvencije" - -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 -msgid "System policy prevents you from changing CPU frequency scaling." -msgstr "Pravila sustava sprječavaju promjene CPU frekvencije." - -#: ../indicator-cpufreq.desktop.in.h:1 -msgid "An indicator for monitoring and switching CPU frequency scaling" -msgstr "Indikator za nadzor i promjenu CPU frekvencije" - -#: ../indicator-cpufreq.desktop.in.h:2 -msgid "CPU Frequency Scaling Indicator" -msgstr "Indikator CPU frekvencije" diff -Nru indicator-cpufreq-0.2/po/hu.po indicator-cpufreq-0.2.2/po/hu.po --- indicator-cpufreq-0.2/po/hu.po 2013-01-25 14:13:10.000000000 +0000 +++ indicator-cpufreq-0.2.2/po/hu.po 2013-03-08 07:15:41.000000000 +0000 @@ -7,30 +7,55 @@ msgstr "" "Project-Id-Version: indicator-cpufreq\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2011-07-20 16:36+0700\n" +"POT-Creation-Date: 2013-02-25 23:19+0700\n" "PO-Revision-Date: 2012-01-22 13:02+0000\n" "Last-Translator: Péter Trombitás \n" "Language-Team: Hungarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-01-23 05:35+0000\n" -"X-Generator: Launchpad (build 14700)\n" +"X-Launchpad-Export-Date: 2013-02-26 05:16+0000\n" +"X-Generator: Launchpad (build 16506)\n" + +#: ../indicator-cpufreq.desktop.in.h:1 +msgid "CPU Frequency Scaling Indicator" +msgstr "CPU-frekvencia skálázó indikátor" + +#: ../indicator-cpufreq.desktop.in.h:2 +msgid "An indicator for monitoring and switching CPU frequency scaling" +msgstr "" +"Egy indikátor a CPU-frekvencia skálázás megjelenítésére és annak " +"változtatására" #. Support for command line options. -#: ../bin/indicator-cpufreq.py:64 +#: ../bin/indicator-cpufreq.py:60 msgid "indicator-cpufreq [options]" msgstr "indicator-cpufreq [beállítások]" -#: ../bin/indicator-cpufreq.py:67 -msgid "Print the maximum debugging info (implies -vv)" -msgstr "A maximális debug információkat nyomtassa (jelenti -vv)" +#: ../bin/indicator-cpufreq.py:63 +msgid "print the maximum debugging info (implies -vv)" +msgstr "" -#: ../bin/indicator-cpufreq.py:69 +#: ../bin/indicator-cpufreq.py:65 msgid "set error_level output to warning, info, and then debug" msgstr "" "error_level kimenet beállítása figyelmeztetésre, információra majd debugra" +#: ../bin/indicator-cpufreq.py:67 +msgid "show the frequency with text along with the icon" +msgstr "" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 +msgid "Change CPU frequency scaling" +msgstr "A CPU-frekvencia skálázás megváltoztatása" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 +msgid "System policy prevents you from changing CPU frequency scaling." +msgstr "" +"A rendszer házirendje nem engedélyezi CPU-frekvencia skálázás " +"megváltoztatását." + +#. temp hack for properly displaying intel turbo mode (actual freq + 1000kHz) #: ../indicator_cpufreq/indicator.py:34 #, python-format msgid "%s GHz" @@ -41,39 +66,26 @@ msgid "%.2f" msgstr "%.2f" -#: ../indicator_cpufreq/indicator.py:37 +#: ../indicator_cpufreq/indicator.py:36 +msgid "(turbo mode)" +msgstr "" + +#: ../indicator_cpufreq/indicator.py:40 msgid "Conservative" msgstr "Hagyományos" -#: ../indicator_cpufreq/indicator.py:38 +#: ../indicator_cpufreq/indicator.py:41 msgid "Ondemand" msgstr "Kiegyensúlyozott" #. 'userspace': _("Userspace"), -#: ../indicator_cpufreq/indicator.py:40 +#: ../indicator_cpufreq/indicator.py:43 msgid "Powersave" msgstr "Energiatakarékos" -#: ../indicator_cpufreq/indicator.py:41 +#: ../indicator_cpufreq/indicator.py:44 msgid "Performance" msgstr "Teljesítmény" -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 -msgid "Change CPU frequency scaling" -msgstr "A CPU-frekvencia skálázás megváltoztatása" - -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 -msgid "System policy prevents you from changing CPU frequency scaling." -msgstr "" -"A rendszer házirendje nem engedélyezi CPU-frekvencia skálázás " -"megváltoztatását." - -#: ../indicator-cpufreq.desktop.in.h:1 -msgid "An indicator for monitoring and switching CPU frequency scaling" -msgstr "" -"Egy indikátor a CPU-frekvencia skálázás megjelenítésére és annak " -"változtatására" - -#: ../indicator-cpufreq.desktop.in.h:2 -msgid "CPU Frequency Scaling Indicator" -msgstr "CPU-frekvencia skálázó indikátor" +#~ msgid "Print the maximum debugging info (implies -vv)" +#~ msgstr "A maximális debug információkat nyomtassa (jelenti -vv)" diff -Nru indicator-cpufreq-0.2/po/ia.po indicator-cpufreq-0.2.2/po/ia.po --- indicator-cpufreq-0.2/po/ia.po 2013-01-25 14:13:10.000000000 +0000 +++ indicator-cpufreq-0.2.2/po/ia.po 2013-03-08 07:15:41.000000000 +0000 @@ -7,29 +7,51 @@ msgstr "" "Project-Id-Version: indicator-cpufreq\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2011-07-20 16:36+0700\n" +"POT-Creation-Date: 2013-02-25 23:19+0700\n" "PO-Revision-Date: 2011-11-19 17:52+0000\n" -"Last-Translator: Emilio Sepulveda \n" +"Last-Translator: Emilio Sepulveda \n" "Language-Team: Interlingua \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-11-20 06:04+0000\n" -"X-Generator: Launchpad (build 14299)\n" +"X-Launchpad-Export-Date: 2013-02-26 05:16+0000\n" +"X-Generator: Launchpad (build 16506)\n" + +#: ../indicator-cpufreq.desktop.in.h:1 +msgid "CPU Frequency Scaling Indicator" +msgstr "Indicator de scala de frequentia de CPU" + +#: ../indicator-cpufreq.desktop.in.h:2 +msgid "An indicator for monitoring and switching CPU frequency scaling" +msgstr "Un indicator pro controlar e cambiar le scala de frequentia de CPU" #. Support for command line options. -#: ../bin/indicator-cpufreq.py:64 +#: ../bin/indicator-cpufreq.py:60 msgid "indicator-cpufreq [options]" msgstr "indicator-cpufreq [optiones]" -#: ../bin/indicator-cpufreq.py:67 -msgid "Print the maximum debugging info (implies -vv)" +#: ../bin/indicator-cpufreq.py:63 +msgid "print the maximum debugging info (implies -vv)" msgstr "" -#: ../bin/indicator-cpufreq.py:69 +#: ../bin/indicator-cpufreq.py:65 msgid "set error_level output to warning, info, and then debug" msgstr "" +#: ../bin/indicator-cpufreq.py:67 +msgid "show the frequency with text along with the icon" +msgstr "" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 +msgid "Change CPU frequency scaling" +msgstr "Cambia le scala de frequentia del CPU" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 +msgid "System policy prevents you from changing CPU frequency scaling." +msgstr "" +"Un politica de systema impide te cambiar le scala de frequentia de CPU" + +#. temp hack for properly displaying intel turbo mode (actual freq + 1000kHz) #: ../indicator_cpufreq/indicator.py:34 #, python-format msgid "%s GHz" @@ -40,36 +62,23 @@ msgid "%.2f" msgstr "" -#: ../indicator_cpufreq/indicator.py:37 +#: ../indicator_cpufreq/indicator.py:36 +msgid "(turbo mode)" +msgstr "" + +#: ../indicator_cpufreq/indicator.py:40 msgid "Conservative" msgstr "Conservative" -#: ../indicator_cpufreq/indicator.py:38 +#: ../indicator_cpufreq/indicator.py:41 msgid "Ondemand" msgstr "" #. 'userspace': _("Userspace"), -#: ../indicator_cpufreq/indicator.py:40 +#: ../indicator_cpufreq/indicator.py:43 msgid "Powersave" msgstr "Sparnio de energia" -#: ../indicator_cpufreq/indicator.py:41 +#: ../indicator_cpufreq/indicator.py:44 msgid "Performance" msgstr "Prestation" - -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 -msgid "Change CPU frequency scaling" -msgstr "Cambia le scala de frequentia del CPU" - -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 -msgid "System policy prevents you from changing CPU frequency scaling." -msgstr "" -"Un politica de systema impide te cambiar le scala de frequentia de CPU" - -#: ../indicator-cpufreq.desktop.in.h:1 -msgid "An indicator for monitoring and switching CPU frequency scaling" -msgstr "Un indicator pro controlar e cambiar le scala de frequentia de CPU" - -#: ../indicator-cpufreq.desktop.in.h:2 -msgid "CPU Frequency Scaling Indicator" -msgstr "Indicator de scala de frequentia de CPU" diff -Nru indicator-cpufreq-0.2/po/indicator-cpufreq.pot indicator-cpufreq-0.2.2/po/indicator-cpufreq.pot --- indicator-cpufreq-0.2/po/indicator-cpufreq.pot 2013-01-25 14:13:10.000000000 +0000 +++ indicator-cpufreq-0.2.2/po/indicator-cpufreq.pot 2013-02-25 16:19:29.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-20 16:36+0700\n" +"POT-Creation-Date: 2013-02-25 23:19+0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,19 +17,40 @@ "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +#: ../indicator-cpufreq.desktop.in.h:1 +msgid "CPU Frequency Scaling Indicator" +msgstr "" + +#: ../indicator-cpufreq.desktop.in.h:2 +msgid "An indicator for monitoring and switching CPU frequency scaling" +msgstr "" + #. Support for command line options. -#: ../bin/indicator-cpufreq.py:64 +#: ../bin/indicator-cpufreq.py:60 msgid "indicator-cpufreq [options]" msgstr "" -#: ../bin/indicator-cpufreq.py:67 -msgid "Print the maximum debugging info (implies -vv)" +#: ../bin/indicator-cpufreq.py:63 +msgid "print the maximum debugging info (implies -vv)" msgstr "" -#: ../bin/indicator-cpufreq.py:69 +#: ../bin/indicator-cpufreq.py:65 msgid "set error_level output to warning, info, and then debug" msgstr "" +#: ../bin/indicator-cpufreq.py:67 +msgid "show the frequency with text along with the icon" +msgstr "" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 +msgid "Change CPU frequency scaling" +msgstr "" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 +msgid "System policy prevents you from changing CPU frequency scaling." +msgstr "" + +#. temp hack for properly displaying intel turbo mode (actual freq + 1000kHz) #: ../indicator_cpufreq/indicator.py:34 #, python-format msgid "%s GHz" @@ -40,35 +61,23 @@ msgid "%.2f" msgstr "" -#: ../indicator_cpufreq/indicator.py:37 +#: ../indicator_cpufreq/indicator.py:36 +msgid "(turbo mode)" +msgstr "" + +#: ../indicator_cpufreq/indicator.py:40 msgid "Conservative" msgstr "" -#: ../indicator_cpufreq/indicator.py:38 +#: ../indicator_cpufreq/indicator.py:41 msgid "Ondemand" msgstr "" #. 'userspace': _("Userspace"), -#: ../indicator_cpufreq/indicator.py:40 +#: ../indicator_cpufreq/indicator.py:43 msgid "Powersave" msgstr "" -#: ../indicator_cpufreq/indicator.py:41 +#: ../indicator_cpufreq/indicator.py:44 msgid "Performance" msgstr "" - -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 -msgid "Change CPU frequency scaling" -msgstr "" - -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 -msgid "System policy prevents you from changing CPU frequency scaling." -msgstr "" - -#: ../indicator-cpufreq.desktop.in.h:1 -msgid "An indicator for monitoring and switching CPU frequency scaling" -msgstr "" - -#: ../indicator-cpufreq.desktop.in.h:2 -msgid "CPU Frequency Scaling Indicator" -msgstr "" diff -Nru indicator-cpufreq-0.2/po/is.po indicator-cpufreq-0.2.2/po/is.po --- indicator-cpufreq-0.2/po/is.po 2013-01-25 14:13:10.000000000 +0000 +++ indicator-cpufreq-0.2.2/po/is.po 2013-03-08 07:15:41.000000000 +0000 @@ -7,29 +7,50 @@ msgstr "" "Project-Id-Version: indicator-cpufreq\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2011-07-20 16:36+0700\n" +"POT-Creation-Date: 2013-02-25 23:19+0700\n" "PO-Revision-Date: 2012-03-07 12:23+0000\n" "Last-Translator: Sigurpáll Sigurðsson \n" "Language-Team: Icelandic \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-03-08 05:09+0000\n" -"X-Generator: Launchpad (build 14914)\n" +"X-Launchpad-Export-Date: 2013-02-26 05:16+0000\n" +"X-Generator: Launchpad (build 16506)\n" + +#: ../indicator-cpufreq.desktop.in.h:1 +msgid "CPU Frequency Scaling Indicator" +msgstr "" + +#: ../indicator-cpufreq.desktop.in.h:2 +msgid "An indicator for monitoring and switching CPU frequency scaling" +msgstr "" #. Support for command line options. -#: ../bin/indicator-cpufreq.py:64 +#: ../bin/indicator-cpufreq.py:60 msgid "indicator-cpufreq [options]" msgstr "indicator-cpufreq [stillingar]" -#: ../bin/indicator-cpufreq.py:67 -msgid "Print the maximum debugging info (implies -vv)" +#: ../bin/indicator-cpufreq.py:63 +msgid "print the maximum debugging info (implies -vv)" msgstr "" -#: ../bin/indicator-cpufreq.py:69 +#: ../bin/indicator-cpufreq.py:65 msgid "set error_level output to warning, info, and then debug" msgstr "" +#: ../bin/indicator-cpufreq.py:67 +msgid "show the frequency with text along with the icon" +msgstr "" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 +msgid "Change CPU frequency scaling" +msgstr "" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 +msgid "System policy prevents you from changing CPU frequency scaling." +msgstr "" + +#. temp hack for properly displaying intel turbo mode (actual freq + 1000kHz) #: ../indicator_cpufreq/indicator.py:34 #, python-format msgid "%s GHz" @@ -40,35 +61,23 @@ msgid "%.2f" msgstr "%.2f" -#: ../indicator_cpufreq/indicator.py:37 +#: ../indicator_cpufreq/indicator.py:36 +msgid "(turbo mode)" +msgstr "" + +#: ../indicator_cpufreq/indicator.py:40 msgid "Conservative" msgstr "" -#: ../indicator_cpufreq/indicator.py:38 +#: ../indicator_cpufreq/indicator.py:41 msgid "Ondemand" msgstr "" #. 'userspace': _("Userspace"), -#: ../indicator_cpufreq/indicator.py:40 +#: ../indicator_cpufreq/indicator.py:43 msgid "Powersave" msgstr "" -#: ../indicator_cpufreq/indicator.py:41 +#: ../indicator_cpufreq/indicator.py:44 msgid "Performance" msgstr "" - -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 -msgid "Change CPU frequency scaling" -msgstr "" - -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 -msgid "System policy prevents you from changing CPU frequency scaling." -msgstr "" - -#: ../indicator-cpufreq.desktop.in.h:1 -msgid "An indicator for monitoring and switching CPU frequency scaling" -msgstr "" - -#: ../indicator-cpufreq.desktop.in.h:2 -msgid "CPU Frequency Scaling Indicator" -msgstr "" diff -Nru indicator-cpufreq-0.2/po/it.po indicator-cpufreq-0.2.2/po/it.po --- indicator-cpufreq-0.2/po/it.po 2013-01-25 14:13:10.000000000 +0000 +++ indicator-cpufreq-0.2.2/po/it.po 2013-03-08 07:15:41.000000000 +0000 @@ -7,29 +7,51 @@ msgstr "" "Project-Id-Version: indicator-cpufreq\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2011-07-20 16:36+0700\n" -"PO-Revision-Date: 2012-05-13 15:58+0000\n" -"Last-Translator: Bennici Piercarlo \n" +"POT-Creation-Date: 2013-02-25 23:19+0700\n" +"PO-Revision-Date: 2013-02-26 20:56+0000\n" +"Last-Translator: Milo Casagrande \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-05-14 04:52+0000\n" -"X-Generator: Launchpad (build 15238)\n" +"X-Launchpad-Export-Date: 2013-02-27 04:56+0000\n" +"X-Generator: Launchpad (build 16506)\n" + +#: ../indicator-cpufreq.desktop.in.h:1 +msgid "CPU Frequency Scaling Indicator" +msgstr "Indicatore della frequenza della CPU" + +#: ../indicator-cpufreq.desktop.in.h:2 +msgid "An indicator for monitoring and switching CPU frequency scaling" +msgstr "" +"Un indicatore per il monitoraggio e la modifica della frequenza della CPU" #. Support for command line options. -#: ../bin/indicator-cpufreq.py:64 +#: ../bin/indicator-cpufreq.py:60 msgid "indicator-cpufreq [options]" msgstr "indicator-cpufreq [opzioni]" -#: ../bin/indicator-cpufreq.py:67 -msgid "Print the maximum debugging info (implies -vv)" -msgstr "Visualizza tutte le informazioni di debug" +#: ../bin/indicator-cpufreq.py:63 +msgid "print the maximum debugging info (implies -vv)" +msgstr "Stampa informazioni di debug (implica -vv)" -#: ../bin/indicator-cpufreq.py:69 +#: ../bin/indicator-cpufreq.py:65 msgid "set error_level output to warning, info, and then debug" -msgstr "imposta il livello d'errore in uscita a warning, info e debug" +msgstr "Imposta error_level a warning, info e infine debug" + +#: ../bin/indicator-cpufreq.py:67 +msgid "show the frequency with text along with the icon" +msgstr "Mostra la frequenza con testo e icona" +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 +msgid "Change CPU frequency scaling" +msgstr "Modifica della frequenza della CPU" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 +msgid "System policy prevents you from changing CPU frequency scaling." +msgstr "La politica di sistema impedisce di cambiare la frequenza della CPU" + +#. temp hack for properly displaying intel turbo mode (actual freq + 1000kHz) #: ../indicator_cpufreq/indicator.py:34 #, python-format msgid "%s GHz" @@ -40,38 +62,23 @@ msgid "%.2f" msgstr "%.2f" -#: ../indicator_cpufreq/indicator.py:37 +#: ../indicator_cpufreq/indicator.py:36 +msgid "(turbo mode)" +msgstr "(modalità turbo)" + +#: ../indicator_cpufreq/indicator.py:40 msgid "Conservative" msgstr "Conservativo" -#: ../indicator_cpufreq/indicator.py:38 +#: ../indicator_cpufreq/indicator.py:41 msgid "Ondemand" msgstr "Su richiesta" #. 'userspace': _("Userspace"), -#: ../indicator_cpufreq/indicator.py:40 +#: ../indicator_cpufreq/indicator.py:43 msgid "Powersave" msgstr "Risparmio energetico" -#: ../indicator_cpufreq/indicator.py:41 +#: ../indicator_cpufreq/indicator.py:44 msgid "Performance" msgstr "Prestazioni" - -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 -msgid "Change CPU frequency scaling" -msgstr "Cambiare la frequenza scalare della CPU" - -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 -msgid "System policy prevents you from changing CPU frequency scaling." -msgstr "" -"La politica di sistema impedisce di modificare la frequenza scalare della CPU" - -#: ../indicator-cpufreq.desktop.in.h:1 -msgid "An indicator for monitoring and switching CPU frequency scaling" -msgstr "" -"Un indicatore per il monitoraggio e la commutazione della frequenza scalare " -"della CPU" - -#: ../indicator-cpufreq.desktop.in.h:2 -msgid "CPU Frequency Scaling Indicator" -msgstr "Indicatore della frequenza scalare della CPU" diff -Nru indicator-cpufreq-0.2/po/lt.po indicator-cpufreq-0.2.2/po/lt.po --- indicator-cpufreq-0.2/po/lt.po 2013-01-25 14:13:10.000000000 +0000 +++ indicator-cpufreq-0.2.2/po/lt.po 2013-03-08 07:15:41.000000000 +0000 @@ -7,30 +7,51 @@ msgstr "" "Project-Id-Version: indicator-cpufreq\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2011-07-20 16:36+0700\n" +"POT-Creation-Date: 2013-02-25 23:19+0700\n" "PO-Revision-Date: 2012-10-05 02:45+0000\n" "Last-Translator: Mantas Kriaučiūnas \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-10-06 05:12+0000\n" -"X-Generator: Launchpad (build 16061)\n" +"X-Launchpad-Export-Date: 2013-02-26 05:16+0000\n" +"X-Generator: Launchpad (build 16506)\n" + +#: ../indicator-cpufreq.desktop.in.h:1 +msgid "CPU Frequency Scaling Indicator" +msgstr "CPU dažnio stebėjimas bei keitimas" + +#: ../indicator-cpufreq.desktop.in.h:2 +msgid "An indicator for monitoring and switching CPU frequency scaling" +msgstr "Procesoriaus dažnio stebėjimo bei keitimo indikatorius" #. Support for command line options. -#: ../bin/indicator-cpufreq.py:64 +#: ../bin/indicator-cpufreq.py:60 msgid "indicator-cpufreq [options]" msgstr "indicator-cpufreq [parametrai]" -#: ../bin/indicator-cpufreq.py:67 -msgid "Print the maximum debugging info (implies -vv)" -msgstr "Spausdinti daugiausiai derinimo informacijos (reiškia -vv)" +#: ../bin/indicator-cpufreq.py:63 +msgid "print the maximum debugging info (implies -vv)" +msgstr "" -#: ../bin/indicator-cpufreq.py:69 +#: ../bin/indicator-cpufreq.py:65 msgid "set error_level output to warning, info, and then debug" msgstr "" "nustatyti error_level išvedimą kaip įspėjimas, informacija ir po to derinimas" +#: ../bin/indicator-cpufreq.py:67 +msgid "show the frequency with text along with the icon" +msgstr "" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 +msgid "Change CPU frequency scaling" +msgstr "Keisti procesoriaus dažnį" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 +msgid "System policy prevents you from changing CPU frequency scaling." +msgstr "" + +#. temp hack for properly displaying intel turbo mode (actual freq + 1000kHz) #: ../indicator_cpufreq/indicator.py:34 #, python-format msgid "%s GHz" @@ -41,35 +62,26 @@ msgid "%.2f" msgstr "%.2f" -#: ../indicator_cpufreq/indicator.py:37 +#: ../indicator_cpufreq/indicator.py:36 +msgid "(turbo mode)" +msgstr "" + +#: ../indicator_cpufreq/indicator.py:40 msgid "Conservative" msgstr "Konservatyvus" -#: ../indicator_cpufreq/indicator.py:38 +#: ../indicator_cpufreq/indicator.py:41 msgid "Ondemand" msgstr "Pagal poreikį" #. 'userspace': _("Userspace"), -#: ../indicator_cpufreq/indicator.py:40 +#: ../indicator_cpufreq/indicator.py:43 msgid "Powersave" msgstr "Energijos taupymas" -#: ../indicator_cpufreq/indicator.py:41 +#: ../indicator_cpufreq/indicator.py:44 msgid "Performance" msgstr "Našumas" -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 -msgid "Change CPU frequency scaling" -msgstr "Keisti procesoriaus dažnį" - -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 -msgid "System policy prevents you from changing CPU frequency scaling." -msgstr "" - -#: ../indicator-cpufreq.desktop.in.h:1 -msgid "An indicator for monitoring and switching CPU frequency scaling" -msgstr "Procesoriaus dažnio stebėjimo bei keitimo indikatorius" - -#: ../indicator-cpufreq.desktop.in.h:2 -msgid "CPU Frequency Scaling Indicator" -msgstr "CPU dažnio stebėjimas bei keitimas" +#~ msgid "Print the maximum debugging info (implies -vv)" +#~ msgstr "Spausdinti daugiausiai derinimo informacijos (reiškia -vv)" diff -Nru indicator-cpufreq-0.2/po/lv.po indicator-cpufreq-0.2.2/po/lv.po --- indicator-cpufreq-0.2/po/lv.po 2013-01-25 14:13:10.000000000 +0000 +++ indicator-cpufreq-0.2.2/po/lv.po 2013-03-08 07:15:41.000000000 +0000 @@ -7,30 +7,51 @@ msgstr "" "Project-Id-Version: indicator-cpufreq\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2011-07-20 16:36+0700\n" +"POT-Creation-Date: 2013-02-25 23:19+0700\n" "PO-Revision-Date: 2010-12-20 04:35+0000\n" -"Last-Translator: Артём Попов \n" +"Last-Translator: Artem Popov \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-07-21 05:14+0000\n" -"X-Generator: Launchpad (build 13405)\n" +"X-Launchpad-Export-Date: 2013-02-26 05:16+0000\n" +"X-Generator: Launchpad (build 16506)\n" + +#: ../indicator-cpufreq.desktop.in.h:1 +msgid "CPU Frequency Scaling Indicator" +msgstr "" + +#: ../indicator-cpufreq.desktop.in.h:2 +msgid "An indicator for monitoring and switching CPU frequency scaling" +msgstr "" #. Support for command line options. -#: ../bin/indicator-cpufreq.py:64 +#: ../bin/indicator-cpufreq.py:60 msgid "indicator-cpufreq [options]" msgstr "indikators-cpufreq [opcijas]" -#: ../bin/indicator-cpufreq.py:67 -msgid "Print the maximum debugging info (implies -vv)" -msgstr "Izvadīt maksimālo atkļūdošanas informāciju ( īsteno -vv )" +#: ../bin/indicator-cpufreq.py:63 +msgid "print the maximum debugging info (implies -vv)" +msgstr "" -#: ../bin/indicator-cpufreq.py:69 +#: ../bin/indicator-cpufreq.py:65 msgid "set error_level output to warning, info, and then debug" msgstr "" "uzstādit error_level izeju uz brīdinājumu, informāciju un tad atkludošanu" +#: ../bin/indicator-cpufreq.py:67 +msgid "show the frequency with text along with the icon" +msgstr "" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 +msgid "Change CPU frequency scaling" +msgstr "" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 +msgid "System policy prevents you from changing CPU frequency scaling." +msgstr "" + +#. temp hack for properly displaying intel turbo mode (actual freq + 1000kHz) #: ../indicator_cpufreq/indicator.py:34 #, python-format msgid "%s GHz" @@ -41,44 +62,26 @@ msgid "%.2f" msgstr "%.2f" -#: ../indicator_cpufreq/indicator.py:37 +#: ../indicator_cpufreq/indicator.py:36 +msgid "(turbo mode)" +msgstr "" + +#: ../indicator_cpufreq/indicator.py:40 msgid "Conservative" msgstr "Konservatīvs" -#: ../indicator_cpufreq/indicator.py:38 +#: ../indicator_cpufreq/indicator.py:41 msgid "Ondemand" msgstr "Pēc pieprasijuma" #. 'userspace': _("Userspace"), -#: ../indicator_cpufreq/indicator.py:40 +#: ../indicator_cpufreq/indicator.py:43 msgid "Powersave" msgstr "Enerģijas taupīšana" -#: ../indicator_cpufreq/indicator.py:41 +#: ../indicator_cpufreq/indicator.py:44 msgid "Performance" msgstr "Veiktspēja" -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 -msgid "Change CPU frequency scaling" -msgstr "" - -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 -msgid "System policy prevents you from changing CPU frequency scaling." -msgstr "" - -#: ../indicator-cpufreq.desktop.in.h:1 -msgid "An indicator for monitoring and switching CPU frequency scaling" -msgstr "" - -#: ../indicator-cpufreq.desktop.in.h:2 -msgid "CPU Frequency Scaling Indicator" -msgstr "" - -#~ msgid "easter egg found" -#~ msgstr "lieldienu ola atrasta" - -#~ msgid "foo should be assigned to bar" -#~ msgstr "\"foo\" vajag būt piesaisaistītam \"bar\"" - -#~ msgid "Show debug messages" -#~ msgstr "Rādīt atkļūdošanas ziņojumus" +#~ msgid "Print the maximum debugging info (implies -vv)" +#~ msgstr "Izvadīt maksimālo atkļūdošanas informāciju ( īsteno -vv )" diff -Nru indicator-cpufreq-0.2/po/ms.po indicator-cpufreq-0.2.2/po/ms.po --- indicator-cpufreq-0.2/po/ms.po 1970-01-01 00:00:00.000000000 +0000 +++ indicator-cpufreq-0.2.2/po/ms.po 2013-03-08 07:15:41.000000000 +0000 @@ -0,0 +1,86 @@ +# Malay translation for indicator-cpufreq +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the indicator-cpufreq package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: indicator-cpufreq\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-02-25 23:19+0700\n" +"PO-Revision-Date: 2013-02-28 11:47+0000\n" +"Last-Translator: abuyop \n" +"Language-Team: Malay \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-03-01 05:01+0000\n" +"X-Generator: Launchpad (build 16514)\n" + +#: ../indicator-cpufreq.desktop.in.h:1 +msgid "CPU Frequency Scaling Indicator" +msgstr "Penunjuk Penskalaan Frekuensi CPU" + +#: ../indicator-cpufreq.desktop.in.h:2 +msgid "An indicator for monitoring and switching CPU frequency scaling" +msgstr "" +"Merupakan penunjuk untuk memantau dan menukar penskalaan frekuensi CPU" + +#. Support for command line options. +#: ../bin/indicator-cpufreq.py:60 +msgid "indicator-cpufreq [options]" +msgstr "indicator-cpufreq [pilihan]" + +#: ../bin/indicator-cpufreq.py:63 +msgid "print the maximum debugging info (implies -vv)" +msgstr "cetak maklumat penyahpepijatan maksimum (laksana -vv)" + +#: ../bin/indicator-cpufreq.py:65 +msgid "set error_level output to warning, info, and then debug" +msgstr "" +"tetapkan output error_level untuk amaran, maklumat, dan kemudian nyahpepijat" + +#: ../bin/indicator-cpufreq.py:67 +msgid "show the frequency with text along with the icon" +msgstr "papar frekuensi dengan teks bersama-sama dengan ikon" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 +msgid "Change CPU frequency scaling" +msgstr "Ubah penskalaan frekuensi CPU" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 +msgid "System policy prevents you from changing CPU frequency scaling." +msgstr "" +"Polisi sistem menghalang anda daripada menukar penskalaan frekuensi CPU." + +#. temp hack for properly displaying intel turbo mode (actual freq + 1000kHz) +#: ../indicator_cpufreq/indicator.py:34 +#, python-format +msgid "%s GHz" +msgstr "%s GHz" + +#: ../indicator_cpufreq/indicator.py:34 +#, python-format +msgid "%.2f" +msgstr "%.2f" + +#: ../indicator_cpufreq/indicator.py:36 +msgid "(turbo mode)" +msgstr "(mod turbo)" + +#: ../indicator_cpufreq/indicator.py:40 +msgid "Conservative" +msgstr "Konservatif" + +#: ../indicator_cpufreq/indicator.py:41 +msgid "Ondemand" +msgstr "Ikut permintaan" + +#. 'userspace': _("Userspace"), +#: ../indicator_cpufreq/indicator.py:43 +msgid "Powersave" +msgstr "Jimat Kuasa" + +#: ../indicator_cpufreq/indicator.py:44 +msgid "Performance" +msgstr "Prestasi" diff -Nru indicator-cpufreq-0.2/po/nl.po indicator-cpufreq-0.2.2/po/nl.po --- indicator-cpufreq-0.2/po/nl.po 2013-01-25 14:13:10.000000000 +0000 +++ indicator-cpufreq-0.2.2/po/nl.po 2013-03-08 07:15:41.000000000 +0000 @@ -7,29 +7,50 @@ msgstr "" "Project-Id-Version: indicator-cpufreq\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2011-07-20 16:36+0700\n" +"POT-Creation-Date: 2013-02-25 23:19+0700\n" "PO-Revision-Date: 2012-04-28 22:55+0000\n" "Last-Translator: Rachid \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-04-29 05:13+0000\n" -"X-Generator: Launchpad (build 15149)\n" +"X-Launchpad-Export-Date: 2013-02-26 05:16+0000\n" +"X-Generator: Launchpad (build 16506)\n" + +#: ../indicator-cpufreq.desktop.in.h:1 +msgid "CPU Frequency Scaling Indicator" +msgstr "" + +#: ../indicator-cpufreq.desktop.in.h:2 +msgid "An indicator for monitoring and switching CPU frequency scaling" +msgstr "" #. Support for command line options. -#: ../bin/indicator-cpufreq.py:64 +#: ../bin/indicator-cpufreq.py:60 msgid "indicator-cpufreq [options]" msgstr "indicator-cpufreq [opties]" -#: ../bin/indicator-cpufreq.py:67 -msgid "Print the maximum debugging info (implies -vv)" -msgstr "Maximale debug-informatie tonen (houd in: -vv)" +#: ../bin/indicator-cpufreq.py:63 +msgid "print the maximum debugging info (implies -vv)" +msgstr "" -#: ../bin/indicator-cpufreq.py:69 +#: ../bin/indicator-cpufreq.py:65 msgid "set error_level output to warning, info, and then debug" msgstr "Zet error_level uitvoer op warning, info, en dan debug" +#: ../bin/indicator-cpufreq.py:67 +msgid "show the frequency with text along with the icon" +msgstr "" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 +msgid "Change CPU frequency scaling" +msgstr "Schaling van CPU-frequentie veranderen" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 +msgid "System policy prevents you from changing CPU frequency scaling." +msgstr "" + +#. temp hack for properly displaying intel turbo mode (actual freq + 1000kHz) #: ../indicator_cpufreq/indicator.py:34 #, python-format msgid "%s GHz" @@ -40,35 +61,26 @@ msgid "%.2f" msgstr "%.2f" -#: ../indicator_cpufreq/indicator.py:37 +#: ../indicator_cpufreq/indicator.py:36 +msgid "(turbo mode)" +msgstr "" + +#: ../indicator_cpufreq/indicator.py:40 msgid "Conservative" msgstr "Conservatief" -#: ../indicator_cpufreq/indicator.py:38 +#: ../indicator_cpufreq/indicator.py:41 msgid "Ondemand" msgstr "Automatisch" #. 'userspace': _("Userspace"), -#: ../indicator_cpufreq/indicator.py:40 +#: ../indicator_cpufreq/indicator.py:43 msgid "Powersave" msgstr "Energiebesparing" -#: ../indicator_cpufreq/indicator.py:41 +#: ../indicator_cpufreq/indicator.py:44 msgid "Performance" msgstr "Prestatie" -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 -msgid "Change CPU frequency scaling" -msgstr "Schaling van CPU-frequentie veranderen" - -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 -msgid "System policy prevents you from changing CPU frequency scaling." -msgstr "" - -#: ../indicator-cpufreq.desktop.in.h:1 -msgid "An indicator for monitoring and switching CPU frequency scaling" -msgstr "" - -#: ../indicator-cpufreq.desktop.in.h:2 -msgid "CPU Frequency Scaling Indicator" -msgstr "" +#~ msgid "Print the maximum debugging info (implies -vv)" +#~ msgstr "Maximale debug-informatie tonen (houd in: -vv)" diff -Nru indicator-cpufreq-0.2/po/pl.po indicator-cpufreq-0.2.2/po/pl.po --- indicator-cpufreq-0.2/po/pl.po 2013-01-25 14:13:10.000000000 +0000 +++ indicator-cpufreq-0.2.2/po/pl.po 2013-03-08 07:15:41.000000000 +0000 @@ -7,29 +7,53 @@ msgstr "" "Project-Id-Version: indicator-cpufreq\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2011-07-20 16:36+0700\n" -"PO-Revision-Date: 2013-01-10 23:06+0000\n" -"Last-Translator: Kamil Warguła \n" +"POT-Creation-Date: 2013-02-25 23:19+0700\n" +"PO-Revision-Date: 2013-02-26 18:27+0000\n" +"Last-Translator: Isamu715 \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-12 05:08+0000\n" -"X-Generator: Launchpad (build 16420)\n" +"X-Launchpad-Export-Date: 2013-02-27 04:56+0000\n" +"X-Generator: Launchpad (build 16506)\n" + +#: ../indicator-cpufreq.desktop.in.h:1 +msgid "CPU Frequency Scaling Indicator" +msgstr "Aplet skalowania częstotliwości procesora" + +#: ../indicator-cpufreq.desktop.in.h:2 +msgid "An indicator for monitoring and switching CPU frequency scaling" +msgstr "" +"Wskaźnik monitorowania i przełączania skalowania częstotliwości procesora" #. Support for command line options. -#: ../bin/indicator-cpufreq.py:64 +#: ../bin/indicator-cpufreq.py:60 msgid "indicator-cpufreq [options]" msgstr "indicator-cpufreq [opcje]" -#: ../bin/indicator-cpufreq.py:67 -msgid "Print the maximum debugging info (implies -vv)" -msgstr "Wypisz maksimum informacji diagnostycznych (implies -vv)" +#: ../bin/indicator-cpufreq.py:63 +msgid "print the maximum debugging info (implies -vv)" +msgstr "wypisuj jak najwięcej informacji do debugowania (zakłada -vv)" -#: ../bin/indicator-cpufreq.py:69 +#: ../bin/indicator-cpufreq.py:65 msgid "set error_level output to warning, info, and then debug" -msgstr "set error_level output to warning, info, and then debug" +msgstr "" +"ustaw wyjście error_level na ostrzeżenie, informacje a potem debugowanie" +#: ../bin/indicator-cpufreq.py:67 +msgid "show the frequency with text along with the icon" +msgstr "pokazuj częstotliwość jako tekst obok ikony" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 +msgid "Change CPU frequency scaling" +msgstr "Zmiana częstotliwości skalowania procesora" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 +msgid "System policy prevents you from changing CPU frequency scaling." +msgstr "" +"Zasady systemu uniemożliwiają zmiany skalowania częstotliwości procesora." + +#. temp hack for properly displaying intel turbo mode (actual freq + 1000kHz) #: ../indicator_cpufreq/indicator.py:34 #, python-format msgid "%s GHz" @@ -40,37 +64,23 @@ msgid "%.2f" msgstr "%.2f" -#: ../indicator_cpufreq/indicator.py:37 +#: ../indicator_cpufreq/indicator.py:36 +msgid "(turbo mode)" +msgstr "(tryb turbo)" + +#: ../indicator_cpufreq/indicator.py:40 msgid "Conservative" msgstr "Konserwatywny" -#: ../indicator_cpufreq/indicator.py:38 +#: ../indicator_cpufreq/indicator.py:41 msgid "Ondemand" msgstr "Na żądanie" #. 'userspace': _("Userspace"), -#: ../indicator_cpufreq/indicator.py:40 +#: ../indicator_cpufreq/indicator.py:43 msgid "Powersave" msgstr "Oszczędzanie energii" -#: ../indicator_cpufreq/indicator.py:41 +#: ../indicator_cpufreq/indicator.py:44 msgid "Performance" msgstr "Wydajność" - -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 -msgid "Change CPU frequency scaling" -msgstr "Zmiana częstotliwości skalowania procesora" - -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 -msgid "System policy prevents you from changing CPU frequency scaling." -msgstr "" -"Zasady systemu uniemożliwiają zmiany skalowania częstotliwości procesora." - -#: ../indicator-cpufreq.desktop.in.h:1 -msgid "An indicator for monitoring and switching CPU frequency scaling" -msgstr "" -"Wskaźnik monitorowania i przełączania skalowania częstotliwości procesora" - -#: ../indicator-cpufreq.desktop.in.h:2 -msgid "CPU Frequency Scaling Indicator" -msgstr "Aplet skalowania częstotliwości procesora" diff -Nru indicator-cpufreq-0.2/po/pt.po indicator-cpufreq-0.2.2/po/pt.po --- indicator-cpufreq-0.2/po/pt.po 2013-01-25 14:13:10.000000000 +0000 +++ indicator-cpufreq-0.2.2/po/pt.po 2013-03-08 07:15:41.000000000 +0000 @@ -7,29 +7,52 @@ msgstr "" "Project-Id-Version: indicator-cpufreq\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2011-07-20 16:36+0700\n" +"POT-Creation-Date: 2013-02-25 23:19+0700\n" "PO-Revision-Date: 2012-08-15 17:08+0000\n" "Last-Translator: Major Pipe \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-16 04:51+0000\n" -"X-Generator: Launchpad (build 15810)\n" +"X-Launchpad-Export-Date: 2013-02-26 05:16+0000\n" +"X-Generator: Launchpad (build 16506)\n" + +#: ../indicator-cpufreq.desktop.in.h:1 +msgid "CPU Frequency Scaling Indicator" +msgstr "Indicador da velocidade do processador." + +#: ../indicator-cpufreq.desktop.in.h:2 +msgid "An indicator for monitoring and switching CPU frequency scaling" +msgstr "Um indicador para monitorizar e alterar a velocidade do processador." #. Support for command line options. -#: ../bin/indicator-cpufreq.py:64 +#: ../bin/indicator-cpufreq.py:60 msgid "indicator-cpufreq [options]" msgstr "Opções" -#: ../bin/indicator-cpufreq.py:67 -msgid "Print the maximum debugging info (implies -vv)" +#: ../bin/indicator-cpufreq.py:63 +msgid "print the maximum debugging info (implies -vv)" msgstr "" -#: ../bin/indicator-cpufreq.py:69 +#: ../bin/indicator-cpufreq.py:65 msgid "set error_level output to warning, info, and then debug" msgstr "" +#: ../bin/indicator-cpufreq.py:67 +msgid "show the frequency with text along with the icon" +msgstr "" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 +msgid "Change CPU frequency scaling" +msgstr "Mudar frequência do processador" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 +msgid "System policy prevents you from changing CPU frequency scaling." +msgstr "" +"As definições do sistema não lhe permitem modificar a velocidade do " +"processador." + +#. temp hack for properly displaying intel turbo mode (actual freq + 1000kHz) #: ../indicator_cpufreq/indicator.py:34 #, python-format msgid "%s GHz" @@ -40,37 +63,23 @@ msgid "%.2f" msgstr "%.2f" -#: ../indicator_cpufreq/indicator.py:37 +#: ../indicator_cpufreq/indicator.py:36 +msgid "(turbo mode)" +msgstr "" + +#: ../indicator_cpufreq/indicator.py:40 msgid "Conservative" msgstr "Poupança" -#: ../indicator_cpufreq/indicator.py:38 +#: ../indicator_cpufreq/indicator.py:41 msgid "Ondemand" msgstr "Adaptável" #. 'userspace': _("Userspace"), -#: ../indicator_cpufreq/indicator.py:40 +#: ../indicator_cpufreq/indicator.py:43 msgid "Powersave" msgstr "Mínimo" -#: ../indicator_cpufreq/indicator.py:41 +#: ../indicator_cpufreq/indicator.py:44 msgid "Performance" msgstr "Máximo" - -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 -msgid "Change CPU frequency scaling" -msgstr "Mudar frequência do processador" - -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 -msgid "System policy prevents you from changing CPU frequency scaling." -msgstr "" -"As definições do sistema não lhe permitem modificar a velocidade do " -"processador." - -#: ../indicator-cpufreq.desktop.in.h:1 -msgid "An indicator for monitoring and switching CPU frequency scaling" -msgstr "Um indicador para monitorizar e alterar a velocidade do processador." - -#: ../indicator-cpufreq.desktop.in.h:2 -msgid "CPU Frequency Scaling Indicator" -msgstr "Indicador da velocidade do processador." diff -Nru indicator-cpufreq-0.2/po/pt_BR.po indicator-cpufreq-0.2.2/po/pt_BR.po --- indicator-cpufreq-0.2/po/pt_BR.po 1970-01-01 00:00:00.000000000 +0000 +++ indicator-cpufreq-0.2.2/po/pt_BR.po 2013-03-08 07:15:41.000000000 +0000 @@ -0,0 +1,87 @@ +# Brazilian Portuguese translation for indicator-cpufreq +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the indicator-cpufreq package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: indicator-cpufreq\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-02-25 23:19+0700\n" +"PO-Revision-Date: 2013-02-26 14:20+0000\n" +"Last-Translator: Rafael Neri \n" +"Language-Team: Brazilian Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-02-27 04:56+0000\n" +"X-Generator: Launchpad (build 16506)\n" + +#: ../indicator-cpufreq.desktop.in.h:1 +msgid "CPU Frequency Scaling Indicator" +msgstr "Indicador de escala de frequência da CPU" + +#: ../indicator-cpufreq.desktop.in.h:2 +msgid "An indicator for monitoring and switching CPU frequency scaling" +msgstr "Um indicador para monitorar e alternar a escala de frequência da CPU" + +#. Support for command line options. +#: ../bin/indicator-cpufreq.py:60 +msgid "indicator-cpufreq [options]" +msgstr "indicator-cpufreq [opções]" + +#: ../bin/indicator-cpufreq.py:63 +msgid "print the maximum debugging info (implies -vv)" +msgstr "Exibe o máximo de informações de depuração (implica -w)" + +#: ../bin/indicator-cpufreq.py:65 +msgid "set error_level output to warning, info, and then debug" +msgstr "" +"Definir a saída de \"error_level\" para \"warning\" ou \"info\" e em seguida " +"depurar" + +#: ../bin/indicator-cpufreq.py:67 +msgid "show the frequency with text along with the icon" +msgstr "mostra a frequência com texto e ícone" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 +msgid "Change CPU frequency scaling" +msgstr "Alterar a escala de frequência da CPU" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 +msgid "System policy prevents you from changing CPU frequency scaling." +msgstr "" +"A política de segurança do sistema impede que você altere a escala de " +"freqüência da CPU." + +#. temp hack for properly displaying intel turbo mode (actual freq + 1000kHz) +#: ../indicator_cpufreq/indicator.py:34 +#, python-format +msgid "%s GHz" +msgstr "%s GHz" + +#: ../indicator_cpufreq/indicator.py:34 +#, python-format +msgid "%.2f" +msgstr "%.2f" + +#: ../indicator_cpufreq/indicator.py:36 +msgid "(turbo mode)" +msgstr "(modo turbo)" + +#: ../indicator_cpufreq/indicator.py:40 +msgid "Conservative" +msgstr "Moderado" + +#: ../indicator_cpufreq/indicator.py:41 +msgid "Ondemand" +msgstr "Sob demanda" + +#. 'userspace': _("Userspace"), +#: ../indicator_cpufreq/indicator.py:43 +msgid "Powersave" +msgstr "Economia de energia" + +#: ../indicator_cpufreq/indicator.py:44 +msgid "Performance" +msgstr "Desempenho" diff -Nru indicator-cpufreq-0.2/po/ru.po indicator-cpufreq-0.2.2/po/ru.po --- indicator-cpufreq-0.2/po/ru.po 2013-01-25 14:13:10.000000000 +0000 +++ indicator-cpufreq-0.2.2/po/ru.po 2013-03-08 07:15:41.000000000 +0000 @@ -7,29 +7,50 @@ msgstr "" "Project-Id-Version: indicator-cpufreq\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2011-07-20 16:36+0700\n" -"PO-Revision-Date: 2013-01-25 04:28+0000\n" -"Last-Translator: Artem Popov \n" +"POT-Creation-Date: 2013-02-25 23:19+0700\n" +"PO-Revision-Date: 2013-03-01 10:39+0000\n" +"Last-Translator: Vitaly Danilovich \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-25 05:40+0000\n" -"X-Generator: Launchpad (build 16445)\n" +"X-Launchpad-Export-Date: 2013-03-02 05:05+0000\n" +"X-Generator: Launchpad (build 16514)\n" + +#: ../indicator-cpufreq.desktop.in.h:1 +msgid "CPU Frequency Scaling Indicator" +msgstr "Индикатор частоты процессора" + +#: ../indicator-cpufreq.desktop.in.h:2 +msgid "An indicator for monitoring and switching CPU frequency scaling" +msgstr "Индикатор для отображения и переключения частоты процессора" #. Support for command line options. -#: ../bin/indicator-cpufreq.py:64 +#: ../bin/indicator-cpufreq.py:60 msgid "indicator-cpufreq [options]" msgstr "indicator-cpufreq [параметры]" -#: ../bin/indicator-cpufreq.py:67 -msgid "Print the maximum debugging info (implies -vv)" -msgstr "Вывести максимальное количество сведений об отладке (-vv)" +#: ../bin/indicator-cpufreq.py:63 +msgid "print the maximum debugging info (implies -vv)" +msgstr "показывать максимум отладочной информации (предполагает -vv)" -#: ../bin/indicator-cpufreq.py:69 +#: ../bin/indicator-cpufreq.py:65 msgid "set error_level output to warning, info, and then debug" msgstr "установить error_level output на warning, info и затем debug" +#: ../bin/indicator-cpufreq.py:67 +msgid "show the frequency with text along with the icon" +msgstr "показывать значение частоты рядом со значком" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 +msgid "Change CPU frequency scaling" +msgstr "Изменение частоты процессора" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 +msgid "System policy prevents you from changing CPU frequency scaling." +msgstr "Системная политика препятствует изменению частоты процессора." + +#. temp hack for properly displaying intel turbo mode (actual freq + 1000kHz) #: ../indicator_cpufreq/indicator.py:34 #, python-format msgid "%s GHz" @@ -40,35 +61,23 @@ msgid "%.2f" msgstr "%.2f" -#: ../indicator_cpufreq/indicator.py:37 +#: ../indicator_cpufreq/indicator.py:36 +msgid "(turbo mode)" +msgstr "(турбо-режим)" + +#: ../indicator_cpufreq/indicator.py:40 msgid "Conservative" -msgstr "Conservative" +msgstr "Консервативный" -#: ../indicator_cpufreq/indicator.py:38 +#: ../indicator_cpufreq/indicator.py:41 msgid "Ondemand" -msgstr "Ondemand" +msgstr "Динамический" #. 'userspace': _("Userspace"), -#: ../indicator_cpufreq/indicator.py:40 +#: ../indicator_cpufreq/indicator.py:43 msgid "Powersave" -msgstr "Powersave" +msgstr "Энергосбережение" -#: ../indicator_cpufreq/indicator.py:41 +#: ../indicator_cpufreq/indicator.py:44 msgid "Performance" -msgstr "Performance" - -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 -msgid "Change CPU frequency scaling" -msgstr "Изменение частоты процессора" - -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 -msgid "System policy prevents you from changing CPU frequency scaling." -msgstr "Системная политика препятствует изменению частоты процессора." - -#: ../indicator-cpufreq.desktop.in.h:1 -msgid "An indicator for monitoring and switching CPU frequency scaling" -msgstr "Индикатор для отображения и переключения частоты процессора" - -#: ../indicator-cpufreq.desktop.in.h:2 -msgid "CPU Frequency Scaling Indicator" -msgstr "Индикатор частоты процессора" +msgstr "Производительность" diff -Nru indicator-cpufreq-0.2/po/si.po indicator-cpufreq-0.2.2/po/si.po --- indicator-cpufreq-0.2/po/si.po 1970-01-01 00:00:00.000000000 +0000 +++ indicator-cpufreq-0.2.2/po/si.po 2013-03-08 07:15:41.000000000 +0000 @@ -0,0 +1,87 @@ +# Sinhalese translation for indicator-cpufreq +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the indicator-cpufreq package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: indicator-cpufreq\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-02-25 23:19+0700\n" +"PO-Revision-Date: 2013-02-27 00:27+0000\n" +"Last-Translator: Chalana Rachitha (චලන රචිත) \n" +"Language-Team: Sinhalese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-02-28 05:08+0000\n" +"X-Generator: Launchpad (build 16506)\n" + +#: ../indicator-cpufreq.desktop.in.h:1 +msgid "CPU Frequency Scaling Indicator" +msgstr "මධ්‍යම සැකසුම් ඒකකයේ සංඛ්‍යාත පරිමාණන දර්ශකය" + +#: ../indicator-cpufreq.desktop.in.h:2 +msgid "An indicator for monitoring and switching CPU frequency scaling" +msgstr "" +"මධ්‍යම සැකසුම් ඒකකයේ සංඛ්‍යාත පරිමාණනය මන්තු කිරීම හා මාරුකිරීම සඳහා වූ " +"දර්ශකයකි" + +#. Support for command line options. +#: ../bin/indicator-cpufreq.py:60 +msgid "indicator-cpufreq [options]" +msgstr "indicator-cpufreq [options]" + +#: ../bin/indicator-cpufreq.py:63 +msgid "print the maximum debugging info (implies -vv)" +msgstr "(implies -vv) හි නිදොස් කිරීම උපරිමතොරතුරු මුද්‍රණය" + +#: ../bin/indicator-cpufreq.py:65 +msgid "set error_level output to warning, info, and then debug" +msgstr "" + +#: ../bin/indicator-cpufreq.py:67 +msgid "show the frequency with text along with the icon" +msgstr "සංඛ්‍යාතය සුරුවම හා වගන්තිය සමග පෙන්වීම" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 +msgid "Change CPU frequency scaling" +msgstr "මධ්‍යම සැකසුම් ඒකකයේ සංඛ්‍යාත පරිමාණන වෙනස් කිරීම" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 +msgid "System policy prevents you from changing CPU frequency scaling." +msgstr "" +"පද්ධතියේ ප්‍රතිපත්ති ඔබව මධ්‍යම සැකසුම් ඒකකයේ සංඛ්‍යාත පරිමාණනය කිරීමෙන් " +"වළක්වනවා." + +#. temp hack for properly displaying intel turbo mode (actual freq + 1000kHz) +#: ../indicator_cpufreq/indicator.py:34 +#, python-format +msgid "%s GHz" +msgstr "%s GHz" + +#: ../indicator_cpufreq/indicator.py:34 +#, python-format +msgid "%.2f" +msgstr "%.2f" + +#: ../indicator_cpufreq/indicator.py:36 +msgid "(turbo mode)" +msgstr "(turbo mode)" + +#: ../indicator_cpufreq/indicator.py:40 +msgid "Conservative" +msgstr "ගතානුගතිකත්වය" + +#: ../indicator_cpufreq/indicator.py:41 +msgid "Ondemand" +msgstr "ඉල්ලුම පිට" + +#. 'userspace': _("Userspace"), +#: ../indicator_cpufreq/indicator.py:43 +msgid "Powersave" +msgstr "ජවය සුරැකුම" + +#: ../indicator_cpufreq/indicator.py:44 +msgid "Performance" +msgstr "කාර්‍යක්‍ෂමතාව" diff -Nru indicator-cpufreq-0.2/po/sr.po indicator-cpufreq-0.2.2/po/sr.po --- indicator-cpufreq-0.2/po/sr.po 1970-01-01 00:00:00.000000000 +0000 +++ indicator-cpufreq-0.2.2/po/sr.po 2013-03-08 07:15:41.000000000 +0000 @@ -0,0 +1,85 @@ +# Serbian translation for indicator-cpufreq +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the indicator-cpufreq package. +# FIRST AUTHOR , 2013. +# Марко М. Костић , 2013. +msgid "" +msgstr "" +"Project-Id-Version: indicator-cpufreq\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-02-25 23:19+0700\n" +"PO-Revision-Date: 2013-03-05 22:28+0000\n" +"Last-Translator: Марко М. Костић \n" +"Language-Team: Ubuntu Serbian Translators\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-03-06 06:01+0000\n" +"X-Generator: Launchpad (build 16514)\n" +"Language: sr\n" + +#: ../indicator-cpufreq.desktop.in.h:1 +msgid "CPU Frequency Scaling Indicator" +msgstr "Показивач учестаности процесора" + +#: ../indicator-cpufreq.desktop.in.h:2 +msgid "An indicator for monitoring and switching CPU frequency scaling" +msgstr "Показивач преко којег можете надгледати и мењати такт процесора" + +#. Support for command line options. +#: ../bin/indicator-cpufreq.py:60 +msgid "indicator-cpufreq [options]" +msgstr "indicator-cpufreq [параметри]" + +#: ../bin/indicator-cpufreq.py:63 +msgid "print the maximum debugging info (implies -vv)" +msgstr "" +"штампај што више података за поправљање грешака (подразумевано са -vv)" + +#: ../bin/indicator-cpufreq.py:65 +msgid "set error_level output to warning, info, and then debug" +msgstr "" + +#: ../bin/indicator-cpufreq.py:67 +msgid "show the frequency with text along with the icon" +msgstr "прикажи такт са текстом поред иконице" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 +msgid "Change CPU frequency scaling" +msgstr "Промени учестаност процесора" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 +msgid "System policy prevents you from changing CPU frequency scaling." +msgstr "Системска полиса спречава промену такта процесора." + +#. temp hack for properly displaying intel turbo mode (actual freq + 1000kHz) +#: ../indicator_cpufreq/indicator.py:34 +#, python-format +msgid "%s GHz" +msgstr "" + +#: ../indicator_cpufreq/indicator.py:34 +#, python-format +msgid "%.2f" +msgstr "" + +#: ../indicator_cpufreq/indicator.py:36 +msgid "(turbo mode)" +msgstr "(турбо режим)" + +#: ../indicator_cpufreq/indicator.py:40 +msgid "Conservative" +msgstr "Конзервативан" + +#: ../indicator_cpufreq/indicator.py:41 +msgid "Ondemand" +msgstr "По потреби" + +#. 'userspace': _("Userspace"), +#: ../indicator_cpufreq/indicator.py:43 +msgid "Powersave" +msgstr "Штедљивост" + +#: ../indicator_cpufreq/indicator.py:44 +msgid "Performance" +msgstr "Делотворност" diff -Nru indicator-cpufreq-0.2/po/tr.po indicator-cpufreq-0.2.2/po/tr.po --- indicator-cpufreq-0.2/po/tr.po 2013-01-25 14:13:10.000000000 +0000 +++ indicator-cpufreq-0.2.2/po/tr.po 2013-03-08 07:15:41.000000000 +0000 @@ -7,29 +7,50 @@ msgstr "" "Project-Id-Version: indicator-cpufreq\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2011-07-20 16:36+0700\n" +"POT-Creation-Date: 2013-02-25 23:19+0700\n" "PO-Revision-Date: 2010-12-21 01:50+0000\n" "Last-Translator: zeugma \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-07-21 05:14+0000\n" -"X-Generator: Launchpad (build 13405)\n" +"X-Launchpad-Export-Date: 2013-02-26 05:16+0000\n" +"X-Generator: Launchpad (build 16506)\n" + +#: ../indicator-cpufreq.desktop.in.h:1 +msgid "CPU Frequency Scaling Indicator" +msgstr "" + +#: ../indicator-cpufreq.desktop.in.h:2 +msgid "An indicator for monitoring and switching CPU frequency scaling" +msgstr "" #. Support for command line options. -#: ../bin/indicator-cpufreq.py:64 +#: ../bin/indicator-cpufreq.py:60 msgid "indicator-cpufreq [options]" msgstr "" -#: ../bin/indicator-cpufreq.py:67 -msgid "Print the maximum debugging info (implies -vv)" +#: ../bin/indicator-cpufreq.py:63 +msgid "print the maximum debugging info (implies -vv)" msgstr "" -#: ../bin/indicator-cpufreq.py:69 +#: ../bin/indicator-cpufreq.py:65 msgid "set error_level output to warning, info, and then debug" msgstr "" +#: ../bin/indicator-cpufreq.py:67 +msgid "show the frequency with text along with the icon" +msgstr "" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 +msgid "Change CPU frequency scaling" +msgstr "" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 +msgid "System policy prevents you from changing CPU frequency scaling." +msgstr "" + +#. temp hack for properly displaying intel turbo mode (actual freq + 1000kHz) #: ../indicator_cpufreq/indicator.py:34 #, python-format msgid "%s GHz" @@ -40,38 +61,23 @@ msgid "%.2f" msgstr "%.2f" -#: ../indicator_cpufreq/indicator.py:37 +#: ../indicator_cpufreq/indicator.py:36 +msgid "(turbo mode)" +msgstr "" + +#: ../indicator_cpufreq/indicator.py:40 msgid "Conservative" msgstr "" -#: ../indicator_cpufreq/indicator.py:38 +#: ../indicator_cpufreq/indicator.py:41 msgid "Ondemand" msgstr "" #. 'userspace': _("Userspace"), -#: ../indicator_cpufreq/indicator.py:40 +#: ../indicator_cpufreq/indicator.py:43 msgid "Powersave" msgstr "" -#: ../indicator_cpufreq/indicator.py:41 +#: ../indicator_cpufreq/indicator.py:44 msgid "Performance" msgstr "Performans" - -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 -msgid "Change CPU frequency scaling" -msgstr "" - -#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 -msgid "System policy prevents you from changing CPU frequency scaling." -msgstr "" - -#: ../indicator-cpufreq.desktop.in.h:1 -msgid "An indicator for monitoring and switching CPU frequency scaling" -msgstr "" - -#: ../indicator-cpufreq.desktop.in.h:2 -msgid "CPU Frequency Scaling Indicator" -msgstr "" - -#~ msgid "Show debug messages" -#~ msgstr "Hata ayıklama mesajlarını göster" diff -Nru indicator-cpufreq-0.2/po/uk.po indicator-cpufreq-0.2.2/po/uk.po --- indicator-cpufreq-0.2/po/uk.po 1970-01-01 00:00:00.000000000 +0000 +++ indicator-cpufreq-0.2.2/po/uk.po 2013-03-08 07:15:41.000000000 +0000 @@ -0,0 +1,87 @@ +# Ukrainian translation for indicator-cpufreq +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the indicator-cpufreq package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: indicator-cpufreq\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-02-25 23:19+0700\n" +"PO-Revision-Date: 2013-02-26 13:23+0000\n" +"Last-Translator: Yuri Chornoivan \n" +"Language-Team: Ukrainian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-02-27 04:56+0000\n" +"X-Generator: Launchpad (build 16506)\n" + +#: ../indicator-cpufreq.desktop.in.h:1 +msgid "CPU Frequency Scaling Indicator" +msgstr "Індикатор масштабування частоти процесора" + +#: ../indicator-cpufreq.desktop.in.h:2 +msgid "An indicator for monitoring and switching CPU frequency scaling" +msgstr "" +"Індикатор для спостереження та перемикання масштабування частоти процесора" + +#. Support for command line options. +#: ../bin/indicator-cpufreq.py:60 +msgid "indicator-cpufreq [options]" +msgstr "indicator-cpufreq [параметри]" + +#: ../bin/indicator-cpufreq.py:63 +msgid "print the maximum debugging info (implies -vv)" +msgstr "вивести максимальний обсяг діагностичних даних (вмикає -vv)" + +#: ../bin/indicator-cpufreq.py:65 +msgid "set error_level output to warning, info, and then debug" +msgstr "" +"встановити для error_level рівень виведення даних warning (попередження), " +"info (інформування) або debug (діагностика)" + +#: ../bin/indicator-cpufreq.py:67 +msgid "show the frequency with text along with the icon" +msgstr "показувати частоту як текст на піктограмі" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 +msgid "Change CPU frequency scaling" +msgstr "Змінити масштабування частоти процесора" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 +msgid "System policy prevents you from changing CPU frequency scaling." +msgstr "" +"Правила системи забороняють зміну параметрів масштабування частоти процесора." + +#. temp hack for properly displaying intel turbo mode (actual freq + 1000kHz) +#: ../indicator_cpufreq/indicator.py:34 +#, python-format +msgid "%s GHz" +msgstr "%s ГГц" + +#: ../indicator_cpufreq/indicator.py:34 +#, python-format +msgid "%.2f" +msgstr "%.2f" + +#: ../indicator_cpufreq/indicator.py:36 +msgid "(turbo mode)" +msgstr "(турбо-режим)" + +#: ../indicator_cpufreq/indicator.py:40 +msgid "Conservative" +msgstr "консервативний" + +#: ../indicator_cpufreq/indicator.py:41 +msgid "Ondemand" +msgstr "динамічний" + +#. 'userspace': _("Userspace"), +#: ../indicator_cpufreq/indicator.py:43 +msgid "Powersave" +msgstr "заощадження" + +#: ../indicator_cpufreq/indicator.py:44 +msgid "Performance" +msgstr "швидкодія" diff -Nru indicator-cpufreq-0.2/po/zh_CN.po indicator-cpufreq-0.2.2/po/zh_CN.po --- indicator-cpufreq-0.2/po/zh_CN.po 1970-01-01 00:00:00.000000000 +0000 +++ indicator-cpufreq-0.2.2/po/zh_CN.po 2013-03-08 07:15:41.000000000 +0000 @@ -0,0 +1,83 @@ +# Chinese (Simplified) translation for indicator-cpufreq +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the indicator-cpufreq package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: indicator-cpufreq\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-02-25 23:19+0700\n" +"PO-Revision-Date: 2013-03-03 09:18+0000\n" +"Last-Translator: ZhangCheng \n" +"Language-Team: Chinese (Simplified) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-03-04 05:34+0000\n" +"X-Generator: Launchpad (build 16514)\n" + +#: ../indicator-cpufreq.desktop.in.h:1 +msgid "CPU Frequency Scaling Indicator" +msgstr "CPU 频率调节指示器" + +#: ../indicator-cpufreq.desktop.in.h:2 +msgid "An indicator for monitoring and switching CPU frequency scaling" +msgstr "一款监控并切换 CPU 频率的指示器" + +#. Support for command line options. +#: ../bin/indicator-cpufreq.py:60 +msgid "indicator-cpufreq [options]" +msgstr "indicator-cpufreq [选项]" + +#: ../bin/indicator-cpufreq.py:63 +msgid "print the maximum debugging info (implies -vv)" +msgstr "打印最多的调试信息(亦可 -vv)" + +#: ../bin/indicator-cpufreq.py:65 +msgid "set error_level output to warning, info, and then debug" +msgstr "" + +#: ../bin/indicator-cpufreq.py:67 +msgid "show the frequency with text along with the icon" +msgstr "以图标旁加文字的方式显示频率" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:1 +msgid "Change CPU frequency scaling" +msgstr "更改 CPU 频率" + +#: ../indicator_cpufreq/com.ubuntu.indicatorcpufreq.policy.in.h:2 +msgid "System policy prevents you from changing CPU frequency scaling." +msgstr "由于系统政策,您无法调整处理器频率调整政策。" + +#. temp hack for properly displaying intel turbo mode (actual freq + 1000kHz) +#: ../indicator_cpufreq/indicator.py:34 +#, python-format +msgid "%s GHz" +msgstr "%s GHz" + +#: ../indicator_cpufreq/indicator.py:34 +#, python-format +msgid "%.2f" +msgstr "%.2f" + +#: ../indicator_cpufreq/indicator.py:36 +msgid "(turbo mode)" +msgstr "(急速模式)" + +#: ../indicator_cpufreq/indicator.py:40 +msgid "Conservative" +msgstr "保守 (Conservative)" + +#: ../indicator_cpufreq/indicator.py:41 +msgid "Ondemand" +msgstr "" + +#. 'userspace': _("Userspace"), +#: ../indicator_cpufreq/indicator.py:43 +msgid "Powersave" +msgstr "节能 (Powersave)" + +#: ../indicator_cpufreq/indicator.py:44 +msgid "Performance" +msgstr "性能" diff -Nru indicator-cpufreq-0.2/setup.py indicator-cpufreq-0.2.2/setup.py --- indicator-cpufreq-0.2/setup.py 2013-01-25 13:38:40.000000000 +0000 +++ indicator-cpufreq-0.2.2/setup.py 2013-03-08 07:16:43.000000000 +0000 @@ -7,7 +7,7 @@ DistUtilsExtra.auto.setup( name='indicator-cpufreq', - version='0.2', + version='0.2.2', license='GPL-3', author='Artem Popov', author_email='artfwo@gmail.com', @@ -20,6 +20,9 @@ glob.glob('icons/ubuntu-mono-dark/*')), ('share/icons/ubuntu-mono-light/status/22', glob.glob('icons/ubuntu-mono-light/*')), + # temp fix for LP: #1125598 + ('share/icons/hicolor/22x22/status', + glob.glob('icons/ubuntu-mono-dark/*')), # ('/var/lib/polkit-1/localauthority/10-vendor.d', # ['indicator-cpufreq.pkla']), ]