release 3.1.1

* translation update
* fix broken build with gcc (#87). The issue was reproduced only with
  gcc build and has been resolved by just replacing C-like `isnan` to
  `std::isnan`
This commit is contained in:
Evgenii Alekseev 2016-04-06 14:42:56 +03:00
parent d216ee1f79
commit e9146b3b6c
16 changed files with 287 additions and 74 deletions

View File

@ -2,7 +2,7 @@
pkgname=plasma5-applet-awesome-widgets pkgname=plasma5-applet-awesome-widgets
_pkgname=awesome-widgets _pkgname=awesome-widgets
pkgver=3.1.0 pkgver=3.1.1
pkgrel=1 pkgrel=1
pkgdesc="Collection of minimalistic Plasmoids which look like Awesome WM widgets (ex-PyTextMonitor)" pkgdesc="Collection of minimalistic Plasmoids which look like Awesome WM widgets (ex-PyTextMonitor)"
arch=('i686' 'x86_64') arch=('i686' 'x86_64')
@ -17,7 +17,7 @@ optdepends=("catalyst: for GPU monitor"
makedepends=('cmake' 'extra-cmake-modules') makedepends=('cmake' 'extra-cmake-modules')
source=(https://github.com/arcan1s/awesome-widgets/releases/download/V.${pkgver}/${_pkgname}-${pkgver}-src.tar.xz) source=(https://github.com/arcan1s/awesome-widgets/releases/download/V.${pkgver}/${_pkgname}-${pkgver}-src.tar.xz)
install=${pkgname}.install install=${pkgname}.install
md5sums=('08d1c0b3995ae6003a5b552a7ae7b93d') md5sums=('1a4dc1d912b663dfd24d00712ab68f07')
backup=('etc/xdg/plasma-dataengine-extsysmon.conf') backup=('etc/xdg/plasma-dataengine-extsysmon.conf')
prepare() { prepare() {

View File

@ -15,7 +15,7 @@ set(PROJECT_CONTACT "esalexeev@gmail.com")
set(PROJECT_LICENSE "GPL3") set(PROJECT_LICENSE "GPL3")
set(PROJECT_VERSION_MAJOR "3") set(PROJECT_VERSION_MAJOR "3")
set(PROJECT_VERSION_MINOR "1") set(PROJECT_VERSION_MINOR "1")
set(PROJECT_VERSION_PATCH "0") set(PROJECT_VERSION_PATCH "1")
set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}") set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")
# append git version if any # append git version if any
set(PROJECT_COMMIT_SHA "Commit hash" CACHE INTERNAL "") set(PROJECT_COMMIT_SHA "Commit hash" CACHE INTERNAL "")

View File

@ -20,7 +20,7 @@ X-Plasma-RemoteLocation=
X-KDE-PluginInfo-Author=Evgeniy Alekseev aka arcanis X-KDE-PluginInfo-Author=Evgeniy Alekseev aka arcanis
X-KDE-PluginInfo-Email=esalexeev@gmail.com X-KDE-PluginInfo-Email=esalexeev@gmail.com
X-KDE-PluginInfo-Name=org.kde.plasma.awesomewidget X-KDE-PluginInfo-Name=org.kde.plasma.awesomewidget
X-KDE-PluginInfo-Version=3.0.1 X-KDE-PluginInfo-Version=3.1.0
X-KDE-PluginInfo-Website=https://arcanis.me/projects/awesome-widgets/ X-KDE-PluginInfo-Website=https://arcanis.me/projects/awesome-widgets/
X-KDE-PluginInfo-Category=System Information X-KDE-PluginInfo-Category=System Information
X-KDE-PluginInfo-Depends= X-KDE-PluginInfo-Depends=

View File

@ -290,7 +290,7 @@ void AWDataAggregator::setData(const QString &source, float value,
else if (data[source].count() else if (data[source].count()
> configuration[QString("tooltipNumber")].toInt()) > configuration[QString("tooltipNumber")].toInt())
data[source].removeFirst(); data[source].removeFirst();
if (isnan(value)) if (std::isnan(value))
value = 0.0; value = 0.0;
// notifications // notifications

View File

@ -164,7 +164,7 @@ float GraphicalItemHelper::getPercents(const float &value, const float &min,
{ {
qCDebug(LOG_LIB) << "Get percent value from" << value; qCDebug(LOG_LIB) << "Get percent value from" << value;
// newest Qt crashes here if value is nan // newest Qt crashes here if value is nan
if (isnan(value)) if (std::isnan(value))
return 0.0; return 0.0;
return (value - min) / (max - min); return (value - min) / (max - min);

View File

@ -20,7 +20,7 @@ X-Plasma-RemoteLocation=
X-KDE-PluginInfo-Author=Evgeniy Alekseev aka arcanis X-KDE-PluginInfo-Author=Evgeniy Alekseev aka arcanis
X-KDE-PluginInfo-Email=esalexeev@gmail.com X-KDE-PluginInfo-Email=esalexeev@gmail.com
X-KDE-PluginInfo-Name=org.kde.plasma.desktoppanel X-KDE-PluginInfo-Name=org.kde.plasma.desktoppanel
X-KDE-PluginInfo-Version=3.0.1 X-KDE-PluginInfo-Version=3.1.0
X-KDE-PluginInfo-Website=https://arcanis.me/projects/awesome-widgets/ X-KDE-PluginInfo-Website=https://arcanis.me/projects/awesome-widgets/
X-KDE-PluginInfo-Category=System Information X-KDE-PluginInfo-Category=System Information
X-KDE-PluginInfo-Depends= X-KDE-PluginInfo-Depends=

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n" "Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n"
"POT-Creation-Date: 2016-02-15 11:43+0300\n" "POT-Creation-Date: 2016-04-06 14:39+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -547,6 +547,9 @@ msgstr ""
msgid "Use images" msgid "Use images"
msgstr "" msgstr ""
msgid "Points count"
msgstr ""
msgid "Use custom formula" msgid "Use custom formula"
msgstr "" msgstr ""
@ -559,12 +562,24 @@ msgstr ""
msgid "Min value" msgid "Min value"
msgstr "" msgstr ""
msgid "Use image for active"
msgstr ""
msgid "Active color" msgid "Active color"
msgstr "" msgstr ""
msgid "Active image"
msgstr ""
msgid "Use image for inactive"
msgstr ""
msgid "Inactive color" msgid "Inactive color"
msgstr "" msgstr ""
msgid "Inactive image"
msgstr ""
msgid "Type" msgid "Type"
msgstr "" msgstr ""

View File

@ -6,8 +6,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n" "Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n"
"POT-Creation-Date: 2016-02-15 11:43+0300\n" "POT-Creation-Date: 2016-04-06 14:39+0300\n"
"PO-Revision-Date: 2016-02-15 11:43+0300\n" "PO-Revision-Date: 2016-04-06 14:40+0300\n"
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n" "Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
"Language-Team: English <kde-russian@lists.kde.ru>\n" "Language-Team: English <kde-russian@lists.kde.ru>\n"
"Language: ru\n" "Language: ru\n"
@ -556,6 +556,9 @@ msgstr "Timestamp"
msgid "Use images" msgid "Use images"
msgstr "Use images" msgstr "Use images"
msgid "Points count"
msgstr "Points count"
msgid "Use custom formula" msgid "Use custom formula"
msgstr "Use custom formula" msgstr "Use custom formula"
@ -568,12 +571,24 @@ msgstr "Max value"
msgid "Min value" msgid "Min value"
msgstr "Min value" msgstr "Min value"
msgid "Use image for active"
msgstr "Use image for active"
msgid "Active color" msgid "Active color"
msgstr "Active color" msgstr "Active color"
msgid "Active image"
msgstr "Active image"
msgid "Use image for inactive"
msgstr "Use image for inactive"
msgid "Inactive color" msgid "Inactive color"
msgstr "Inactive color" msgstr "Inactive color"
msgid "Inactive image"
msgstr "Inactive image"
msgid "Type" msgid "Type"
msgstr "Type" msgstr "Type"

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Awesome widgets\n" "Project-Id-Version: Awesome widgets\n"
"Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n" "Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n"
"POT-Creation-Date: 2016-02-15 11:43+0300\n" "POT-Creation-Date: 2016-04-06 14:39+0300\n"
"PO-Revision-Date: 2015-09-26 22:07+0000\n" "PO-Revision-Date: 2015-09-26 22:07+0000\n"
"Last-Translator: Ernesto Avilés Vázquez <whippiii@gmail.com>\n" "Last-Translator: Ernesto Avilés Vázquez <whippiii@gmail.com>\n"
"Language-Team: Spanish (http://www.transifex.com/arcanis/awesome-widgets/" "Language-Team: Spanish (http://www.transifex.com/arcanis/awesome-widgets/"
@ -561,6 +561,9 @@ msgstr "Marca de tiempo"
msgid "Use images" msgid "Use images"
msgstr "Usar imágenes" msgstr "Usar imágenes"
msgid "Points count"
msgstr ""
#, fuzzy #, fuzzy
msgid "Use custom formula" msgid "Use custom formula"
msgstr "Formato personalizado de hora" msgstr "Formato personalizado de hora"
@ -576,12 +579,27 @@ msgstr "Mostrar valor"
msgid "Min value" msgid "Min value"
msgstr "Mostrar valor" msgstr "Mostrar valor"
#, fuzzy
msgid "Use image for active"
msgstr "Usar imágenes"
msgid "Active color" msgid "Active color"
msgstr "Color de activo" msgstr "Color de activo"
#, fuzzy
msgid "Active image"
msgstr "Activo"
msgid "Use image for inactive"
msgstr ""
msgid "Inactive color" msgid "Inactive color"
msgstr "Color de inactivo" msgstr "Color de inactivo"
#, fuzzy
msgid "Inactive image"
msgstr "Escritorio inactivo"
msgid "Type" msgid "Type"
msgstr "Tipo" msgstr "Tipo"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n" "Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n"
"POT-Creation-Date: 2016-02-15 11:43+0300\n" "POT-Creation-Date: 2016-04-06 14:39+0300\n"
"PO-Revision-Date: 2015-07-31 22:16+0300\n" "PO-Revision-Date: 2015-07-31 22:16+0300\n"
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n" "Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
"Language-Team: French <kde-russian@lists.kde.ru>\n" "Language-Team: French <kde-russian@lists.kde.ru>\n"
@ -579,6 +579,9 @@ msgstr "Durée"
msgid "Use images" msgid "Use images"
msgstr "" msgstr ""
msgid "Points count"
msgstr ""
#, fuzzy #, fuzzy
msgid "Use custom formula" msgid "Use custom formula"
msgstr "Format de l'heure personnalisé" msgstr "Format de l'heure personnalisé"
@ -595,14 +598,28 @@ msgstr "Afficher la valeur"
msgid "Min value" msgid "Min value"
msgstr "Afficher la valeur" msgstr "Afficher la valeur"
msgid "Use image for active"
msgstr ""
#, fuzzy #, fuzzy
msgid "Active color" msgid "Active color"
msgstr "Batterie" msgstr "Batterie"
#, fuzzy
msgid "Active image"
msgstr "Batterie"
msgid "Use image for inactive"
msgstr ""
#, fuzzy #, fuzzy
msgid "Inactive color" msgid "Inactive color"
msgstr "Batterie" msgstr "Batterie"
#, fuzzy
msgid "Inactive image"
msgstr "Bureau inactif"
msgid "Type" msgid "Type"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Awesome widgets\n" "Project-Id-Version: Awesome widgets\n"
"Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n" "Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n"
"POT-Creation-Date: 2016-02-15 11:43+0300\n" "POT-Creation-Date: 2016-04-06 14:39+0300\n"
"PO-Revision-Date: 2015-08-20 22:52+0300\n" "PO-Revision-Date: 2015-08-20 22:52+0300\n"
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n" "Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
"Language-Team: Dutch <kde-i18n-nl@kde.org>\n" "Language-Team: Dutch <kde-i18n-nl@kde.org>\n"
@ -579,6 +579,9 @@ msgstr ""
msgid "Use images" msgid "Use images"
msgstr "" msgstr ""
msgid "Points count"
msgstr ""
#, fuzzy #, fuzzy
msgid "Use custom formula" msgid "Use custom formula"
msgstr "Aangepaste tijdsopmaak" msgstr "Aangepaste tijdsopmaak"
@ -594,12 +597,26 @@ msgstr "Waarde weergeven"
msgid "Min value" msgid "Min value"
msgstr "Waarde weergeven" msgstr "Waarde weergeven"
msgid "Use image for active"
msgstr ""
msgid "Active color" msgid "Active color"
msgstr "Actieve kleur" msgstr "Actieve kleur"
#, fuzzy
msgid "Active image"
msgstr "Actieve kleur"
msgid "Use image for inactive"
msgstr ""
msgid "Inactive color" msgid "Inactive color"
msgstr "Inactieve kleur" msgstr "Inactieve kleur"
#, fuzzy
msgid "Inactive image"
msgstr "Inactieve kleur"
msgid "Type" msgid "Type"
msgstr "Type" msgstr "Type"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n" "Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n"
"POT-Creation-Date: 2016-01-26 21:48+0300\n" "POT-Creation-Date: 2016-04-06 14:39+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -56,6 +56,9 @@ msgstr "Włącz powiadomienia"
msgid "Check updates on startup" msgid "Check updates on startup"
msgstr "Sprawdź aktualizacje przy uruchomieniu" msgstr "Sprawdź aktualizacje przy uruchomieniu"
msgid "Optimize subscription"
msgstr ""
msgid "Widget height, px" msgid "Widget height, px"
msgstr "Wysokość widżetu, px" msgstr "Wysokość widżetu, px"
@ -269,7 +272,8 @@ msgstr "Sprawdź aktualizacje"
msgid "" msgid ""
"CPU, CPU clock, memory, swap and network labels support graphical tooltip. " "CPU, CPU clock, memory, swap and network labels support graphical tooltip. "
"To enable them just make needed checkbox checked." "To enable them just make needed checkbox checked."
msgstr "CPU, zegar CPU, pamięć, opisy swap i sieci obsługują podpowiedź graficzną." msgstr ""
"CPU, zegar CPU, pamięć, opisy swap i sieci obsługują podpowiedź graficzną."
"Aby je włączyć po prostu zaznacz odpowiednią opcję." "Aby je włączyć po prostu zaznacz odpowiednią opcję."
msgid "Number of values for tooltips" msgid "Number of values for tooltips"
@ -323,11 +327,13 @@ msgstr "Kolor baterii aktywnej"
msgid "Battery inactive color" msgid "Battery inactive color"
msgstr "Kolor baterii nie aktywnej" msgstr "Kolor baterii nie aktywnej"
#, fuzzy
msgid "" msgid ""
"Detailed information may be found on <a href=\"http://arcanis.name/projects/" "Detailed information may be found on <a href=\"https://arcanis.me/projects/"
"awesome-widgets/\">project homepage</a>" "awesome-widgets/\">project homepage</a>"
msgstr "Szczegóły znajdziesz na <a href=\"http://arcanis.name/projects/" msgstr ""
"awesome-widgets/\">stronie projektu</a>" "Szczegóły znajdziesz na <a href=\"http://arcanis.name/projects/awesome-"
"widgets/\">stronie projektu</a>"
msgid "AC" msgid "AC"
msgstr "Zasialnie zewnętrzne" msgstr "Zasialnie zewnętrzne"
@ -353,15 +359,15 @@ msgstr "Aktualizacje"
msgid "Weathers" msgid "Weathers"
msgstr "Pogoda" msgstr "Pogoda"
msgid "Functions"
msgstr ""
msgid "Add" msgid "Add"
msgstr "Dodaj" msgstr "Dodaj"
msgid "Show value" msgid "Show value"
msgstr "Pokaż wartość" msgstr "Pokaż wartość"
msgid "Add lambda"
msgstr "Dodaj różnicę"
msgid "Edit bars" msgid "Edit bars"
msgstr "Edytuj paski postępu" msgstr "Edytuj paski postępu"
@ -413,24 +419,6 @@ msgstr "Specjalnie podziękowania dla %1"
msgid "Select font" msgid "Select font"
msgstr "Wybierz czcionkę" msgstr "Wybierz czcionkę"
msgid "You are using the actual version %1"
msgstr "Używasz wersji %1"
msgid "No new version found"
msgstr "Nie znalazłem nowszej wersji"
msgid "Current version : %1"
msgstr "Aktualna wersja: %1"
msgid "New version : %1"
msgstr "Nowa wersja: %$1"
msgid "Click \"Ok\" to download"
msgstr "Kliknij \"Ok\" aby pobrać"
msgid "There are updates"
msgstr "Aktualizacje są"
msgid "AC online" msgid "AC online"
msgstr "Zasilanie zewnętrzne podłączone" msgstr "Zasilanie zewnętrzne podłączone"
@ -458,6 +446,27 @@ msgstr "MB/s"
msgid "KB/s" msgid "KB/s"
msgstr "KB/s" msgstr "KB/s"
msgid "Changelog of %1"
msgstr ""
msgid "You are using the actual version %1"
msgstr "Używasz wersji %1"
msgid "No new version found"
msgstr "Nie znalazłem nowszej wersji"
msgid "Current version : %1"
msgstr "Aktualna wersja: %1"
msgid "New version : %1"
msgstr "Nowa wersja: %$1"
msgid "Click \"Ok\" to download"
msgstr "Kliknij \"Ok\" aby pobrać"
msgid "There are updates"
msgstr "Aktualizacje są"
msgid "Copy" msgid "Copy"
msgstr "Kopiuj" msgstr "Kopiuj"
@ -497,10 +506,9 @@ msgid ""
"text-decoration: underline; color:#0057ae;\">http://finance.yahoo.com/</" "text-decoration: underline; color:#0057ae;\">http://finance.yahoo.com/</"
"span></a></p></body></html>" "span></a></p></body></html>"
msgstr "" msgstr ""
"<html><head/><body><p>Użyj usług finansowych YAHOO!" "<html><head/><body><p>Użyj usług finansowych YAHOO!Przjdź na <a href="
"Przjdź na <a href=\"http://finance.yahoo.com/\"><span style=\" " "\"http://finance.yahoo.com/\"><span style=\" text-decoration: underline; "
"text-decoration: underline; color:#0057ae;\">http://finance.yahoo.com/</" "color:#0057ae;\">http://finance.yahoo.com/</span></a></p></body></html>"
"span></a></p></body></html>"
msgid "Ticker" msgid "Ticker"
msgstr "Znacznik czasowy" msgstr "Znacznik czasowy"
@ -547,15 +555,45 @@ msgstr "Znacznik czasu"
msgid "Use images" msgid "Use images"
msgstr "Użyj obrazków" msgstr "Użyj obrazków"
msgid "Points count"
msgstr ""
#, fuzzy
msgid "Use custom formula"
msgstr "Twój format czasu"
msgid "Value" msgid "Value"
msgstr "Wartość" msgstr "Wartość"
#, fuzzy
msgid "Max value"
msgstr "Pokaż wartość"
#, fuzzy
msgid "Min value"
msgstr "Pokaż wartość"
#, fuzzy
msgid "Use image for active"
msgstr "Użyj obrazków"
msgid "Active color" msgid "Active color"
msgstr "Kolor aktywnego" msgstr "Kolor aktywnego"
#, fuzzy
msgid "Active image"
msgstr "Aktywny"
msgid "Use image for inactive"
msgstr ""
msgid "Inactive color" msgid "Inactive color"
msgstr "Kolor nieaktywnego" msgstr "Kolor nieaktywnego"
#, fuzzy
msgid "Inactive image"
msgstr "Nie aktywny pulpit"
msgid "Type" msgid "Type"
msgstr "Typ" msgstr "Typ"
@ -608,3 +646,6 @@ msgstr "Terminus"
msgctxt "EMAIL OF TRANSLATORS" msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails" msgid "Your emails"
msgstr "terminus@linux.pl" msgstr "terminus@linux.pl"
#~ msgid "Add lambda"
#~ msgstr "Dodaj różnicę"

View File

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n" "Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n"
"POT-Creation-Date: 2016-02-15 11:43+0300\n" "POT-Creation-Date: 2016-04-06 14:39+0300\n"
"PO-Revision-Date: 2015-07-31 22:21+0300\n" "PO-Revision-Date: 2015-07-31 22:21+0300\n"
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n" "Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
"Language-Team: Russian <kde-russian@lists.kde.ru>\n" "Language-Team: Russian <kde-russian@lists.kde.ru>\n"
@ -570,6 +570,9 @@ msgstr "Hora"
msgid "Use images" msgid "Use images"
msgstr "" msgstr ""
msgid "Points count"
msgstr ""
#, fuzzy #, fuzzy
msgid "Use custom formula" msgid "Use custom formula"
msgstr "Formato de hora personalizado" msgstr "Formato de hora personalizado"
@ -585,12 +588,26 @@ msgstr "Mostrar valor"
msgid "Min value" msgid "Min value"
msgstr "Mostrar valor" msgstr "Mostrar valor"
msgid "Use image for active"
msgstr ""
msgid "Active color" msgid "Active color"
msgstr "Cor ativa" msgstr "Cor ativa"
#, fuzzy
msgid "Active image"
msgstr "Cor ativa"
msgid "Use image for inactive"
msgstr ""
msgid "Inactive color" msgid "Inactive color"
msgstr "Cor inativa" msgstr "Cor inativa"
#, fuzzy
msgid "Inactive image"
msgstr "Desktop inativo"
msgid "Type" msgid "Type"
msgstr "Tipo" msgstr "Tipo"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n" "Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n"
"POT-Creation-Date: 2016-02-15 11:43+0300\n" "POT-Creation-Date: 2016-04-06 14:39+0300\n"
"PO-Revision-Date: 2016-02-15 11:44+0300\n" "PO-Revision-Date: 2016-04-06 14:41+0300\n"
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n" "Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
"Language-Team: Russian <kde-russian@lists.kde.ru>\n" "Language-Team: Russian <kde-russian@lists.kde.ru>\n"
"Language: ru\n" "Language: ru\n"
@ -556,6 +556,9 @@ msgstr "Таймштамп"
msgid "Use images" msgid "Use images"
msgstr "Использовать изображения" msgstr "Использовать изображения"
msgid "Points count"
msgstr "Количество точек"
msgid "Use custom formula" msgid "Use custom formula"
msgstr "Использовать свою формулу" msgstr "Использовать свою формулу"
@ -568,12 +571,24 @@ msgstr "Максимальное значение"
msgid "Min value" msgid "Min value"
msgstr "Минимальное значение" msgstr "Минимальное значение"
msgid "Use image for active"
msgstr "Использовать изображения для активной части"
msgid "Active color" msgid "Active color"
msgstr "Активный цвет" msgstr "Активный цвет"
msgid "Active image"
msgstr "Изображение активной части"
msgid "Use image for inactive"
msgstr "Использовать изображение для неактивной части"
msgid "Inactive color" msgid "Inactive color"
msgstr "Неактивный цвет" msgstr "Неактивный цвет"
msgid "Inactive image"
msgstr "Изображение неактивной части"
msgid "Type" msgid "Type"
msgstr "Тип" msgstr "Тип"

View File

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n" "Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n"
"POT-Creation-Date: 2016-02-15 11:43+0300\n" "POT-Creation-Date: 2016-04-06 14:39+0300\n"
"PO-Revision-Date: 2015-09-27 12:37+0300\n" "PO-Revision-Date: 2015-09-27 12:37+0300\n"
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n" "Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
"Language-Team: Ukrainian <kde-russian@lists.kde.ru>\n" "Language-Team: Ukrainian <kde-russian@lists.kde.ru>\n"
@ -582,6 +582,9 @@ msgstr "Відмітка часу"
msgid "Use images" msgid "Use images"
msgstr "Використовувати зображення" msgstr "Використовувати зображення"
msgid "Points count"
msgstr ""
#, fuzzy #, fuzzy
msgid "Use custom formula" msgid "Use custom formula"
msgstr "Свій формат часу" msgstr "Свій формат часу"
@ -597,14 +600,29 @@ msgstr "Показати значення"
msgid "Min value" msgid "Min value"
msgstr "Показати значення" msgstr "Показати значення"
#, fuzzy
msgid "Use image for active"
msgstr "Використовувати зображення"
#, fuzzy #, fuzzy
msgid "Active color" msgid "Active color"
msgstr "Активний колір" msgstr "Активний колір"
#, fuzzy
msgid "Active image"
msgstr "Активний"
msgid "Use image for inactive"
msgstr ""
#, fuzzy #, fuzzy
msgid "Inactive color" msgid "Inactive color"
msgstr "Неактивний колір" msgstr "Неактивний колір"
#, fuzzy
msgid "Inactive image"
msgstr "Неактивний робочий стіл"
msgid "Type" msgid "Type"
msgstr "Тип" msgstr "Тип"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n" "Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n"
"POT-Creation-Date: 2016-01-26 21:48+0300\n" "POT-Creation-Date: 2016-04-06 14:39+0300\n"
"PO-Revision-Date: 2015-07-31 22:24+0300\n" "PO-Revision-Date: 2015-07-31 22:24+0300\n"
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n" "Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
"Language-Team: Russian <kde-russian@lists.kde.ru>\n" "Language-Team: Russian <kde-russian@lists.kde.ru>\n"
@ -57,6 +57,9 @@ msgstr "启用通知"
msgid "Check updates on startup" msgid "Check updates on startup"
msgstr "启动时检查更新" msgstr "启动时检查更新"
msgid "Optimize subscription"
msgstr ""
msgid "Widget height, px" msgid "Widget height, px"
msgstr "高度, px" msgstr "高度, px"
@ -325,8 +328,9 @@ msgstr "电池使用状态提示颜色"
msgid "Battery inactive color" msgid "Battery inactive color"
msgstr "电池未使用状态提示颜色" msgstr "电池未使用状态提示颜色"
#, fuzzy
msgid "" msgid ""
"Detailed information may be found on <a href=\"http://arcanis.name/projects/" "Detailed information may be found on <a href=\"https://arcanis.me/projects/"
"awesome-widgets/\">project homepage</a>" "awesome-widgets/\">project homepage</a>"
msgstr "" msgstr ""
"详情请参照 <a href=\"http://arcanis.name/projects/ awesome-widgets/\">项目主" "详情请参照 <a href=\"http://arcanis.name/projects/ awesome-widgets/\">项目主"
@ -356,15 +360,15 @@ msgstr "更新"
msgid "Weathers" msgid "Weathers"
msgstr "天气" msgstr "天气"
msgid "Functions"
msgstr ""
msgid "Add" msgid "Add"
msgstr "添加" msgstr "添加"
msgid "Show value" msgid "Show value"
msgstr "显示值" msgstr "显示值"
msgid "Add lambda"
msgstr "添加 lambda"
msgid "Edit bars" msgid "Edit bars"
msgstr "编辑工具栏" msgstr "编辑工具栏"
@ -416,24 +420,6 @@ msgstr "特别感谢 %1"
msgid "Select font" msgid "Select font"
msgstr "选择字体" msgstr "选择字体"
msgid "You are using the actual version %1"
msgstr "你正在使用最新版本 %1"
msgid "No new version found"
msgstr "没有新版本"
msgid "Current version : %1"
msgstr "当前版本 : %1"
msgid "New version : %1"
msgstr "新版本 : %1"
msgid "Click \"Ok\" to download"
msgstr "点击 \"Ok\" 下载"
msgid "There are updates"
msgstr "有新的更新"
msgid "AC online" msgid "AC online"
msgstr "外接电源使用中" msgstr "外接电源使用中"
@ -461,6 +447,27 @@ msgstr "MB/s"
msgid "KB/s" msgid "KB/s"
msgstr "KB/s" msgstr "KB/s"
msgid "Changelog of %1"
msgstr ""
msgid "You are using the actual version %1"
msgstr "你正在使用最新版本 %1"
msgid "No new version found"
msgstr "没有新版本"
msgid "Current version : %1"
msgstr "当前版本 : %1"
msgid "New version : %1"
msgstr "新版本 : %1"
msgid "Click \"Ok\" to download"
msgstr "点击 \"Ok\" 下载"
msgid "There are updates"
msgstr "有新的更新"
msgid "Copy" msgid "Copy"
msgstr "复制" msgstr "复制"
@ -500,10 +507,10 @@ msgid ""
"text-decoration: underline; color:#0057ae;\">http://finance.yahoo.com/</" "text-decoration: underline; color:#0057ae;\">http://finance.yahoo.com/</"
"span></a></p></body></html>" "span></a></p></body></html>"
msgstr "" msgstr ""
"<html><head/><body><p>使用 YAHOO雅虎! 获取最新的金融股票行情 " "<html><head/><body><p>使用 YAHOO雅虎! 获取最新的金融股票行情 . 请点击链"
". 请点击链接 <a href=\"http://finance.yahoo.com/\"><span style=\" " "接 <a href=\"http://finance.yahoo.com/\"><span style=\" text-decoration: "
"text-decoration: underline; color:#0057ae;\">http://finance.yahoo.com/</" "underline; color:#0057ae;\">http://finance.yahoo.com/</span></a></p></body></"
"span></a></p></body></html>" "html>"
msgid "Ticker" msgid "Ticker"
msgstr "金融股市" msgstr "金融股市"
@ -550,15 +557,45 @@ msgstr "时间"
msgid "Use images" msgid "Use images"
msgstr "使用图片" msgstr "使用图片"
msgid "Points count"
msgstr ""
#, fuzzy
msgid "Use custom formula"
msgstr "自定义时间格式"
msgid "Value" msgid "Value"
msgstr "值" msgstr "值"
#, fuzzy
msgid "Max value"
msgstr "显示值"
#, fuzzy
msgid "Min value"
msgstr "显示值"
#, fuzzy
msgid "Use image for active"
msgstr "使用图片"
msgid "Active color" msgid "Active color"
msgstr "使用状态提示颜色" msgstr "使用状态提示颜色"
#, fuzzy
msgid "Active image"
msgstr "使用"
msgid "Use image for inactive"
msgstr ""
msgid "Inactive color" msgid "Inactive color"
msgstr "未使用状态提示颜色" msgstr "未使用状态提示颜色"
#, fuzzy
msgid "Inactive image"
msgstr "未激活桌面"
msgid "Type" msgid "Type"
msgstr "类型" msgstr "类型"
@ -612,6 +649,9 @@ msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails" msgid "Your emails"
msgstr "用户邮箱" msgstr "用户邮箱"
#~ msgid "Add lambda"
#~ msgstr "添加 lambda"
#~ msgid "Top Edge" #~ msgid "Top Edge"
#~ msgstr "顶部边缘" #~ msgstr "顶部边缘"