From 185e315bd074dd2f0c743974b8d8cfc3bd873d27 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sun, 13 May 2018 14:22:45 +0200 Subject: [PATCH 01/43] enclose senders name in quotation marks --- notifyall/notifyall.php | 39 +++++++++++++++++++++++++++------------ 1 file changed, 27 insertions(+), 12 deletions(-) diff --git a/notifyall/notifyall.php b/notifyall/notifyall.php index 5ea0db38..6c65c5c6 100644 --- a/notifyall/notifyall.php +++ b/notifyall/notifyall.php @@ -12,41 +12,53 @@ use Friendica\Content\Text\BBCode; use Friendica\Core\L10n; use Friendica\Util\Emailer; -function notifyall_install() { +function notifyall_install() +{ logger("installed notifyall"); } -function notifyall_uninstall() { +function notifyall_uninstall() +{ logger("removed notifyall"); } function notifyall_module() {} -function notifyall_addon_admin(&$a, &$o) { - +function notifyall_addon_admin(&$a, &$o) +{ $o = '
    ' . L10n::t('Send email to all members') . '
'; } -function notifyall_post(&$a) { +function notifyall_post(&$a) +{ if(! is_site_admin()) + { return; + } $text = trim($_REQUEST['text']); + if(! $text) + { return; + } $sitename = $a->config['sitename']; if (!x($a->config['admin_name'])) - $sender_name = L10n::t('%s Administrator', $sitename); - else - $sender_name = L10n::t('%1$s, %2$s Administrator', $a->config['admin_name'], $sitename); + { + $sender_name = '"' . L10n::t('%s Administrator', $sitename) . '"'; + } else { + $sender_name = '"' . L10n::t('%1$s, %2$s Administrator', $a->config['admin_name'], $sitename) . '"'; + } if (! x($a->config['sender_email'])) + { $sender_email = 'noreply@' . $a->get_hostname(); - else + } else { $sender_email = $a->config['sender_email']; + } $subject = $_REQUEST['subject']; @@ -57,7 +69,8 @@ function notifyall_post(&$a) { // if this is a test, send it only to the admin(s) // admin_email might be a comma separated list, but we need "a@b','c@d','e@f - if (intval($_REQUEST['test'])) { + if (intval($_REQUEST['test'])) + { $email = $a->config['admin_email']; $email = "'" . str_replace([" ",","], ["","','"], $email) . "'"; } @@ -65,12 +78,14 @@ function notifyall_post(&$a) { $recips = q("SELECT DISTINCT `email` FROM `user` WHERE `verified` AND NOT `account_removed` AND NOT `account_expired` $sql_extra"); - if (! $recips) { + if (! $recips) + { notice(L10n::t('No recipients found.') . EOL); return; } - foreach ($recips as $recip) { + foreach ($recips as $recip) + { Emailer::send([ 'fromName' => $sender_name, 'fromEmail' => $sender_email, -- 2.43.0 From d1bf9bd4b7f0f18dfc6cae19859cf2ebe6c3073f Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sun, 13 May 2018 17:14:13 +0200 Subject: [PATCH 02/43] noX --- notifyall/notifyall.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notifyall/notifyall.php b/notifyall/notifyall.php index 6c65c5c6..a8b22a67 100644 --- a/notifyall/notifyall.php +++ b/notifyall/notifyall.php @@ -46,7 +46,7 @@ function notifyall_post(&$a) $sitename = $a->config['sitename']; - if (!x($a->config['admin_name'])) + if (empty($a->config['admin_name'])) { $sender_name = '"' . L10n::t('%s Administrator', $sitename) . '"'; } else { -- 2.43.0 From 82ff2c2dd2f74ea72f00b013bb9bb41109d8e6c7 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sun, 13 May 2018 17:16:06 +0200 Subject: [PATCH 03/43] more free Apps for the world --- notifyall/notifyall.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/notifyall/notifyall.php b/notifyall/notifyall.php index a8b22a67..8596328e 100644 --- a/notifyall/notifyall.php +++ b/notifyall/notifyall.php @@ -11,6 +11,7 @@ use Friendica\Content\Text\BBCode; use Friendica\Core\L10n; use Friendica\Util\Emailer; +use Friendica\App; function notifyall_install() { @@ -24,13 +25,13 @@ function notifyall_uninstall() function notifyall_module() {} -function notifyall_addon_admin(&$a, &$o) +function notifyall_addon_admin(App &$a, &$o) { $o = '
    ' . L10n::t('Send email to all members') . '
'; } -function notifyall_post(&$a) +function notifyall_post(App &$a) { if(! is_site_admin()) { -- 2.43.0 From 8401cfb6f9cd33502d2785ecfc0728a2d6fe4a0b Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sun, 13 May 2018 17:17:40 +0200 Subject: [PATCH 04/43] less & --- notifyall/notifyall.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notifyall/notifyall.php b/notifyall/notifyall.php index 8596328e..10162c50 100644 --- a/notifyall/notifyall.php +++ b/notifyall/notifyall.php @@ -25,13 +25,13 @@ function notifyall_uninstall() function notifyall_module() {} -function notifyall_addon_admin(App &$a, &$o) +function notifyall_addon_admin(App $a, &$o) { $o = '
    ' . L10n::t('Send email to all members') . '
'; } -function notifyall_post(App &$a) +function notifyall_post(App $a) { if(! is_site_admin()) { -- 2.43.0 From a74dbd6ad0d8fbf6b74f6b86435899a2e28ec284 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Mon, 14 May 2018 06:59:26 +0200 Subject: [PATCH 05/43] nitpickers --- notifyall/notifyall.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notifyall/notifyall.php b/notifyall/notifyall.php index 10162c50..76e24662 100644 --- a/notifyall/notifyall.php +++ b/notifyall/notifyall.php @@ -33,7 +33,7 @@ function notifyall_addon_admin(App $a, &$o) function notifyall_post(App $a) { - if(! is_site_admin()) + if(!is_site_admin()) { return; } @@ -50,7 +50,7 @@ function notifyall_post(App $a) if (empty($a->config['admin_name'])) { $sender_name = '"' . L10n::t('%s Administrator', $sitename) . '"'; - } else { + } else { $sender_name = '"' . L10n::t('%1$s, %2$s Administrator', $a->config['admin_name'], $sitename) . '"'; } -- 2.43.0 From c297dfb24f46446b2a87afd5843224c18125cbc8 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Mon, 14 May 2018 07:02:31 +0200 Subject: [PATCH 06/43] bracings --- notifyall/notifyall.php | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/notifyall/notifyall.php b/notifyall/notifyall.php index 76e24662..a764b2ac 100644 --- a/notifyall/notifyall.php +++ b/notifyall/notifyall.php @@ -33,29 +33,25 @@ function notifyall_addon_admin(App $a, &$o) function notifyall_post(App $a) { - if(!is_site_admin()) - { + if(!is_site_admin()) { return; } $text = trim($_REQUEST['text']); - if(! $text) - { + if(! $text) { return; } $sitename = $a->config['sitename']; - if (empty($a->config['admin_name'])) - { + if (empty($a->config['admin_name'])) { $sender_name = '"' . L10n::t('%s Administrator', $sitename) . '"'; } else { $sender_name = '"' . L10n::t('%1$s, %2$s Administrator', $a->config['admin_name'], $sitename) . '"'; } - if (! x($a->config['sender_email'])) - { + if (! x($a->config['sender_email'])) { $sender_email = 'noreply@' . $a->get_hostname(); } else { $sender_email = $a->config['sender_email']; @@ -70,8 +66,7 @@ function notifyall_post(App $a) // if this is a test, send it only to the admin(s) // admin_email might be a comma separated list, but we need "a@b','c@d','e@f - if (intval($_REQUEST['test'])) - { + if (intval($_REQUEST['test'])) { $email = $a->config['admin_email']; $email = "'" . str_replace([" ",","], ["","','"], $email) . "'"; } @@ -79,14 +74,12 @@ function notifyall_post(App $a) $recips = q("SELECT DISTINCT `email` FROM `user` WHERE `verified` AND NOT `account_removed` AND NOT `account_expired` $sql_extra"); - if (! $recips) - { + if (! $recips) { notice(L10n::t('No recipients found.') . EOL); return; } - foreach ($recips as $recip) - { + foreach ($recips as $recip) { Emailer::send([ 'fromName' => $sender_name, 'fromEmail' => $sender_email, -- 2.43.0 From 6244cfe58adb061cafafc03a632cdbea3717350d Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Mon, 14 May 2018 14:45:29 +0200 Subject: [PATCH 07/43] no more space to breath --- notifyall/notifyall.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notifyall/notifyall.php b/notifyall/notifyall.php index a764b2ac..c58d8c8e 100644 --- a/notifyall/notifyall.php +++ b/notifyall/notifyall.php @@ -74,7 +74,7 @@ function notifyall_post(App $a) $recips = q("SELECT DISTINCT `email` FROM `user` WHERE `verified` AND NOT `account_removed` AND NOT `account_expired` $sql_extra"); - if (! $recips) { + if (! $recips) { notice(L10n::t('No recipients found.') . EOL); return; } -- 2.43.0 From ca50db103a6e664afd771e957da27420b251d2d8 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sun, 20 May 2018 19:16:32 +0200 Subject: [PATCH 08/43] update to the FI translations THX kris --- curweather/lang/fi-fi/messages.po | 18 +++++++++--------- curweather/lang/fi-fi/strings.php | 17 +++++++++-------- diaspora/lang/fi-fi/messages.po | 6 +++--- diaspora/lang/fi-fi/strings.php | 5 +++-- forumdirectory/lang/fi-fi/messages.po | 10 +++++----- forumdirectory/lang/fi-fi/strings.php | 9 +++++---- fromgplus/lang/fi-fi/messages.po | 8 ++++---- fromgplus/lang/fi-fi/strings.php | 7 ++++--- impressum/lang/fi-fi/messages.po | 6 +++--- impressum/lang/fi-fi/strings.php | 5 +++-- irc/lang/fi-fi/messages.po | 6 +++--- irc/lang/fi-fi/strings.php | 5 +++-- jappixmini/lang/fi-fi/messages.po | 4 ++-- jappixmini/lang/fi-fi/strings.php | 3 ++- js_upload/lang/fi-fi/messages.po | 4 ++-- js_upload/lang/fi-fi/strings.php | 3 ++- libravatar/lang/fi-fi/messages.po | 8 ++++---- libravatar/lang/fi-fi/strings.php | 7 ++++--- notifyall/lang/fi-fi/messages.po | 2 +- notifyall/lang/fi-fi/strings.php | 3 ++- nsfw/lang/fi-fi/messages.po | 6 +++--- nsfw/lang/fi-fi/strings.php | 5 +++-- numfriends/lang/fi-fi/messages.po | 5 +++-- numfriends/lang/fi-fi/strings.php | 3 ++- openstreetmap/lang/fi-fi/messages.po | 7 ++++--- openstreetmap/lang/fi-fi/strings.php | 5 +++-- public_server/lang/fi-fi/messages.po | 4 ++-- public_server/lang/fi-fi/strings.php | 3 ++- twitter/lang/fi-fi/messages.po | 18 +++++++++--------- twitter/lang/fi-fi/strings.php | 17 +++++++++-------- viewsrc/lang/fi-fi/messages.po | 23 +++++++++++++++++++++++ viewsrc/lang/fi-fi/strings.php | 9 +++++++++ windowsphonepush/lang/fi-fi/messages.po | 4 ++-- windowsphonepush/lang/fi-fi/strings.php | 3 ++- wppost/lang/fi-fi/messages.po | 14 +++++++------- wppost/lang/fi-fi/strings.php | 13 +++++++------ 36 files changed, 163 insertions(+), 112 deletions(-) create mode 100644 viewsrc/lang/fi-fi/messages.po create mode 100644 viewsrc/lang/fi-fi/strings.php diff --git a/curweather/lang/fi-fi/messages.po b/curweather/lang/fi-fi/messages.po index d8534ff9..d3e1e8f6 100644 --- a/curweather/lang/fi-fi/messages.po +++ b/curweather/lang/fi-fi/messages.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-09-25 17:17+0200\n" -"PO-Revision-Date: 2018-04-18 14:58+0000\n" +"PO-Revision-Date: 2018-05-12 12:42+0000\n" "Last-Translator: Kris\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/Friendica/friendica/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgstr "" #: curweather.php:31 msgid "Error fetching weather data.\\nError was: " -msgstr "" +msgstr "Säätietojen noutamisessa tapahtui virhe.\\nLisätietoja: " #: curweather.php:111 curweather.php:172 msgid "Current Weather" @@ -46,7 +46,7 @@ msgstr "Viimeksi päivitetty" #: curweather.php:122 msgid "Data by" -msgstr "" +msgstr "Tiedot tuottaa" #: curweather.php:123 msgid "Show on map" @@ -66,7 +66,7 @@ msgstr "Sääasetukset päivitetty." #: curweather.php:161 msgid "No APPID found, please contact your admin to obtain one." -msgstr "" +msgstr "APPID puuttuu, ota yhteyttä ylläpitäjään." #: curweather.php:171 curweather.php:200 msgid "Save Settings" @@ -88,7 +88,7 @@ msgstr "Sijaintisi" msgid "" "Identifier of your location (name or zip code), e.g. Berlin,DE or " "14476,DE." -msgstr "" +msgstr "Sijantisi (paikka tai postinumero), esim. Helsinki,FI tai 00100,FI." #: curweather.php:176 msgid "Units" @@ -104,11 +104,11 @@ msgstr "Näytä säätiedot" #: curweather.php:190 msgid "Curweather settings saved." -msgstr "" +msgstr "Curweather -asetukset tallennettu." #: curweather.php:201 msgid "Caching Interval" -msgstr "" +msgstr "Välimuistin aikaväli" #: curweather.php:201 msgid "" @@ -118,7 +118,7 @@ msgstr "" #: curweather.php:201 msgid "no cache" -msgstr "" +msgstr "Ei välimuistia" #: curweather.php:201 msgid "minutes" @@ -126,7 +126,7 @@ msgstr "minuuttia" #: curweather.php:202 msgid "Your APPID" -msgstr "" +msgstr "Sinun APPID" #: curweather.php:202 msgid "Your API key provided by OpenWeatherMap" diff --git a/curweather/lang/fi-fi/strings.php b/curweather/lang/fi-fi/strings.php index 9eee94b2..d942398d 100644 --- a/curweather/lang/fi-fi/strings.php +++ b/curweather/lang/fi-fi/strings.php @@ -2,33 +2,34 @@ if(! function_exists("string_plural_select_fi_fi")) { function string_plural_select_fi_fi($n){ + $n = intval($n); return ($n != 1);; }} ; -$a->strings["Error fetching weather data.\\nError was: "] = ""; +$a->strings["Error fetching weather data.\\nError was: "] = "Säätietojen noutamisessa tapahtui virhe.\\nLisätietoja: "; $a->strings["Current Weather"] = "Sää"; $a->strings["Relative Humidity"] = "Suhteellinen kosteus"; $a->strings["Pressure"] = "Ilmanpaine"; $a->strings["Wind"] = "Tuuli"; $a->strings["Last Updated"] = "Viimeksi päivitetty"; -$a->strings["Data by"] = ""; +$a->strings["Data by"] = "Tiedot tuottaa"; $a->strings["Show on map"] = "Näytä kartalla"; $a->strings["There was a problem accessing the weather data. But have a look"] = "Säätietohaussa tapahtui virhe. Voit kuitenkin katsoa"; $a->strings["at OpenWeatherMap"] = "OpenWeatherMappiä"; $a->strings["Current Weather settings updated."] = "Sääasetukset päivitetty."; -$a->strings["No APPID found, please contact your admin to obtain one."] = ""; +$a->strings["No APPID found, please contact your admin to obtain one."] = "APPID puuttuu, ota yhteyttä ylläpitäjään."; $a->strings["Save Settings"] = "Tallenna asetukset"; $a->strings["Settings"] = "Asetukset"; $a->strings["Enter either the name of your location or the zip code."] = "Syötä sijaintisi nimi tai postinumero."; $a->strings["Your Location"] = "Sijaintisi"; -$a->strings["Identifier of your location (name or zip code), e.g. Berlin,DE or 14476,DE."] = ""; +$a->strings["Identifier of your location (name or zip code), e.g. Berlin,DE or 14476,DE."] = "Sijantisi (paikka tai postinumero), esim. Helsinki,FI tai 00100,FI."; $a->strings["Units"] = "Yksiköt"; $a->strings["select if the temperature should be displayed in °C or °F"] = "ota käyttöön Celsius-asteikko (°C) tai Fahrenheit-asteikko (°F)"; $a->strings["Show weather data"] = "Näytä säätiedot"; -$a->strings["Curweather settings saved."] = ""; -$a->strings["Caching Interval"] = ""; +$a->strings["Curweather settings saved."] = "Curweather -asetukset tallennettu."; +$a->strings["Caching Interval"] = "Välimuistin aikaväli"; $a->strings["For how long should the weather data be cached? Choose according your OpenWeatherMap account type."] = ""; -$a->strings["no cache"] = ""; +$a->strings["no cache"] = "Ei välimuistia"; $a->strings["minutes"] = "minuuttia"; -$a->strings["Your APPID"] = ""; +$a->strings["Your APPID"] = "Sinun APPID"; $a->strings["Your API key provided by OpenWeatherMap"] = "API-avain OpenWeatherMapiltä"; diff --git a/diaspora/lang/fi-fi/messages.po b/diaspora/lang/fi-fi/messages.po index a460ab6b..fcbd43cf 100644 --- a/diaspora/lang/fi-fi/messages.po +++ b/diaspora/lang/fi-fi/messages.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-06-22 13:18+0200\n" -"PO-Revision-Date: 2018-04-17 19:28+0000\n" +"PO-Revision-Date: 2018-05-12 12:49+0000\n" "Last-Translator: Kris\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/Friendica/friendica/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -28,7 +28,7 @@ msgstr "Lähetä Diasporaan" msgid "" "Can't login to your Diaspora account. Please check username and password and" " ensure you used the complete address (including http...)" -msgstr "" +msgstr "Kirjautuminen Diasporaan epäonnistui. Tarkista että käyttäjätunnus ja salasana ovat oikein ja varmista että kirjoitit täydellisen osoitteen (mukaan lukien http...)." #: diaspora.php:149 diaspora.php:153 msgid "Diaspora Export" @@ -60,4 +60,4 @@ msgstr "Tallenna asetukset" #: diaspora.php:324 msgid "Diaspora post failed. Queued for retry." -msgstr "" +msgstr "Diaspora -julkaisu epäonnistui. Jonossa uudelleenyritykseen." diff --git a/diaspora/lang/fi-fi/strings.php b/diaspora/lang/fi-fi/strings.php index 6907b1bd..8d14a70b 100644 --- a/diaspora/lang/fi-fi/strings.php +++ b/diaspora/lang/fi-fi/strings.php @@ -2,11 +2,12 @@ if(! function_exists("string_plural_select_fi_fi")) { function string_plural_select_fi_fi($n){ + $n = intval($n); return ($n != 1);; }} ; $a->strings["Post to Diaspora"] = "Lähetä Diasporaan"; -$a->strings["Can't login to your Diaspora account. Please check username and password and ensure you used the complete address (including http...)"] = ""; +$a->strings["Can't login to your Diaspora account. Please check username and password and ensure you used the complete address (including http...)"] = "Kirjautuminen Diasporaan epäonnistui. Tarkista että käyttäjätunnus ja salasana ovat oikein ja varmista että kirjoitit täydellisen osoitteen (mukaan lukien http...)."; $a->strings["Diaspora Export"] = "Diaspora Export"; $a->strings["Enable Diaspora Post Addon"] = "Ota Diaspora-viestilisäosa käyttöön"; $a->strings["Diaspora username"] = "Diaspora -käyttäjätunnus"; @@ -14,4 +15,4 @@ $a->strings["Diaspora password"] = "Diaspora -salasana"; $a->strings["Diaspora site URL"] = "Diaspora -sivuston URL-osoite"; $a->strings["Post to Diaspora by default"] = "Lähetä Diasporaan oletuksena"; $a->strings["Save Settings"] = "Tallenna asetukset"; -$a->strings["Diaspora post failed. Queued for retry."] = ""; +$a->strings["Diaspora post failed. Queued for retry."] = "Diaspora -julkaisu epäonnistui. Jonossa uudelleenyritykseen."; diff --git a/forumdirectory/lang/fi-fi/messages.po b/forumdirectory/lang/fi-fi/messages.po index 76ab16fd..6c4f08c9 100644 --- a/forumdirectory/lang/fi-fi/messages.po +++ b/forumdirectory/lang/fi-fi/messages.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-27 05:01-0500\n" -"PO-Revision-Date: 2018-04-08 15:43+0000\n" +"PO-Revision-Date: 2018-05-12 12:50+0000\n" "Last-Translator: Kris\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/Friendica/friendica/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -34,7 +34,7 @@ msgstr "Maailmanlaajuinen hakemisto" #: forumdirectory.php:79 msgid "Find on this site" -msgstr "" +msgstr "Sivustohaku" #: forumdirectory.php:81 msgid "Finding: " @@ -42,7 +42,7 @@ msgstr "" #: forumdirectory.php:82 msgid "Site Directory" -msgstr "" +msgstr "Sivustoluettelo" #: forumdirectory.php:83 msgid "Find" @@ -66,7 +66,7 @@ msgstr "Sukupuoli:" #: forumdirectory.php:160 msgid "Status:" -msgstr "" +msgstr "Tila:" #: forumdirectory.php:162 msgid "Homepage:" @@ -78,4 +78,4 @@ msgstr "Lisätietoja:" #: forumdirectory.php:201 msgid "No entries (some entries may be hidden)." -msgstr "" +msgstr "Ei kohteita (jotkut kohteet saattaa olla piilotettuja)." diff --git a/forumdirectory/lang/fi-fi/strings.php b/forumdirectory/lang/fi-fi/strings.php index 34128035..dfe4a7ec 100644 --- a/forumdirectory/lang/fi-fi/strings.php +++ b/forumdirectory/lang/fi-fi/strings.php @@ -2,21 +2,22 @@ if(! function_exists("string_plural_select_fi_fi")) { function string_plural_select_fi_fi($n){ + $n = intval($n); return ($n != 1);; }} ; $a->strings["Forum Directory"] = "Foorumihakemisto"; $a->strings["Public access denied."] = "Julkinen käyttö estetty."; $a->strings["Global Directory"] = "Maailmanlaajuinen hakemisto"; -$a->strings["Find on this site"] = ""; +$a->strings["Find on this site"] = "Sivustohaku"; $a->strings["Finding: "] = ""; -$a->strings["Site Directory"] = ""; +$a->strings["Site Directory"] = "Sivustoluettelo"; $a->strings["Find"] = "Etsi"; $a->strings["Age: "] = "Ikä:"; $a->strings["Gender: "] = "Sukupuoli:"; $a->strings["Location:"] = "Sijainti:"; $a->strings["Gender:"] = "Sukupuoli:"; -$a->strings["Status:"] = ""; +$a->strings["Status:"] = "Tila:"; $a->strings["Homepage:"] = "Kotisivu:"; $a->strings["About:"] = "Lisätietoja:"; -$a->strings["No entries (some entries may be hidden)."] = ""; +$a->strings["No entries (some entries may be hidden)."] = "Ei kohteita (jotkut kohteet saattaa olla piilotettuja)."; diff --git a/fromgplus/lang/fi-fi/messages.po b/fromgplus/lang/fi-fi/messages.po index f93bc227..c3679ac6 100644 --- a/fromgplus/lang/fi-fi/messages.po +++ b/fromgplus/lang/fi-fi/messages.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-04-01 11:14-0400\n" -"PO-Revision-Date: 2018-04-16 16:24+0000\n" +"PO-Revision-Date: 2018-05-12 12:52+0000\n" "Last-Translator: Kris\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/Friendica/friendica/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -26,7 +26,7 @@ msgstr "Google+ peilaus" #: fromgplus.php:64 msgid "Enable Google+ Import" -msgstr "" +msgstr "Ota Google+ tuonti käyttöön" #: fromgplus.php:67 msgid "Google Account ID" @@ -34,7 +34,7 @@ msgstr "Google -tilin tunnus" #: fromgplus.php:70 msgid "Add keywords to post" -msgstr "" +msgstr "Lisää avainsanoja julkaisuun" #: fromgplus.php:75 fromgplus.php:105 msgid "Save Settings" @@ -42,7 +42,7 @@ msgstr "Tallenna asetukset" #: fromgplus.php:96 msgid "Google+ Import Settings saved." -msgstr "" +msgstr "Google+ tuontiasetukset tallennettu." #: fromgplus.php:106 msgid "Key" diff --git a/fromgplus/lang/fi-fi/strings.php b/fromgplus/lang/fi-fi/strings.php index e2ab71e9..a49ad469 100644 --- a/fromgplus/lang/fi-fi/strings.php +++ b/fromgplus/lang/fi-fi/strings.php @@ -2,14 +2,15 @@ if(! function_exists("string_plural_select_fi_fi")) { function string_plural_select_fi_fi($n){ + $n = intval($n); return ($n != 1);; }} ; $a->strings["Google+ Mirror"] = "Google+ peilaus"; -$a->strings["Enable Google+ Import"] = ""; +$a->strings["Enable Google+ Import"] = "Ota Google+ tuonti käyttöön"; $a->strings["Google Account ID"] = "Google -tilin tunnus"; -$a->strings["Add keywords to post"] = ""; +$a->strings["Add keywords to post"] = "Lisää avainsanoja julkaisuun"; $a->strings["Save Settings"] = "Tallenna asetukset"; -$a->strings["Google+ Import Settings saved."] = ""; +$a->strings["Google+ Import Settings saved."] = "Google+ tuontiasetukset tallennettu."; $a->strings["Key"] = "Avain"; $a->strings["Settings updated."] = "Asetukset päivitetty."; diff --git a/impressum/lang/fi-fi/messages.po b/impressum/lang/fi-fi/messages.po index c3b3fe57..5b00dedc 100644 --- a/impressum/lang/fi-fi/messages.po +++ b/impressum/lang/fi-fi/messages.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-27 05:01-0500\n" -"PO-Revision-Date: 2018-04-21 00:16+0000\n" +"PO-Revision-Date: 2018-05-12 12:55+0000\n" "Last-Translator: Kris\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/Friendica/friendica/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -53,7 +53,7 @@ msgstr "Lähetä" #: impressum.php:84 msgid "The page operators name." -msgstr "" +msgstr "Sivuston ylläpitäjän nimi." #: impressum.php:85 msgid "Site Owners Profile" @@ -61,7 +61,7 @@ msgstr "Sivuston omistajan profiili" #: impressum.php:85 msgid "Profile address of the operator." -msgstr "" +msgstr "Ylläpitäjän profiiliosoite." #: impressum.php:86 msgid "How to contact the operator via snail mail. You can use BBCode here." diff --git a/impressum/lang/fi-fi/strings.php b/impressum/lang/fi-fi/strings.php index 94c94e10..404f0f13 100644 --- a/impressum/lang/fi-fi/strings.php +++ b/impressum/lang/fi-fi/strings.php @@ -2,6 +2,7 @@ if(! function_exists("string_plural_select_fi_fi")) { function string_plural_select_fi_fi($n){ + $n = intval($n); return ($n != 1);; }} ; @@ -12,9 +13,9 @@ $a->strings["Postal Address"] = "Postiosoite"; $a->strings["The impressum addon needs to be configured!
Please add at least the owner variable to your config file. For other variables please refer to the README file of the addon."] = ""; $a->strings["Settings updated."] = "Asetukset tallennettu"; $a->strings["Submit"] = "Lähetä"; -$a->strings["The page operators name."] = ""; +$a->strings["The page operators name."] = "Sivuston ylläpitäjän nimi."; $a->strings["Site Owners Profile"] = "Sivuston omistajan profiili"; -$a->strings["Profile address of the operator."] = ""; +$a->strings["Profile address of the operator."] = "Ylläpitäjän profiiliosoite."; $a->strings["How to contact the operator via snail mail. You can use BBCode here."] = ""; $a->strings["Notes"] = "Muistiinpanot"; $a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = ""; diff --git a/irc/lang/fi-fi/messages.po b/irc/lang/fi-fi/messages.po index 4ea18856..4090d209 100644 --- a/irc/lang/fi-fi/messages.po +++ b/irc/lang/fi-fi/messages.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-07-08 13:17+0200\n" -"PO-Revision-Date: 2018-04-08 15:56+0000\n" +"PO-Revision-Date: 2018-05-12 12:57+0000\n" "Last-Translator: Kris\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/Friendica/friendica/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "Tallenna asetukset" #: irc.php:40 irc.php:137 msgid "Channel(s) to auto connect (comma separated)" -msgstr "" +msgstr "Kanavat jota yhdistetään automaattisesti (pilkuilla eroteltu luettelo)" #: irc.php:40 irc.php:137 msgid "" "List of channels that shall automatically connected to when the app is " "launched." -msgstr "" +msgstr "Kanavat johon luodaan yhteys automaattisesti kun sovellus käynnistyy." #: irc.php:41 irc.php:138 msgid "Popular Channels (comma separated)" diff --git a/irc/lang/fi-fi/strings.php b/irc/lang/fi-fi/strings.php index 385f8ff4..4c1c3e33 100644 --- a/irc/lang/fi-fi/strings.php +++ b/irc/lang/fi-fi/strings.php @@ -2,14 +2,15 @@ if(! function_exists("string_plural_select_fi_fi")) { function string_plural_select_fi_fi($n){ + $n = intval($n); return ($n != 1);; }} ; $a->strings["IRC Settings"] = "IRC-asetukset"; $a->strings["Here you can change the system wide settings for the channels to automatically join and access via the side bar. Note the changes you do here, only effect the channel selection if you are logged in."] = ""; $a->strings["Save Settings"] = "Tallenna asetukset"; -$a->strings["Channel(s) to auto connect (comma separated)"] = ""; -$a->strings["List of channels that shall automatically connected to when the app is launched."] = ""; +$a->strings["Channel(s) to auto connect (comma separated)"] = "Kanavat jota yhdistetään automaattisesti (pilkuilla eroteltu luettelo)"; +$a->strings["List of channels that shall automatically connected to when the app is launched."] = "Kanavat johon luodaan yhteys automaattisesti kun sovellus käynnistyy."; $a->strings["Popular Channels (comma separated)"] = "Suositut kanavat (pilkuilla eroteltu luettelo)"; $a->strings["List of popular channels, will be displayed at the side and hotlinked for easy joining."] = ""; $a->strings["IRC settings saved."] = "IRC-asetukset tallennettu."; diff --git a/jappixmini/lang/fi-fi/messages.po b/jappixmini/lang/fi-fi/messages.po index 49e3d2e3..c1b0cd57 100644 --- a/jappixmini/lang/fi-fi/messages.po +++ b/jappixmini/lang/fi-fi/messages.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-27 05:01-0500\n" -"PO-Revision-Date: 2018-04-17 19:41+0000\n" +"PO-Revision-Date: 2018-05-12 12:59+0000\n" "Last-Translator: Kris\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/Friendica/friendica/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -59,7 +59,7 @@ msgstr "Friendica -salasana" #: jappixmini.php:296 msgid "Approve subscription requests from Friendica contacts automatically" -msgstr "" +msgstr "Hyväksy automaattisesti tilauspyynnöt Friendica -kontakteilta" #: jappixmini.php:299 msgid "Subscribe to Friendica contacts automatically" diff --git a/jappixmini/lang/fi-fi/strings.php b/jappixmini/lang/fi-fi/strings.php index 32f689ea..f86fbc3c 100644 --- a/jappixmini/lang/fi-fi/strings.php +++ b/jappixmini/lang/fi-fi/strings.php @@ -2,6 +2,7 @@ if(! function_exists("string_plural_select_fi_fi")) { function string_plural_select_fi_fi($n){ + $n = intval($n); return ($n != 1);; }} ; @@ -14,7 +15,7 @@ $a->strings["Jabber BOSH host"] = "Jabber BOSH-palvelin"; $a->strings["Jabber password"] = "Jabber -salasana"; $a->strings["Encrypt Jabber password with Friendica password (recommended)"] = "Salaa Jabber -salasana Friendica -salasanalla (suositeltava)"; $a->strings["Friendica password"] = "Friendica -salasana"; -$a->strings["Approve subscription requests from Friendica contacts automatically"] = ""; +$a->strings["Approve subscription requests from Friendica contacts automatically"] = "Hyväksy automaattisesti tilauspyynnöt Friendica -kontakteilta"; $a->strings["Subscribe to Friendica contacts automatically"] = ""; $a->strings["Purge internal list of jabber addresses of contacts"] = ""; $a->strings["Submit"] = "Lähetä"; diff --git a/js_upload/lang/fi-fi/messages.po b/js_upload/lang/fi-fi/messages.po index 523d1297..ba7f228c 100644 --- a/js_upload/lang/fi-fi/messages.po +++ b/js_upload/lang/fi-fi/messages.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-27 05:01-0500\n" -"PO-Revision-Date: 2018-04-16 16:21+0000\n" +"PO-Revision-Date: 2018-05-12 13:00+0000\n" "Last-Translator: Kris\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/Friendica/friendica/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -50,7 +50,7 @@ msgstr "Kuva ylittää kokorajoituksen " #: js_upload.php:332 msgid "File has an invalid extension, it should be one of " -msgstr "" +msgstr "Tiedostopääte on virheellinen. Sallitut tiedostopäätteet:" #: js_upload.php:343 msgid "Upload was cancelled, or server error encountered" diff --git a/js_upload/lang/fi-fi/strings.php b/js_upload/lang/fi-fi/strings.php index 7cffc902..25db34c5 100644 --- a/js_upload/lang/fi-fi/strings.php +++ b/js_upload/lang/fi-fi/strings.php @@ -2,6 +2,7 @@ if(! function_exists("string_plural_select_fi_fi")) { function string_plural_select_fi_fi($n){ + $n = intval($n); return ($n != 1);; }} ; @@ -12,5 +13,5 @@ $a->strings["Failed"] = "Epäonnistui"; $a->strings["No files were uploaded."] = "Tiedostoja ei lähetetty."; $a->strings["Uploaded file is empty"] = "Lähetetty tiedosto on tyhjä"; $a->strings["Image exceeds size limit of "] = "Kuva ylittää kokorajoituksen "; -$a->strings["File has an invalid extension, it should be one of "] = ""; +$a->strings["File has an invalid extension, it should be one of "] = "Tiedostopääte on virheellinen. Sallitut tiedostopäätteet:"; $a->strings["Upload was cancelled, or server error encountered"] = "Lataus peruutettu, tai palvelimessa tapahtui virhe."; diff --git a/libravatar/lang/fi-fi/messages.po b/libravatar/lang/fi-fi/messages.po index 72c2798a..96e0e63d 100644 --- a/libravatar/lang/fi-fi/messages.po +++ b/libravatar/lang/fi-fi/messages.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-27 05:01-0500\n" -"PO-Revision-Date: 2018-04-18 15:14+0000\n" +"PO-Revision-Date: 2018-05-12 13:04+0000\n" "Last-Translator: Kris\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/Friendica/friendica/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgstr "" #: libravatar.php:14 msgid "Could NOT install Libravatar successfully.
It requires PHP >= 5.3" -msgstr "" +msgstr "Libravataria ei voitu asentaa.
Vaatii PHP-version >=5.3" #: libravatar.php:73 msgid "generic profile image" @@ -55,7 +55,7 @@ msgstr "PHP-versiosi on %s. Friendica vaatii PHP >= 5.3." #: libravatar.php:84 msgid "This addon is not functional on your server." -msgstr "" +msgstr "Tämä lisäosa ei toimi palvelimellasi." #: libravatar.php:93 msgid "Information" @@ -78,7 +78,7 @@ msgstr "Avatarin oletuskuva" #: libravatar.php:100 msgid "Select default avatar image if none was found. See README" -msgstr "" +msgstr "Valitse oletusavatarikuva jos avatari puuttuu. Katso lisätietoja README:stä." #: libravatar.php:112 msgid "Libravatar settings updated." diff --git a/libravatar/lang/fi-fi/strings.php b/libravatar/lang/fi-fi/strings.php index a29b3ba8..6be2f23f 100644 --- a/libravatar/lang/fi-fi/strings.php +++ b/libravatar/lang/fi-fi/strings.php @@ -2,10 +2,11 @@ if(! function_exists("string_plural_select_fi_fi")) { function string_plural_select_fi_fi($n){ + $n = intval($n); return ($n != 1);; }} ; -$a->strings["Could NOT install Libravatar successfully.
It requires PHP >= 5.3"] = ""; +$a->strings["Could NOT install Libravatar successfully.
It requires PHP >= 5.3"] = "Libravataria ei voitu asentaa.
Vaatii PHP-version >=5.3"; $a->strings["generic profile image"] = "Yleinen profiilikuva"; $a->strings["random geometric pattern"] = "satunnainen geometrinen kuvio"; $a->strings["monster face"] = "hirviö"; @@ -13,10 +14,10 @@ $a->strings["computer generated face"] = "tietokoneella tuotettut kasvot"; $a->strings["retro arcade style face"] = "retro-videopeli kasvot"; $a->strings["Warning"] = "Varoitus"; $a->strings["Your PHP version %s is lower than the required PHP >= 5.3."] = "PHP-versiosi on %s. Friendica vaatii PHP >= 5.3."; -$a->strings["This addon is not functional on your server."] = ""; +$a->strings["This addon is not functional on your server."] = "Tämä lisäosa ei toimi palvelimellasi."; $a->strings["Information"] = "Tietoja"; $a->strings["Gravatar addon is installed. Please disable the Gravatar addon.
The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = ""; $a->strings["Submit"] = "Lähetä"; $a->strings["Default avatar image"] = "Avatarin oletuskuva"; -$a->strings["Select default avatar image if none was found. See README"] = ""; +$a->strings["Select default avatar image if none was found. See README"] = "Valitse oletusavatarikuva jos avatari puuttuu. Katso lisätietoja README:stä."; $a->strings["Libravatar settings updated."] = "Libravatar -asetukset päivitetty"; diff --git a/notifyall/lang/fi-fi/messages.po b/notifyall/lang/fi-fi/messages.po index 67bd99e1..e985bea3 100644 --- a/notifyall/lang/fi-fi/messages.po +++ b/notifyall/lang/fi-fi/messages.po @@ -34,7 +34,7 @@ msgstr "%1$s, %2$s-ylläpitäjä" #: notifyall.php:60 msgid "No recipients found." -msgstr "" +msgstr "Vastaanottajaa ei löytynyt." #: notifyall.php:78 msgid "Emails sent" diff --git a/notifyall/lang/fi-fi/strings.php b/notifyall/lang/fi-fi/strings.php index e6119bfe..1c467153 100644 --- a/notifyall/lang/fi-fi/strings.php +++ b/notifyall/lang/fi-fi/strings.php @@ -2,13 +2,14 @@ if(! function_exists("string_plural_select_fi_fi")) { function string_plural_select_fi_fi($n){ + $n = intval($n); return ($n != 1);; }} ; $a->strings["Send email to all members"] = "Lähetä sähköposti kaikille jäsenille"; $a->strings["%s Administrator"] = "%s-ylläpitäjä"; $a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s-ylläpitäjä"; -$a->strings["No recipients found."] = ""; +$a->strings["No recipients found."] = "Vastaanottajaa ei löytynyt."; $a->strings["Emails sent"] = "Sähköpostit lähetetty"; $a->strings["Send email to all members of this Friendica instance."] = ""; $a->strings["Message subject"] = "Viestin aihe"; diff --git a/nsfw/lang/fi-fi/messages.po b/nsfw/lang/fi-fi/messages.po index 67ce0c18..59833b95 100644 --- a/nsfw/lang/fi-fi/messages.po +++ b/nsfw/lang/fi-fi/messages.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-04-01 11:11-0400\n" -"PO-Revision-Date: 2018-04-16 16:12+0000\n" +"PO-Revision-Date: 2018-05-12 13:38+0000\n" "Last-Translator: Kris\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/Friendica/friendica/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -55,9 +55,9 @@ msgstr "NSFW-asetukset tallennettu." #: nsfw.php:162 #, php-format msgid "Filtered tag: %s" -msgstr "" +msgstr "Suodatettu tunniste: %s" #: nsfw.php:164 #, php-format msgid "Filtered word: %s" -msgstr "" +msgstr "Suodatettu sana: %s" diff --git a/nsfw/lang/fi-fi/strings.php b/nsfw/lang/fi-fi/strings.php index 8e41f706..2afd44f4 100644 --- a/nsfw/lang/fi-fi/strings.php +++ b/nsfw/lang/fi-fi/strings.php @@ -2,6 +2,7 @@ if(! function_exists("string_plural_select_fi_fi")) { function string_plural_select_fi_fi($n){ + $n = intval($n); return ($n != 1);; }} ; @@ -12,5 +13,5 @@ $a->strings["Comma separated list of keywords to hide"] = ""; $a->strings["Save Settings"] = "Tallenna asetukset"; $a->strings["Use /expression/ to provide regular expressions"] = ""; $a->strings["NSFW Settings saved."] = "NSFW-asetukset tallennettu."; -$a->strings["Filtered tag: %s"] = ""; -$a->strings["Filtered word: %s"] = ""; +$a->strings["Filtered tag: %s"] = "Suodatettu tunniste: %s"; +$a->strings["Filtered word: %s"] = "Suodatettu sana: %s"; diff --git a/numfriends/lang/fi-fi/messages.po b/numfriends/lang/fi-fi/messages.po index 3052a2ae..e6feaadc 100644 --- a/numfriends/lang/fi-fi/messages.po +++ b/numfriends/lang/fi-fi/messages.po @@ -5,12 +5,13 @@ # # Translators: # Kris, 2018 +# Kris, 2018 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-27 05:01-0500\n" -"PO-Revision-Date: 2018-04-03 18:57+0000\n" +"PO-Revision-Date: 2018-05-12 13:36+0000\n" "Last-Translator: Kris\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/Friendica/friendica/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -29,7 +30,7 @@ msgstr "Numfriends -asetukset" #: numfriends.php:79 msgid "How many contacts to display on profile sidebar" -msgstr "" +msgstr "Kuinka monta kontaktia näytetään profiilin sivupalkissa" #: numfriends.php:85 msgid "Submit" diff --git a/numfriends/lang/fi-fi/strings.php b/numfriends/lang/fi-fi/strings.php index 9eb16aa6..029928a0 100644 --- a/numfriends/lang/fi-fi/strings.php +++ b/numfriends/lang/fi-fi/strings.php @@ -2,10 +2,11 @@ if(! function_exists("string_plural_select_fi_fi")) { function string_plural_select_fi_fi($n){ + $n = intval($n); return ($n != 1);; }} ; $a->strings["Numfriends settings updated."] = "Numfriends -asetukset päivitetty."; $a->strings["Numfriends Settings"] = "Numfriends -asetukset"; -$a->strings["How many contacts to display on profile sidebar"] = ""; +$a->strings["How many contacts to display on profile sidebar"] = "Kuinka monta kontaktia näytetään profiilin sivupalkissa"; $a->strings["Submit"] = "Lähetä"; diff --git a/openstreetmap/lang/fi-fi/messages.po b/openstreetmap/lang/fi-fi/messages.po index 5247c0d6..4e108293 100644 --- a/openstreetmap/lang/fi-fi/messages.po +++ b/openstreetmap/lang/fi-fi/messages.po @@ -5,12 +5,13 @@ # # Translators: # Kris, 2018 +# Kris, 2018 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-27 05:01-0500\n" -"PO-Revision-Date: 2018-04-03 18:57+0000\n" +"PO-Revision-Date: 2018-05-12 13:35+0000\n" "Last-Translator: Kris\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/Friendica/friendica/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -35,11 +36,11 @@ msgstr "" #: openstreetmap.php:96 msgid "Default zoom" -msgstr "" +msgstr "Oletuszoomaus" #: openstreetmap.php:96 msgid "The default zoom level. (1:world, 18:highest)" -msgstr "" +msgstr "Oletuszoomaustaso (1: kaukaisin, 18: läheisin)" #: openstreetmap.php:104 msgid "Settings updated." diff --git a/openstreetmap/lang/fi-fi/strings.php b/openstreetmap/lang/fi-fi/strings.php index c5cc14c9..62c6e54c 100644 --- a/openstreetmap/lang/fi-fi/strings.php +++ b/openstreetmap/lang/fi-fi/strings.php @@ -2,12 +2,13 @@ if(! function_exists("string_plural_select_fi_fi")) { function string_plural_select_fi_fi($n){ + $n = intval($n); return ($n != 1);; }} ; $a->strings["Submit"] = "Lähetä"; $a->strings["Tile Server URL"] = ""; $a->strings["A list of public tile servers"] = ""; -$a->strings["Default zoom"] = ""; -$a->strings["The default zoom level. (1:world, 18:highest)"] = ""; +$a->strings["Default zoom"] = "Oletuszoomaus"; +$a->strings["The default zoom level. (1:world, 18:highest)"] = "Oletuszoomaustaso (1: kaukaisin, 18: läheisin)"; $a->strings["Settings updated."] = "Asetukset päivitetty"; diff --git a/public_server/lang/fi-fi/messages.po b/public_server/lang/fi-fi/messages.po index 79b7458d..8150faba 100644 --- a/public_server/lang/fi-fi/messages.po +++ b/public_server/lang/fi-fi/messages.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-27 05:01-0500\n" -"PO-Revision-Date: 2018-04-17 19:54+0000\n" +"PO-Revision-Date: 2018-05-12 13:32+0000\n" "Last-Translator: Kris\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/Friendica/friendica/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -31,7 +31,7 @@ msgstr "%s -tilisi vanhenee muutaman päivän kuluttua." #: public_server.php:127 msgid "Your Friendica account is about to expire." -msgstr "" +msgstr "Friendica-tilisi umpeutuu kohta." #: public_server.php:128 #, php-format diff --git a/public_server/lang/fi-fi/strings.php b/public_server/lang/fi-fi/strings.php index 1d26a23e..2d81c883 100644 --- a/public_server/lang/fi-fi/strings.php +++ b/public_server/lang/fi-fi/strings.php @@ -2,10 +2,11 @@ if(! function_exists("string_plural_select_fi_fi")) { function string_plural_select_fi_fi($n){ + $n = intval($n); return ($n != 1);; }} ; $a->strings["Administrator"] = "Ylläpitäjä"; $a->strings["Your account on %s will expire in a few days."] = "%s -tilisi vanhenee muutaman päivän kuluttua."; -$a->strings["Your Friendica account is about to expire."] = ""; +$a->strings["Your Friendica account is about to expire."] = "Friendica-tilisi umpeutuu kohta."; $a->strings["Hi %1\$s,\n\nYour account on %2\$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"] = ""; diff --git a/twitter/lang/fi-fi/messages.po b/twitter/lang/fi-fi/messages.po index 6c0ee4c7..5c06e97f 100644 --- a/twitter/lang/fi-fi/messages.po +++ b/twitter/lang/fi-fi/messages.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-02-08 07:07+0100\n" -"PO-Revision-Date: 2018-04-17 20:04+0000\n" +"PO-Revision-Date: 2018-05-12 13:21+0000\n" "Last-Translator: Kris\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/Friendica/friendica/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -36,13 +36,13 @@ msgstr "Twitter -asetukset päivitetty." #: twitter.php:291 twitter.php:295 msgid "Twitter Import/Export/Mirror" -msgstr "" +msgstr "Twitter tuonti/vienti/peili" #: twitter.php:302 msgid "" "No consumer key pair for Twitter found. Please contact your site " "administrator." -msgstr "" +msgstr "Twitter -kuluttajan avainparia ei löytynyt. Ota yhteyttä sivuston ylläpitäjään." #: twitter.php:314 msgid "" @@ -94,15 +94,15 @@ msgstr "" #: twitter.php:351 msgid "Send public postings to Twitter by default" -msgstr "" +msgstr "Lähetä oletuksena kaikki julkiset julkaisut Twitteriin" #: twitter.php:354 msgid "Mirror all posts from twitter that are no replies" -msgstr "" +msgstr "Peilaa kaikki julkaisut Twitteristä jotka eivät ole vastauksia" #: twitter.php:357 msgid "Import the remote timeline" -msgstr "" +msgstr "Tuo etäaikajana" #: twitter.php:360 msgid "Automatically create contacts" @@ -110,7 +110,7 @@ msgstr "Luo kontaktit automaattisesti" #: twitter.php:619 msgid "Twitter post failed. Queued for retry." -msgstr "" +msgstr "Twitter -julkaisu epäonnistui. Jonossa uudelleenyritykseen." #: twitter.php:634 msgid "Settings updated." @@ -118,8 +118,8 @@ msgstr "Asetukset päivitetty." #: twitter.php:644 msgid "Consumer key" -msgstr "" +msgstr "Kuluttajan avain" #: twitter.php:645 msgid "Consumer secret" -msgstr "" +msgstr "Kuluttajasalaisuus" diff --git a/twitter/lang/fi-fi/strings.php b/twitter/lang/fi-fi/strings.php index fdbaba2a..d8b9fab2 100644 --- a/twitter/lang/fi-fi/strings.php +++ b/twitter/lang/fi-fi/strings.php @@ -2,14 +2,15 @@ if(! function_exists("string_plural_select_fi_fi")) { function string_plural_select_fi_fi($n){ + $n = intval($n); return ($n != 1);; }} ; $a->strings["Post to Twitter"] = "Lähetä Twitteriin"; $a->strings["You submitted an empty PIN, please Sign In with Twitter again to get a new one."] = ""; $a->strings["Twitter settings updated."] = "Twitter -asetukset päivitetty."; -$a->strings["Twitter Import/Export/Mirror"] = ""; -$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = ""; +$a->strings["Twitter Import/Export/Mirror"] = "Twitter tuonti/vienti/peili"; +$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Twitter -kuluttajan avainparia ei löytynyt. Ota yhteyttä sivuston ylläpitäjään."; $a->strings["At this Friendica instance the Twitter addon was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your public posts will be posted to Twitter."] = ""; $a->strings["Log in with Twitter"] = "Kirjaudu sisään Twitterillä"; $a->strings["Copy the PIN from Twitter here"] = ""; @@ -19,11 +20,11 @@ $a->strings["Disconnect"] = "Katkaise yhteys"; $a->strings["Allow posting to Twitter"] = "Salli julkaisu Twitteriin"; $a->strings["If enabled all your public postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = ""; $a->strings["Note: Due to your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = ""; -$a->strings["Send public postings to Twitter by default"] = ""; -$a->strings["Mirror all posts from twitter that are no replies"] = ""; -$a->strings["Import the remote timeline"] = ""; +$a->strings["Send public postings to Twitter by default"] = "Lähetä oletuksena kaikki julkiset julkaisut Twitteriin"; +$a->strings["Mirror all posts from twitter that are no replies"] = "Peilaa kaikki julkaisut Twitteristä jotka eivät ole vastauksia"; +$a->strings["Import the remote timeline"] = "Tuo etäaikajana"; $a->strings["Automatically create contacts"] = "Luo kontaktit automaattisesti"; -$a->strings["Twitter post failed. Queued for retry."] = ""; +$a->strings["Twitter post failed. Queued for retry."] = "Twitter -julkaisu epäonnistui. Jonossa uudelleenyritykseen."; $a->strings["Settings updated."] = "Asetukset päivitetty."; -$a->strings["Consumer key"] = ""; -$a->strings["Consumer secret"] = ""; +$a->strings["Consumer key"] = "Kuluttajan avain"; +$a->strings["Consumer secret"] = "Kuluttajasalaisuus"; diff --git a/viewsrc/lang/fi-fi/messages.po b/viewsrc/lang/fi-fi/messages.po new file mode 100644 index 00000000..49adf2e4 --- /dev/null +++ b/viewsrc/lang/fi-fi/messages.po @@ -0,0 +1,23 @@ +# ADDON viewsrc +# Copyright (C) +# This file is distributed under the same license as the Friendica viewsrc addon package. +# +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-02-27 05:01-0500\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Kris, 2018\n" +"Language-Team: Finnish (Finland) (https://www.transifex.com/Friendica/teams/12172/fi_FI/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi_FI\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: viewsrc.php:39 +msgid "View Source" +msgstr "Näytä lähde" diff --git a/viewsrc/lang/fi-fi/strings.php b/viewsrc/lang/fi-fi/strings.php new file mode 100644 index 00000000..67f25b18 --- /dev/null +++ b/viewsrc/lang/fi-fi/strings.php @@ -0,0 +1,9 @@ +strings["View Source"] = "Näytä lähde"; diff --git a/windowsphonepush/lang/fi-fi/messages.po b/windowsphonepush/lang/fi-fi/messages.po index c46373ef..4906a46c 100644 --- a/windowsphonepush/lang/fi-fi/messages.po +++ b/windowsphonepush/lang/fi-fi/messages.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-10-26 15:02+0100\n" -"PO-Revision-Date: 2018-04-08 16:26+0000\n" +"PO-Revision-Date: 2018-05-12 13:13+0000\n" "Last-Translator: Kris\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/Friendica/friendica/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -34,7 +34,7 @@ msgstr "Ota WindowsPhonePush -lisäosa käyttöön" #: windowsphonepush.php:122 msgid "Push text of new item" -msgstr "" +msgstr "Uuden kohteen Push -teksti" #: windowsphonepush.php:127 msgid "Save Settings" diff --git a/windowsphonepush/lang/fi-fi/strings.php b/windowsphonepush/lang/fi-fi/strings.php index 3fb68c9b..3383a021 100644 --- a/windowsphonepush/lang/fi-fi/strings.php +++ b/windowsphonepush/lang/fi-fi/strings.php @@ -2,11 +2,12 @@ if(! function_exists("string_plural_select_fi_fi")) { function string_plural_select_fi_fi($n){ + $n = intval($n); return ($n != 1);; }} ; $a->strings["WindowsPhonePush settings updated."] = "WindowsPhonePush -asetuket päivitetty."; $a->strings["WindowsPhonePush Settings"] = "WindowsPhonePush -asetukset"; $a->strings["Enable WindowsPhonePush Addon"] = "Ota WindowsPhonePush -lisäosa käyttöön"; -$a->strings["Push text of new item"] = ""; +$a->strings["Push text of new item"] = "Uuden kohteen Push -teksti"; $a->strings["Save Settings"] = "Tallenna asetukset"; diff --git a/wppost/lang/fi-fi/messages.po b/wppost/lang/fi-fi/messages.po index 5709fb96..c289e91f 100644 --- a/wppost/lang/fi-fi/messages.po +++ b/wppost/lang/fi-fi/messages.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-01-24 21:06+0100\n" -"PO-Revision-Date: 2018-04-08 16:28+0000\n" +"PO-Revision-Date: 2018-05-12 13:12+0000\n" "Last-Translator: Kris\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/Friendica/friendica/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -22,11 +22,11 @@ msgstr "" #: wppost.php:42 msgid "Post to Wordpress" -msgstr "Lähetä Wordpressiin" +msgstr "Lähetä WordPressiin" #: wppost.php:80 wppost.php:84 msgid "Wordpress Export" -msgstr "" +msgstr "WordPress vienti" #: wppost.php:87 msgid "Enable WordPress Post Addon" @@ -50,17 +50,17 @@ msgstr "Lähetä WordPressiin oletuksena" #: wppost.php:112 msgid "Provide a backlink to the Friendica post" -msgstr "" +msgstr "Lisää backlinkki alkuperäiseen Friendica -julkaisuun" #: wppost.php:116 msgid "" "Text for the backlink, e.g. Read the original post and comment stream on " "Friendica." -msgstr "" +msgstr "Backlinkin teksti, esim. Katso alkuperäinen julkaisu ja kommentit Friendicassa." #: wppost.php:121 msgid "Don't post messages that are too short" -msgstr "" +msgstr "Älä julkaise lyhyitä viestejä" #: wppost.php:127 msgid "Save Settings" @@ -68,7 +68,7 @@ msgstr "Tallenna asetukset" #: wppost.php:206 msgid "Read the orig­i­nal post and com­ment stream on Friendica" -msgstr "" +msgstr "Katso alkuperäinen julkaisu ja kommentit Friendicassa" #: wppost.php:269 msgid "Post from Friendica" diff --git a/wppost/lang/fi-fi/strings.php b/wppost/lang/fi-fi/strings.php index 7a3a4be2..0d1353d8 100644 --- a/wppost/lang/fi-fi/strings.php +++ b/wppost/lang/fi-fi/strings.php @@ -2,19 +2,20 @@ if(! function_exists("string_plural_select_fi_fi")) { function string_plural_select_fi_fi($n){ + $n = intval($n); return ($n != 1);; }} ; -$a->strings["Post to Wordpress"] = "Lähetä Wordpressiin"; -$a->strings["Wordpress Export"] = ""; +$a->strings["Post to Wordpress"] = "Lähetä WordPressiin"; +$a->strings["Wordpress Export"] = "WordPress vienti"; $a->strings["Enable WordPress Post Addon"] = "Ota WordPress -viestilisäosa käyttöön"; $a->strings["WordPress username"] = "WordPress -käyttäjätunnus"; $a->strings["WordPress password"] = "WordPress -salasana"; $a->strings["WordPress API URL"] = "WordPress API URL-osoite"; $a->strings["Post to WordPress by default"] = "Lähetä WordPressiin oletuksena"; -$a->strings["Provide a backlink to the Friendica post"] = ""; -$a->strings["Text for the backlink, e.g. Read the original post and comment stream on Friendica."] = ""; -$a->strings["Don't post messages that are too short"] = ""; +$a->strings["Provide a backlink to the Friendica post"] = "Lisää backlinkki alkuperäiseen Friendica -julkaisuun"; +$a->strings["Text for the backlink, e.g. Read the original post and comment stream on Friendica."] = "Backlinkin teksti, esim. Katso alkuperäinen julkaisu ja kommentit Friendicassa."; +$a->strings["Don't post messages that are too short"] = "Älä julkaise lyhyitä viestejä"; $a->strings["Save Settings"] = "Tallenna asetukset"; -$a->strings["Read the orig­i­nal post and com­ment stream on Friendica"] = ""; +$a->strings["Read the orig­i­nal post and com­ment stream on Friendica"] = "Katso alkuperäinen julkaisu ja kommentit Friendicassa"; $a->strings["Post from Friendica"] = "Lähetä Friendicasta"; -- 2.43.0 From be02acb8d343dce189a41318fce22c4bf70df2b3 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sun, 20 May 2018 19:20:27 +0200 Subject: [PATCH 09/43] ES translation of the langfilter addon THX Albert --- langfilter/lang/es/messages.po | 54 ++++++++++++++++++++-------------- langfilter/lang/es/strings.php | 9 ++++-- 2 files changed, 38 insertions(+), 25 deletions(-) diff --git a/langfilter/lang/es/messages.po b/langfilter/lang/es/messages.po index 911fb90b..e690e762 100644 --- a/langfilter/lang/es/messages.po +++ b/langfilter/lang/es/messages.po @@ -4,13 +4,13 @@ # # # Translators: -# Albert, 2016 +# Albert, 2016,2018 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-22 15:18+0200\n" -"PO-Revision-Date: 2016-11-19 11:47+0000\n" +"POT-Creation-Date: 2018-04-01 11:11-0400\n" +"PO-Revision-Date: 2018-05-19 20:47+0000\n" "Last-Translator: Albert\n" "Language-Team: Spanish (http://www.transifex.com/Friendica/friendica/language/es/)\n" "MIME-Version: 1.0\n" @@ -19,52 +19,62 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: langfilter.php:44 +#: langfilter.php:58 msgid "Language Filter" msgstr "Filtro de Idioma" -#: langfilter.php:45 +#: langfilter.php:59 msgid "" -"This addon tries to identify the language of a postings. If it does not " -"match any language spoken by you (see below) the posting will be collapsed. " -"Remember detecting the language is not perfect, especially with short " -"postings." -msgstr "Este addon intenta identificar el idioma de las publicaciones. Si no encuentra ningún idioma hablado por usted (ver abajo) la entrada se colapsará. Recordar detectar el idioma no es perfecto, especialmente con entradas cortas." +"This addon tries to identify the language posts are writen in. If it does " +"not match any language specifed below, posts will be hidden by collapsing " +"them." +msgstr "Este complemento intenta identificar en qué idioma se han escrito las publicaciones. Si no coincide con el idioma especificado a continuación, las publicaciones se ocultarán al contraerlas." -#: langfilter.php:46 +#: langfilter.php:60 msgid "Use the language filter" msgstr "Usar el filtro de idioma" -#: langfilter.php:47 -msgid "I speak" -msgstr "Yo hablo" +#: langfilter.php:61 +msgid "Able to read" +msgstr "Capaz de leer" -#: langfilter.php:47 +#: langfilter.php:61 msgid "" "List of abbreviations (iso2 codes) for languages you speak, comma separated." " For example \"de,it\"." msgstr "Lista de abreviaciones (códigos iso2) para los idiomas que habla, separadas por comas. Por ejemplo \"de,it\"." -#: langfilter.php:48 +#: langfilter.php:62 msgid "Minimum confidence in language detection" msgstr "Mínima confianza en la detección de idioma" -#: langfilter.php:48 +#: langfilter.php:62 msgid "" "Minimum confidence in language detection being correct, from 0 to 100. Posts" " will not be filtered when the confidence of language detection is below " "this percent value." msgstr "Mínima confianza en que la detección de idioma sea correcta, de 0 a 100. Las entradas no se filtrarán cuando la confianza de la detección del idioma es inferior a su valor de porcentaje." -#: langfilter.php:49 +#: langfilter.php:63 +msgid "Minimum length of message body" +msgstr "Longitud mínima del cuerpo del mensaje" + +#: langfilter.php:63 +msgid "" +"Minimum number of characters in message body for filter to be used. Posts " +"shorter than this will not be filtered. Note: Language detection is " +"unreliable for short content (<200 characters)." +msgstr "Número mínimo de caracteres en el cuerpo del mensaje para que se use el filtro. Las publicaciones más cortas que esto no serán filtradas. Nota: La detección de idioma no es fiable para contenido corto (<200 caracteres)." + +#: langfilter.php:64 msgid "Save Settings" msgstr "Guardar Ajustes" -#: langfilter.php:73 +#: langfilter.php:105 msgid "Language Filter Settings saved." msgstr "Ajustes de Filtro de Idioma guardados." -#: langfilter.php:123 +#: langfilter.php:182 #, php-format -msgid "unspoken language %s - Click to open/close" -msgstr "Idioma sobreentendido %s - Click para abrir/cerrar" +msgid "Filtered language: %s" +msgstr "Idioma filtrado: %s" diff --git a/langfilter/lang/es/strings.php b/langfilter/lang/es/strings.php index 15a6d574..ca137deb 100644 --- a/langfilter/lang/es/strings.php +++ b/langfilter/lang/es/strings.php @@ -2,16 +2,19 @@ if(! function_exists("string_plural_select_es")) { function string_plural_select_es($n){ + $n = intval($n); return ($n != 1);; }} ; $a->strings["Language Filter"] = "Filtro de Idioma"; -$a->strings["This addon tries to identify the language of a postings. If it does not match any language spoken by you (see below) the posting will be collapsed. Remember detecting the language is not perfect, especially with short postings."] = "Este addon intenta identificar el idioma de las publicaciones. Si no encuentra ningún idioma hablado por usted (ver abajo) la entrada se colapsará. Recordar detectar el idioma no es perfecto, especialmente con entradas cortas."; +$a->strings["This addon tries to identify the language posts are writen in. If it does not match any language specifed below, posts will be hidden by collapsing them."] = "Este complemento intenta identificar en qué idioma se han escrito las publicaciones. Si no coincide con el idioma especificado a continuación, las publicaciones se ocultarán al contraerlas."; $a->strings["Use the language filter"] = "Usar el filtro de idioma"; -$a->strings["I speak"] = "Yo hablo"; +$a->strings["Able to read"] = "Capaz de leer"; $a->strings["List of abbreviations (iso2 codes) for languages you speak, comma separated. For example \"de,it\"."] = "Lista de abreviaciones (códigos iso2) para los idiomas que habla, separadas por comas. Por ejemplo \"de,it\"."; $a->strings["Minimum confidence in language detection"] = "Mínima confianza en la detección de idioma"; $a->strings["Minimum confidence in language detection being correct, from 0 to 100. Posts will not be filtered when the confidence of language detection is below this percent value."] = "Mínima confianza en que la detección de idioma sea correcta, de 0 a 100. Las entradas no se filtrarán cuando la confianza de la detección del idioma es inferior a su valor de porcentaje."; +$a->strings["Minimum length of message body"] = "Longitud mínima del cuerpo del mensaje"; +$a->strings["Minimum number of characters in message body for filter to be used. Posts shorter than this will not be filtered. Note: Language detection is unreliable for short content (<200 characters)."] = "Número mínimo de caracteres en el cuerpo del mensaje para que se use el filtro. Las publicaciones más cortas que esto no serán filtradas. Nota: La detección de idioma no es fiable para contenido corto (<200 caracteres)."; $a->strings["Save Settings"] = "Guardar Ajustes"; $a->strings["Language Filter Settings saved."] = "Ajustes de Filtro de Idioma guardados."; -$a->strings["unspoken language %s - Click to open/close"] = "Idioma sobreentendido %s - Click para abrir/cerrar"; +$a->strings["Filtered language: %s"] = "Idioma filtrado: %s"; -- 2.43.0 From b87c6ad9703a3971dd66af63425d6a69b14eb621 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sun, 20 May 2018 19:24:57 +0200 Subject: [PATCH 10/43] FR translations THX vindarel --- langfilter/lang/fr/messages.po | 72 ++++++++++++++++++++++------------ langfilter/lang/fr/strings.php | 1 + pageheader/lang/fr/messages.po | 43 ++++++++++++++++++++ pageheader/lang/fr/strings.php | 18 ++++++--- 4 files changed, 104 insertions(+), 30 deletions(-) create mode 100644 pageheader/lang/fr/messages.po diff --git a/langfilter/lang/fr/messages.po b/langfilter/lang/fr/messages.po index 7cecf4e6..50d411ec 100644 --- a/langfilter/lang/fr/messages.po +++ b/langfilter/lang/fr/messages.po @@ -4,56 +4,78 @@ # # # Translators: -# Nicola Spanti , 2015 +# RyDroid , 2015 +# Vincent Vindarel , 2018 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-07-24 19:11+0200\n" -"PO-Revision-Date: 2015-07-27 18:20+0000\n" -"Last-Translator: Nicola Spanti \n" -"Language-Team: French (http://www.transifex.com/projects/p/friendica/language/fr/)\n" +"POT-Creation-Date: 2018-04-01 11:11-0400\n" +"PO-Revision-Date: 2018-05-14 09:47+0000\n" +"Last-Translator: Vincent Vindarel \n" +"Language-Team: French (http://www.transifex.com/Friendica/friendica/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: langfilter.php:43 +#: langfilter.php:58 msgid "Language Filter" msgstr "Filtre de langues" -#: langfilter.php:44 +#: langfilter.php:59 msgid "" -"This addon tries to identify the language of a postings. If it does not " -"match any language spoken by you (see below) the posting will be collapsed. " -"Remember detecting the language is not perfect, especially with short " -"postings." -msgstr "" +"This addon tries to identify the language posts are writen in. If it does " +"not match any language specifed below, posts will be hidden by collapsing " +"them." +msgstr "Cette extension essaie de reconnaître la langue dans laquelle les publications sont écrites. Si elle ne correspond à aucune de la liste donnée plus bas, les publications seront réduites." -#: langfilter.php:45 +#: langfilter.php:60 msgid "Use the language filter" msgstr "Utiliser le filtre de langues" -#: langfilter.php:46 -msgid "I speak" -msgstr "Je parle" +#: langfilter.php:61 +msgid "Able to read" +msgstr "Peut lire" -#: langfilter.php:46 +#: langfilter.php:61 msgid "" -"List of abbreviations for languages you speak, comma seperated. For excample" -" \"de,it\"." -msgstr "Liste d’abréviation des langues que vous maîtrisez, séparés par des virgules. Par exemple \"en,fr\"." +"List of abbreviations (iso2 codes) for languages you speak, comma separated." +" For example \"de,it\"." +msgstr "Liste d'abréviations (codes iso2) pour les langues que vous parlez, séparées par des virgules. Par exemple, \"fr,it\"." -#: langfilter.php:47 +#: langfilter.php:62 +msgid "Minimum confidence in language detection" +msgstr "Confiance minimale dans la détection de langues" + +#: langfilter.php:62 +msgid "" +"Minimum confidence in language detection being correct, from 0 to 100. Posts" +" will not be filtered when the confidence of language detection is below " +"this percent value." +msgstr "Seuil de confiance minimal pour la détection des langues, de 0 à 100. Une publication ne sera pas filtrée si elle est détectée avec une confiance moindre." + +#: langfilter.php:63 +msgid "Minimum length of message body" +msgstr "Longueur minimale du corps de message." + +#: langfilter.php:63 +msgid "" +"Minimum number of characters in message body for filter to be used. Posts " +"shorter than this will not be filtered. Note: Language detection is " +"unreliable for short content (<200 characters)." +msgstr "Nombre minimal de signes dans le corps de message pour déclencher le filtre. Une publication plus courte ne sera pas filtrée. Remarque: la détection de langue n'est pas fiable pour du contenu court (<200 signes)." + +#: langfilter.php:64 msgid "Save Settings" msgstr "Sauvegarder les paramètres" -#: langfilter.php:66 +#: langfilter.php:105 msgid "Language Filter Settings saved." msgstr "Paramètres du filtre de langues sauvegardés." -#: langfilter.php:105 +#: langfilter.php:182 #, php-format -msgid "unspoken language %s - Click to open/close" -msgstr "Langue %s non parlé - Cliquez pour ouvrir/fermer" +msgid "Filtered language: %s" +msgstr "Langues filtrées: %s" diff --git a/langfilter/lang/fr/strings.php b/langfilter/lang/fr/strings.php index e9b2c70b..c8dc633e 100644 --- a/langfilter/lang/fr/strings.php +++ b/langfilter/lang/fr/strings.php @@ -2,6 +2,7 @@ if(! function_exists("string_plural_select_fr")) { function string_plural_select_fr($n){ + $n = intval($n); return ($n > 1);; }} ; diff --git a/pageheader/lang/fr/messages.po b/pageheader/lang/fr/messages.po new file mode 100644 index 00000000..dc89362f --- /dev/null +++ b/pageheader/lang/fr/messages.po @@ -0,0 +1,43 @@ +# ADDON pageheader +# Copyright (C) +# This file is distributed under the same license as the Friendica pageheader addon package. +# +# +# Translators: +# StefOfficiel , 2015 +# Vincent Vindarel , 2018 +msgid "" +msgstr "" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-03-11 18:52+0100\n" +"PO-Revision-Date: 2018-05-14 09:54+0000\n" +"Last-Translator: Vincent Vindarel \n" +"Language-Team: French (http://www.transifex.com/Friendica/friendica/language/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: pageheader.php:53 +msgid "\"pageheader\" Settings" +msgstr "Paramètres de la page d'en-tête" + +#: pageheader.php:54 +msgid "Message" +msgstr "Message" + +#: pageheader.php:54 +msgid "" +"Message to display on every page on this server (or put a pageheader.html " +"file in your docroot)" +msgstr "Message à publier sur toutes les pages de ce serveur (ou bien mettez un fichier pageheader.html dans votre docroot)" + +#: pageheader.php:55 +msgid "Save Settings" +msgstr "Sauvegarder les paramètres" + +#: pageheader.php:69 +msgid "pageheader Settings saved." +msgstr "Paramètres sauvegardés" diff --git a/pageheader/lang/fr/strings.php b/pageheader/lang/fr/strings.php index 78702a55..01d90072 100644 --- a/pageheader/lang/fr/strings.php +++ b/pageheader/lang/fr/strings.php @@ -1,5 +1,13 @@ -strings["\"pageheader\" Settings"] = "Réglages de pageheader"; -$a->strings["Submit"] = "Envoyer"; -$a->strings["pageheader Settings saved."] = "Réglages pageheader sauvés."; + 1);; +}} +; +$a->strings["\"pageheader\" Settings"] = "Paramètres de la page d'en-tête"; +$a->strings["Message"] = "Message"; +$a->strings["Message to display on every page on this server (or put a pageheader.html file in your docroot)"] = "Message à publier sur toutes les pages de ce serveur (ou bien mettez un fichier pageheader.html dans votre docroot)"; +$a->strings["Save Settings"] = "Sauvegarder les paramètres"; +$a->strings["pageheader Settings saved."] = "Paramètres sauvegardés"; -- 2.43.0 From fed141ba05ad01d44e4109046b0e0a944f31704d Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sun, 20 May 2018 19:38:15 +0200 Subject: [PATCH 11/43] update to the FI translations THX kris --- pumpio/lang/fi-fi/messages.po | 10 +++++----- pumpio/lang/fi-fi/strings.php | 9 +++++---- statusnet/lang/fi-fi/messages.po | 22 +++++++++++----------- statusnet/lang/fi-fi/strings.php | 21 +++++++++++---------- testdrive/lang/fi-fi/messages.po | 4 ++-- testdrive/lang/fi-fi/strings.php | 3 ++- webrtc/lang/fi-fi/messages.po | 8 ++++---- webrtc/lang/fi-fi/strings.php | 7 ++++--- 8 files changed, 44 insertions(+), 40 deletions(-) diff --git a/pumpio/lang/fi-fi/messages.po b/pumpio/lang/fi-fi/messages.po index 77d8b90a..5d5d7758 100644 --- a/pumpio/lang/fi-fi/messages.po +++ b/pumpio/lang/fi-fi/messages.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-06-23 14:45+0200\n" -"PO-Revision-Date: 2018-04-16 16:07+0000\n" +"PO-Revision-Date: 2018-05-12 13:32+0000\n" "Last-Translator: Kris\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/Friendica/friendica/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -59,7 +59,7 @@ msgstr "" #: pumpio.php:250 msgid "Import the remote timeline" -msgstr "" +msgstr "Tuo etäaikajana" #: pumpio.php:255 msgid "Enable pump.io Post Addon" @@ -75,7 +75,7 @@ msgstr "" #: pumpio.php:270 msgid "Mirror all public posts" -msgstr "" +msgstr "Peilaa kaikki julkiset julkaisut" #: pumpio.php:275 msgid "Check to delete this preset" @@ -87,11 +87,11 @@ msgstr "Tallenna asetukset" #: pumpio.php:515 msgid "Pump.io post failed. Queued for retry." -msgstr "" +msgstr "Pump.io -julkaisu epäonnistui. Jonossa uudelleenyritykseen." #: pumpio.php:587 msgid "Pump.io like failed. Queued for retry." -msgstr "" +msgstr "Pump.io -tykkäys epäonnistui. Jonossa uudelleenyritykseen." #: pumpio.php:875 msgid "status" diff --git a/pumpio/lang/fi-fi/strings.php b/pumpio/lang/fi-fi/strings.php index 2976f626..cd409e19 100644 --- a/pumpio/lang/fi-fi/strings.php +++ b/pumpio/lang/fi-fi/strings.php @@ -2,6 +2,7 @@ if(! function_exists("string_plural_select_fi_fi")) { function string_plural_select_fi_fi($n){ + $n = intval($n); return ($n != 1);; }} ; @@ -14,14 +15,14 @@ $a->strings["Pump.io Import/Export/Mirror"] = ""; $a->strings["pump.io username (without the servername)"] = "pump.io käyttäjätunnus (ilman palvelinnimeä)"; $a->strings["pump.io servername (without \"http://\" or \"https://\" )"] = "pump.io palvelinnimi (ilman \"http://\" tai \"https://\" )"; $a->strings["Authenticate your pump.io connection"] = ""; -$a->strings["Import the remote timeline"] = ""; +$a->strings["Import the remote timeline"] = "Tuo etäaikajana"; $a->strings["Enable pump.io Post Addon"] = "Ota pump.io -viestilisäosa käyttöön"; $a->strings["Post to pump.io by default"] = "Lähetä pump.iohon oletuksena"; $a->strings["Should posts be public?"] = ""; -$a->strings["Mirror all public posts"] = ""; +$a->strings["Mirror all public posts"] = "Peilaa kaikki julkiset julkaisut"; $a->strings["Check to delete this preset"] = ""; $a->strings["Save Settings"] = "Tallenna asetukset"; -$a->strings["Pump.io post failed. Queued for retry."] = ""; -$a->strings["Pump.io like failed. Queued for retry."] = ""; +$a->strings["Pump.io post failed. Queued for retry."] = "Pump.io -julkaisu epäonnistui. Jonossa uudelleenyritykseen."; +$a->strings["Pump.io like failed. Queued for retry."] = "Pump.io -tykkäys epäonnistui. Jonossa uudelleenyritykseen."; $a->strings["status"] = "tila"; $a->strings["%1\$s likes %2\$s's %3\$s"] = ""; diff --git a/statusnet/lang/fi-fi/messages.po b/statusnet/lang/fi-fi/messages.po index 050b9c75..9229d17d 100644 --- a/statusnet/lang/fi-fi/messages.po +++ b/statusnet/lang/fi-fi/messages.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-07-27 07:21+0200\n" -"PO-Revision-Date: 2018-04-17 19:59+0000\n" +"PO-Revision-Date: 2018-05-12 13:29+0000\n" "Last-Translator: Kris\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/Friendica/friendica/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -28,7 +28,7 @@ msgstr "Lähetä GNU Socialiin" msgid "" "Please contact your site administrator.
The provided API URL is not " "valid." -msgstr "" +msgstr "Ota yhteyttä sivuston ylläpitäjään.
API URL-osoite on virheellinen." #: statusnet.php:225 msgid "We could not contact the GNU Social API with the Path you entered." @@ -40,7 +40,7 @@ msgstr "GNU Social -asetukset päivitetty." #: statusnet.php:294 statusnet.php:298 msgid "GNU Social Import/Export/Mirror" -msgstr "" +msgstr "GNU social tuonti/vienti/peili" #: statusnet.php:313 msgid "Globally Available GNU Social OAuthKeys" @@ -73,11 +73,11 @@ msgstr "" #: statusnet.php:325 msgid "OAuth Consumer Key" -msgstr "" +msgstr "OAuth kuluttajan avain" #: statusnet.php:328 msgid "OAuth Consumer Secret" -msgstr "" +msgstr "OAuth kuluttajasalaisuus" #: statusnet.php:331 statusnet.php:679 statusnet.php:691 msgid "Base API Path (remember the trailing /)" @@ -136,16 +136,16 @@ msgstr "Salli julkaisut GNU socialiin" #: statusnet.php:388 msgid "Send public postings to GNU Social by default" -msgstr "" +msgstr "Lähetä oletuksena kaikki julkiset julkaisut GNU socialiin" #: statusnet.php:392 msgid "" "Mirror all posts from GNU Social that are no replies or repeated messages" -msgstr "" +msgstr "Peilaa kaikki julkaisut GNU socialista jotka eivät ole vastauksia tai toistettuja viestejä" #: statusnet.php:398 msgid "Import the remote timeline" -msgstr "" +msgstr "Tuo etäaikajana" #: statusnet.php:402 msgid "Disabled" @@ -153,7 +153,7 @@ msgstr "Poistettu käytöstä" #: statusnet.php:403 msgid "Full Timeline" -msgstr "" +msgstr "Koko aikajana" #: statusnet.php:404 msgid "Only Mentions" @@ -169,8 +169,8 @@ msgstr "Sivuston nimi" #: statusnet.php:692 msgid "Consumer Secret" -msgstr "" +msgstr "Kuluttajasalaisuus" #: statusnet.php:693 msgid "Consumer Key" -msgstr "" +msgstr "Kuluttajan avain" diff --git a/statusnet/lang/fi-fi/strings.php b/statusnet/lang/fi-fi/strings.php index b7e74d0d..2dc699ea 100644 --- a/statusnet/lang/fi-fi/strings.php +++ b/statusnet/lang/fi-fi/strings.php @@ -2,21 +2,22 @@ if(! function_exists("string_plural_select_fi_fi")) { function string_plural_select_fi_fi($n){ + $n = intval($n); return ($n != 1);; }} ; $a->strings["Post to GNU Social"] = "Lähetä GNU Socialiin"; -$a->strings["Please contact your site administrator.
The provided API URL is not valid."] = ""; +$a->strings["Please contact your site administrator.
The provided API URL is not valid."] = "Ota yhteyttä sivuston ylläpitäjään.
API URL-osoite on virheellinen."; $a->strings["We could not contact the GNU Social API with the Path you entered."] = ""; $a->strings["GNU Social settings updated."] = "GNU Social -asetukset päivitetty."; -$a->strings["GNU Social Import/Export/Mirror"] = ""; +$a->strings["GNU Social Import/Export/Mirror"] = "GNU social tuonti/vienti/peili"; $a->strings["Globally Available GNU Social OAuthKeys"] = ""; $a->strings["There are preconfigured OAuth key pairs for some GNU Social servers available. If you are using one of them, please use these credentials. If not feel free to connect to any other GNU Social instance (see below)."] = ""; $a->strings["Save Settings"] = "Tallenna asetukset"; $a->strings["Provide your own OAuth Credentials"] = ""; $a->strings["No consumer key pair for GNU Social found. Register your Friendica Account as an desktop client on your GNU Social account, copy the consumer key pair here and enter the API base root.
Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendica installation at your favorited GNU Social installation."] = ""; -$a->strings["OAuth Consumer Key"] = ""; -$a->strings["OAuth Consumer Secret"] = ""; +$a->strings["OAuth Consumer Key"] = "OAuth kuluttajan avain"; +$a->strings["OAuth Consumer Secret"] = "OAuth kuluttajasalaisuus"; $a->strings["Base API Path (remember the trailing /)"] = ""; $a->strings["To connect to your GNU Social account click the button below to get a security code from GNU Social which you have to copy into the input box below and submit the form. Only your public posts will be posted to GNU Social."] = ""; $a->strings["Log in with GNU Social"] = "Kirjaudu sisään GNU socialilla"; @@ -28,13 +29,13 @@ $a->strings["Currently connected to: "] = ""; $a->strings["If enabled all your public postings can be posted to the associated GNU Social account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = ""; $a->strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to GNU Social will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = ""; $a->strings["Allow posting to GNU Social"] = "Salli julkaisut GNU socialiin"; -$a->strings["Send public postings to GNU Social by default"] = ""; -$a->strings["Mirror all posts from GNU Social that are no replies or repeated messages"] = ""; -$a->strings["Import the remote timeline"] = ""; +$a->strings["Send public postings to GNU Social by default"] = "Lähetä oletuksena kaikki julkiset julkaisut GNU socialiin"; +$a->strings["Mirror all posts from GNU Social that are no replies or repeated messages"] = "Peilaa kaikki julkaisut GNU socialista jotka eivät ole vastauksia tai toistettuja viestejä"; +$a->strings["Import the remote timeline"] = "Tuo etäaikajana"; $a->strings["Disabled"] = "Poistettu käytöstä"; -$a->strings["Full Timeline"] = ""; +$a->strings["Full Timeline"] = "Koko aikajana"; $a->strings["Only Mentions"] = ""; $a->strings["Clear OAuth configuration"] = ""; $a->strings["Site name"] = "Sivuston nimi"; -$a->strings["Consumer Secret"] = ""; -$a->strings["Consumer Key"] = ""; +$a->strings["Consumer Secret"] = "Kuluttajasalaisuus"; +$a->strings["Consumer Key"] = "Kuluttajan avain"; diff --git a/testdrive/lang/fi-fi/messages.po b/testdrive/lang/fi-fi/messages.po index 94e57cf8..aa1c93c9 100644 --- a/testdrive/lang/fi-fi/messages.po +++ b/testdrive/lang/fi-fi/messages.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-08-23 17:30+0200\n" -"PO-Revision-Date: 2018-04-17 20:00+0000\n" +"PO-Revision-Date: 2018-05-12 13:24+0000\n" "Last-Translator: Kris\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/Friendica/friendica/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -31,7 +31,7 @@ msgstr "%s -tilisi vanhenee muutaman päivän kuluttua." #: testdrive.php:95 msgid "Your Friendica test account is about to expire." -msgstr "" +msgstr "Koetilisi Friendicassa umpeutuu kohta." #: testdrive.php:96 #, php-format diff --git a/testdrive/lang/fi-fi/strings.php b/testdrive/lang/fi-fi/strings.php index e7500b19..f2942692 100644 --- a/testdrive/lang/fi-fi/strings.php +++ b/testdrive/lang/fi-fi/strings.php @@ -2,10 +2,11 @@ if(! function_exists("string_plural_select_fi_fi")) { function string_plural_select_fi_fi($n){ + $n = intval($n); return ($n != 1);; }} ; $a->strings["Administrator"] = "Ylläpitäjä"; $a->strings["Your account on %s will expire in a few days."] = "%s -tilisi vanhenee muutaman päivän kuluttua."; -$a->strings["Your Friendica test account is about to expire."] = ""; +$a->strings["Your Friendica test account is about to expire."] = "Koetilisi Friendicassa umpeutuu kohta."; $a->strings["Hi %1\$s,\n\nYour test account on %2\$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at %s/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."] = ""; diff --git a/webrtc/lang/fi-fi/messages.po b/webrtc/lang/fi-fi/messages.po index 41dcbb09..49d15a03 100644 --- a/webrtc/lang/fi-fi/messages.po +++ b/webrtc/lang/fi-fi/messages.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-06-23 14:45+0200\n" -"PO-Revision-Date: 2018-04-08 16:26+0000\n" +"PO-Revision-Date: 2018-05-12 13:15+0000\n" "Last-Translator: Kris\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/Friendica/friendica/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -30,13 +30,13 @@ msgstr "Tallenna asetukset" #: webrtc.php:27 msgid "WebRTC Base URL" -msgstr "" +msgstr "WebRTC perus-URL-osoite" #: webrtc.php:27 msgid "" "Page your users will create a WebRTC chat room on. For example you could use" " https://live.mayfirst.org ." -msgstr "" +msgstr "Sivusto jolla käyttäjäsi luo WebRTC -chattihuoneen. Esim. https://live.mayfirst.org" #: webrtc.php:33 msgid "Settings updated." @@ -57,4 +57,4 @@ msgstr "" msgid "" "Please contact your friendica admin and send a reminder to configure the " "WebRTC addon." -msgstr "" +msgstr "Ota yhteyttä Friendica -ylläpitäjääsi ja pyydä heitä asentamaan WebRTC -lisäosan." diff --git a/webrtc/lang/fi-fi/strings.php b/webrtc/lang/fi-fi/strings.php index c0045fab..edf6f18a 100644 --- a/webrtc/lang/fi-fi/strings.php +++ b/webrtc/lang/fi-fi/strings.php @@ -2,14 +2,15 @@ if(! function_exists("string_plural_select_fi_fi")) { function string_plural_select_fi_fi($n){ + $n = intval($n); return ($n != 1);; }} ; $a->strings["WebRTC Videochat"] = "WebRTC videokeskustelu"; $a->strings["Save Settings"] = "Tallenna asetukset"; -$a->strings["WebRTC Base URL"] = ""; -$a->strings["Page your users will create a WebRTC chat room on. For example you could use https://live.mayfirst.org ."] = ""; +$a->strings["WebRTC Base URL"] = "WebRTC perus-URL-osoite"; +$a->strings["Page your users will create a WebRTC chat room on. For example you could use https://live.mayfirst.org ."] = "Sivusto jolla käyttäjäsi luo WebRTC -chattihuoneen. Esim. https://live.mayfirst.org"; $a->strings["Settings updated."] = "Asetukset päivitetty."; $a->strings["Video Chat"] = "Videokeskustelu"; $a->strings["WebRTC is a video and audio conferencing tool that works with Firefox (version 21 and above) and Chrome/Chromium (version 25 and above). Just create a new chat room and send the link to someone you want to chat with."] = ""; -$a->strings["Please contact your friendica admin and send a reminder to configure the WebRTC addon."] = ""; +$a->strings["Please contact your friendica admin and send a reminder to configure the WebRTC addon."] = "Ota yhteyttä Friendica -ylläpitäjääsi ja pyydä heitä asentamaan WebRTC -lisäosan."; -- 2.43.0 From 4afac88fc097bb987595fc617dd1e244b5e58819 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 22 May 2018 07:20:23 +0200 Subject: [PATCH 12/43] catavatar: added ES translation --- blockem/lang/es/strings.php | 6 +++-- catavatar/lang/es/messages.po | 51 +++++++++++++++++++++++++++++++++++ 2 files changed, 55 insertions(+), 2 deletions(-) create mode 100644 catavatar/lang/es/messages.po diff --git a/blockem/lang/es/strings.php b/blockem/lang/es/strings.php index 3e4ab383..77604fe5 100644 --- a/blockem/lang/es/strings.php +++ b/blockem/lang/es/strings.php @@ -2,14 +2,16 @@ if(! function_exists("string_plural_select_es")) { function string_plural_select_es($n){ + $n = intval($n); return ($n != 1);; }} ; $a->strings["\"Blockem\""] = "\"Bloquealos\""; -$a->strings["Comma separated profile URLS to block"] = "URLS separados por coma para bloquear."; +$a->strings["Hides user's content by collapsing posts. Also replaces their avatar with generic image."] = "Oculta el contenido del usuario al colapsar las publicaciones. También reemplaza su avatar con una imagen genérica."; +$a->strings["Comma separated profile URLS:"] = "URLs de perfil separadas por comas:"; $a->strings["Save Settings"] = "Guardar configuración"; $a->strings["BLOCKEM Settings saved."] = "Configuración de BLOQUEALOS guardado."; -$a->strings["Blocked %s - Click to open/close"] = "%s bloqueado - click para abrir/cerrar"; +$a->strings["Filtered user: %s"] = "Usuario filtrado: %s"; $a->strings["Unblock Author"] = "Desbloquear autor"; $a->strings["Block Author"] = "Bloquear autor"; $a->strings["blockem settings updated"] = "configuración de BLOQUEALOS actualizado"; diff --git a/catavatar/lang/es/messages.po b/catavatar/lang/es/messages.po new file mode 100644 index 00000000..ede5e8e5 --- /dev/null +++ b/catavatar/lang/es/messages.po @@ -0,0 +1,51 @@ +# ADDON catavatar +# Copyright (C) +# This file is distributed under the same license as the Friendica catavatar addon package. +# +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-13 09:35+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Albert, 2018\n" +"Language-Team: Spanish (https://www.transifex.com/Friendica/teams/12172/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: catavatar.php:60 +msgid "Use Cat as Avatar" +msgstr "Usar Gato como Avatar" + +#: catavatar.php:61 +msgid "More Random Cat!" +msgstr "¡Más gato al azar!" + +#: catavatar.php:62 +msgid "Reset to email Cat" +msgstr "Restablecer a correo electrónico Gato" + +#: catavatar.php:64 +msgid "Cat Avatar Settings" +msgstr "Ajustes de Avatar Gato" + +#: catavatar.php:100 +msgid "The cat hadn't found itself." +msgstr "El gato no se había encontrado." + +#: catavatar.php:109 +msgid "There was an error, the cat ran away." +msgstr "Hubo un error, el gato se escapó." + +#: catavatar.php:115 +msgid "Profile Photos" +msgstr "Fotos de perfil" + +#: catavatar.php:130 +msgid "Meow!" +msgstr "¡Miau!" -- 2.43.0 From 393bbe37da0ef650bea44a79e56c6c519d9bd173 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 22 May 2018 07:21:56 +0200 Subject: [PATCH 13/43] ES translation updates blockem, blogger, buffer and dav addon --- blockem/lang/es/messages.po | 31 +++++++++++++++++++------------ blogger/lang/es/messages.po | 7 ++++--- blogger/lang/es/strings.php | 3 ++- buffer/lang/es/messages.po | 7 ++++--- buffer/lang/es/strings.php | 3 ++- dav/lang/es/messages.po | 6 +++--- dav/lang/es/strings.php | 3 ++- 7 files changed, 36 insertions(+), 24 deletions(-) diff --git a/blockem/lang/es/messages.po b/blockem/lang/es/messages.po index c2e1091f..be4df787 100644 --- a/blockem/lang/es/messages.po +++ b/blockem/lang/es/messages.po @@ -4,14 +4,15 @@ # # # Translators: +# Albert, 2018 # Tupambae.org, 2016 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-22 13:18+0200\n" -"PO-Revision-Date: 2016-04-18 19:27+0000\n" -"Last-Translator: Tupambae.org\n" +"POT-Creation-Date: 2018-04-01 11:11-0400\n" +"PO-Revision-Date: 2018-05-21 14:27+0000\n" +"Last-Translator: Albert\n" "Language-Team: Spanish (http://www.transifex.com/Friendica/friendica/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,13 +20,19 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: blockem.php:53 blockem.php:57 +#: blockem.php:52 blockem.php:56 msgid "\"Blockem\"" msgstr "\"Bloquealos\"" +#: blockem.php:60 +msgid "" +"Hides user's content by collapsing posts. Also replaces their avatar with " +"generic image." +msgstr "Oculta el contenido del usuario al colapsar las publicaciones. También reemplaza su avatar con una imagen genérica." + #: blockem.php:61 -msgid "Comma separated profile URLS to block" -msgstr "URLS separados por coma para bloquear." +msgid "Comma separated profile URLS:" +msgstr "URLs de perfil separadas por comas:" #: blockem.php:65 msgid "Save Settings" @@ -35,19 +42,19 @@ msgstr "Guardar configuración" msgid "BLOCKEM Settings saved." msgstr "Configuración de BLOQUEALOS guardado." -#: blockem.php:142 +#: blockem.php:136 #, php-format -msgid "Blocked %s - Click to open/close" -msgstr "%s bloqueado - click para abrir/cerrar" +msgid "Filtered user: %s" +msgstr "Usuario filtrado: %s" -#: blockem.php:197 +#: blockem.php:189 msgid "Unblock Author" msgstr "Desbloquear autor" -#: blockem.php:199 +#: blockem.php:191 msgid "Block Author" msgstr "Bloquear autor" -#: blockem.php:231 +#: blockem.php:223 msgid "blockem settings updated" msgstr "configuración de BLOQUEALOS actualizado" diff --git a/blogger/lang/es/messages.po b/blogger/lang/es/messages.po index 66b6804f..e4c64973 100644 --- a/blogger/lang/es/messages.po +++ b/blogger/lang/es/messages.po @@ -4,13 +4,14 @@ # # # Translators: +# Albert, 2018 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-06-22 13:18+0200\n" -"PO-Revision-Date: 2016-10-10 20:33+0000\n" -"Last-Translator: Athalbert\n" +"PO-Revision-Date: 2018-05-21 14:27+0000\n" +"Last-Translator: Albert\n" "Language-Team: Spanish (http://www.transifex.com/Friendica/friendica/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,7 +29,7 @@ msgstr "Esportar Blogger" #: blogger.php:82 msgid "Enable Blogger Post Addon" -msgstr "Activar addon de entrada de Blogger" +msgstr "Habilitar el complemento de publicación de Blogger" #: blogger.php:87 msgid "Blogger username" diff --git a/blogger/lang/es/strings.php b/blogger/lang/es/strings.php index 47e44a49..52b4f120 100644 --- a/blogger/lang/es/strings.php +++ b/blogger/lang/es/strings.php @@ -2,12 +2,13 @@ if(! function_exists("string_plural_select_es")) { function string_plural_select_es($n){ + $n = intval($n); return ($n != 1);; }} ; $a->strings["Post to blogger"] = "Entrada para blogger"; $a->strings["Blogger Export"] = "Esportar Blogger"; -$a->strings["Enable Blogger Post Addon"] = "Activar addon de entrada de Blogger"; +$a->strings["Enable Blogger Post Addon"] = "Habilitar el complemento de publicación de Blogger"; $a->strings["Blogger username"] = "Nombre de usuario de Blogger"; $a->strings["Blogger password"] = "Contraseña de Blogger"; $a->strings["Blogger API URL"] = "URL API de Blogger"; diff --git a/buffer/lang/es/messages.po b/buffer/lang/es/messages.po index 7a40dd46..eb38cc3c 100644 --- a/buffer/lang/es/messages.po +++ b/buffer/lang/es/messages.po @@ -4,13 +4,14 @@ # # # Translators: +# Albert, 2018 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-06-22 13:18+0200\n" -"PO-Revision-Date: 2016-10-10 20:39+0000\n" -"Last-Translator: Athalbert\n" +"PO-Revision-Date: 2018-05-21 14:28+0000\n" +"Last-Translator: Albert\n" "Language-Team: Spanish (http://www.transifex.com/Friendica/friendica/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -60,7 +61,7 @@ msgstr "Autenticar su conexión de Buffer" #: buffer.php:146 msgid "Enable Buffer Post Addon" -msgstr "Active el addon de publicación de Buffer" +msgstr "Habilitar el complemento de publicación de Buffer" #: buffer.php:151 msgid "Post to Buffer by default" diff --git a/buffer/lang/es/strings.php b/buffer/lang/es/strings.php index 0ee13d76..0137d30a 100644 --- a/buffer/lang/es/strings.php +++ b/buffer/lang/es/strings.php @@ -2,6 +2,7 @@ if(! function_exists("string_plural_select_es")) { function string_plural_select_es($n){ + $n = intval($n); return ($n != 1);; }} ; @@ -15,7 +16,7 @@ $a->strings["return to the connector page"] = "Vuelva a la página de conexión" $a->strings["Post to Buffer"] = "Publique en Buffer"; $a->strings["Buffer Export"] = "Exportar Buffer"; $a->strings["Authenticate your Buffer connection"] = "Autenticar su conexión de Buffer"; -$a->strings["Enable Buffer Post Addon"] = "Active el addon de publicación de Buffer"; +$a->strings["Enable Buffer Post Addon"] = "Habilitar el complemento de publicación de Buffer"; $a->strings["Post to Buffer by default"] = "Publicar en Buffer por defecto"; $a->strings["Check to delete this preset"] = "Verificar para eliminar este preajuste"; $a->strings["Posts are going to all accounts that are enabled by default:"] = "Las publicaciones van a todas las cuentas que estén habilitadas por defecto"; diff --git a/dav/lang/es/messages.po b/dav/lang/es/messages.po index 7bc95e0b..d9a3f420 100644 --- a/dav/lang/es/messages.po +++ b/dav/lang/es/messages.po @@ -4,14 +4,14 @@ # # # Translators: -# Albert, 2016 +# Albert, 2016,2018 # Albert, 2016 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-27 05:01-0500\n" -"PO-Revision-Date: 2016-11-16 20:48+0000\n" +"PO-Revision-Date: 2018-05-21 14:29+0000\n" "Last-Translator: Albert\n" "Language-Team: Spanish (http://www.transifex.com/Friendica/friendica/language/es/)\n" "MIME-Version: 1.0\n" @@ -189,7 +189,7 @@ msgid "" "The current version of this addon has not been set up correctly. Please " "contact the system administrator of your installation of friendica to fix " "this." -msgstr "La versión actual de este addon no se ha instalado correctamente. Por favor contacte con el administrador del sistema de su instalación de Friendica para resolver esto." +msgstr "La versión actual de este complemento no se ha configurado correctamente. Por favor, póngase en contacto con el administrador del sistema de su instalación de Friendica para solucionar este problema.." #: friendica/main.php:239 common/wdcal_edit.inc.php:146 msgid "Calendar" diff --git a/dav/lang/es/strings.php b/dav/lang/es/strings.php index 76a3ad2e..86fa7e80 100644 --- a/dav/lang/es/strings.php +++ b/dav/lang/es/strings.php @@ -2,6 +2,7 @@ if(! function_exists("string_plural_select_es")) { function string_plural_select_es($n){ + $n = intval($n); return ($n != 1);; }} ; @@ -45,7 +46,7 @@ $a->strings["Warning"] = "Advertencia"; $a->strings["Synchronization (iPhone, Thunderbird Lightning, Android, ...)"] = "Sincronización (iPhone, Thunderbird Lightning, Android, ...)"; $a->strings["Synchronizing this calendar with the iPhone"] = "Sincronizar este calendario con el iPhone"; $a->strings["Synchronizing your Friendica-Contacts with the iPhone"] = "Sincronizar sus contactos de Friendica con el iPhone"; -$a->strings["The current version of this addon has not been set up correctly. Please contact the system administrator of your installation of friendica to fix this."] = "La versión actual de este addon no se ha instalado correctamente. Por favor contacte con el administrador del sistema de su instalación de Friendica para resolver esto."; +$a->strings["The current version of this addon has not been set up correctly. Please contact the system administrator of your installation of friendica to fix this."] = "La versión actual de este complemento no se ha configurado correctamente. Por favor, póngase en contacto con el administrador del sistema de su instalación de Friendica para solucionar este problema.."; $a->strings["Calendar"] = "Calendario"; $a->strings["Extended calendar with CalDAV-support"] = "Estendido el calendario con soporte CalDAV"; $a->strings["noreply"] = "no responder"; -- 2.43.0 From 105278ec353452aa5ba58d35230bb67167f72d32 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 22 May 2018 07:25:57 +0200 Subject: [PATCH 14/43] missing strings.php file --- catavatar/lang/es/strings.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 catavatar/lang/es/strings.php diff --git a/catavatar/lang/es/strings.php b/catavatar/lang/es/strings.php new file mode 100644 index 00000000..72ba6990 --- /dev/null +++ b/catavatar/lang/es/strings.php @@ -0,0 +1,16 @@ +strings["Use Cat as Avatar"] = "Usar Gato como Avatar"; +$a->strings["More Random Cat!"] = "¡Más gato al azar!"; +$a->strings["Reset to email Cat"] = "Restablecer a correo electrónico Gato"; +$a->strings["Cat Avatar Settings"] = "Ajustes de Avatar Gato"; +$a->strings["The cat hadn't found itself."] = "El gato no se había encontrado."; +$a->strings["There was an error, the cat ran away."] = "Hubo un error, el gato se escapó."; +$a->strings["Profile Photos"] = "Fotos de perfil"; +$a->strings["Meow!"] = "¡Miau!"; -- 2.43.0 From 2851ad531520850ebc4abbba64eb2e386b1537e5 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 25 May 2018 09:04:24 +0200 Subject: [PATCH 15/43] =?UTF-8?q?IS=20translation=20update=20startpage=20T?= =?UTF-8?q?HX=20Sveinn=20=C3=AD=20Felli?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- startpage/lang/is/messages.po | 36 +++++++++++++++++++++++++++++++++++ startpage/lang/is/strings.php | 18 ++++++++++++------ 2 files changed, 48 insertions(+), 6 deletions(-) create mode 100644 startpage/lang/is/messages.po diff --git a/startpage/lang/is/messages.po b/startpage/lang/is/messages.po new file mode 100644 index 00000000..8db9a6ed --- /dev/null +++ b/startpage/lang/is/messages.po @@ -0,0 +1,36 @@ +# ADDON startpage +# Copyright (C) +# This file is distributed under the same license as the Friendica startpage addon package. +# +# +# Translators: +# Sveinn í Felli , 2018 +msgid "" +msgstr "" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-02-27 05:01-0500\n" +"PO-Revision-Date: 2018-05-24 09:48+0000\n" +"Last-Translator: Sveinn í Felli \n" +"Language-Team: Icelandic (http://www.transifex.com/Friendica/friendica/language/is/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: is\n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#: startpage.php:83 +msgid "Startpage Settings" +msgstr "Stillingar upphafssíðu" + +#: startpage.php:85 +msgid "Home page to load after login - leave blank for profile wall" +msgstr "Heimasíða sem á að hlaða inn eftir innskráningu - skilja eftir autt til að fá forsíðu notanda" + +#: startpage.php:88 +msgid "Examples: "network" or "notifications/system"" +msgstr "Dæmi: "netkerfi" eða "tilkynningar/kerfi"" + +#: startpage.php:92 +msgid "Submit" +msgstr "Senda inn" diff --git a/startpage/lang/is/strings.php b/startpage/lang/is/strings.php index 134d5726..afd3d84a 100644 --- a/startpage/lang/is/strings.php +++ b/startpage/lang/is/strings.php @@ -1,6 +1,12 @@ -strings["Startpage Settings"] = ""; -$a->strings["Home page to load after login - leave blank for profile wall"] = ""; -$a->strings["Examples: "network" or "notifications/system""] = ""; -$a->strings["Submit"] = "Senda inn"; +strings["Startpage Settings"] = "Stillingar upphafssíðu"; +$a->strings["Home page to load after login - leave blank for profile wall"] = "Heimasíða sem á að hlaða inn eftir innskráningu - skilja eftir autt til að fá forsíðu notanda"; +$a->strings["Examples: "network" or "notifications/system""] = "Dæmi: "netkerfi" eða "tilkynningar/kerfi""; +$a->strings["Submit"] = "Senda inn"; -- 2.43.0 From 5f1ae105614586eea4ee8c4cf229815709231462 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 25 May 2018 10:12:31 +0200 Subject: [PATCH 16/43] =?UTF-8?q?IS=20translation=20statusnet=20addon=20TH?= =?UTF-8?q?X=20Sveinn=20=C3=AD=20Felli?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- statusnet/lang/is/messages.po | 175 ++++++++++++++++++++++++++++++++++ statusnet/lang/is/strings.php | 73 +++++++------- 2 files changed, 216 insertions(+), 32 deletions(-) create mode 100644 statusnet/lang/is/messages.po diff --git a/statusnet/lang/is/messages.po b/statusnet/lang/is/messages.po new file mode 100644 index 00000000..512c6560 --- /dev/null +++ b/statusnet/lang/is/messages.po @@ -0,0 +1,175 @@ +# ADDON statusnet +# Copyright (C) +# This file is distributed under the same license as the Friendica statusnet addon package. +# +# +# Translators: +# Sveinn í Felli , 2018 +msgid "" +msgstr "" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-07-27 07:21+0200\n" +"PO-Revision-Date: 2018-05-24 10:00+0000\n" +"Last-Translator: Sveinn í Felli \n" +"Language-Team: Icelandic (http://www.transifex.com/Friendica/friendica/language/is/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: is\n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#: statusnet.php:151 +msgid "Post to GNU Social" +msgstr "Senda á GNU Social" + +#: statusnet.php:196 +msgid "" +"Please contact your site administrator.
The provided API URL is not " +"valid." +msgstr "Hafðu samband við kerfisstjóra.
Uppgefin API-slóð er ógild." + +#: statusnet.php:225 +msgid "We could not contact the GNU Social API with the Path you entered." +msgstr "Ekki náðist í GNU Social API með slóðinni sem þú gafst upp." + +#: statusnet.php:259 +msgid "GNU Social settings updated." +msgstr "Stillingar GNU Social uppfærðar." + +#: statusnet.php:294 statusnet.php:298 +msgid "GNU Social Import/Export/Mirror" +msgstr "" + +#: statusnet.php:313 +msgid "Globally Available GNU Social OAuthKeys" +msgstr "Víðværir OAuth-lyklar GNU Social eru til taks" + +#: statusnet.php:314 +msgid "" +"There are preconfigured OAuth key pairs for some GNU Social servers " +"available. If you are using one of them, please use these credentials. If " +"not feel free to connect to any other GNU Social instance (see below)." +msgstr "Það eru forstillt OAuth-lyklapör í sumum GNU Social þjónum. Ef þú ert að nota slíkt par, notaðu þá þau auðkenni. Ef ekki þá er þér frjálst að tengjast hvaða öðrum GNU Social þjónum (sjá fyrir neðan)." + +#: statusnet.php:320 statusnet.php:337 statusnet.php:364 statusnet.php:371 +#: statusnet.php:416 statusnet.php:699 +msgid "Save Settings" +msgstr "Vista stillingar" + +#: statusnet.php:322 +msgid "Provide your own OAuth Credentials" +msgstr "Gefðu upp eigin OAuth auðkenni" + +#: statusnet.php:323 +msgid "" +"No consumer key pair for GNU Social found. Register your Friendica Account " +"as an desktop client on your GNU Social account, copy the consumer key pair " +"here and enter the API base root.
Before you register your own OAuth " +"key pair ask the administrator if there is already a key pair for this " +"Friendica installation at your favorited GNU Social installation." +msgstr "" + +#: statusnet.php:325 +msgid "OAuth Consumer Key" +msgstr "OAuth-lykill notanda" + +#: statusnet.php:328 +msgid "OAuth Consumer Secret" +msgstr "OAuth-leyniorð notanda" + +#: statusnet.php:331 statusnet.php:679 statusnet.php:691 +msgid "Base API Path (remember the trailing /)" +msgstr "Grunn API-slóð (muna eftir / í endann)" + +#: statusnet.php:356 +msgid "" +"To connect to your GNU Social account click the button below to get a " +"security code from GNU Social which you have to copy into the input box " +"below and submit the form. Only your public posts will be " +"posted to GNU Social." +msgstr "Til að tengjast GNU Social notandaaðgangnum ýttu á hnappinn hér fyrir neðan, þá fæst öryggislykill frá GNU Social sem þarf að afrita í svæðið fyrir neðan og senda inn. Aðeins opinberar færslur munu flæða yfir á GNU Social." + +#: statusnet.php:357 +msgid "Log in with GNU Social" +msgstr "Skrá inn með GNU Social" + +#: statusnet.php:359 +msgid "Copy the security code from GNU Social here" +msgstr "Afrita öryggislykil frá GNU Social hingað" + +#: statusnet.php:365 +msgid "Cancel Connection Process" +msgstr "Hætta við tengiferli" + +#: statusnet.php:367 +msgid "Current GNU Social API is" +msgstr "Núverandi GNU Social API er" + +#: statusnet.php:368 +msgid "Cancel GNU Social Connection" +msgstr "Hætta við GNU Social tengingu" + +#: statusnet.php:379 +msgid "Currently connected to: " +msgstr "Núna tengdur við:" + +#: statusnet.php:380 +msgid "" +"If enabled all your public postings can be posted to the " +"associated GNU Social account. You can choose to do so by default (here) or " +"for every posting separately in the posting options when writing the entry." +msgstr "Ef virkt þá geta allar opinberu stöðu meldingarnar þínar verið birtar á tengdri GNU Social síðu. Þú getur valið að gera þetta sjálfvirkt (hér) eða fyrir hvern póst í senn þegar hann er skrifaður." + +#: statusnet.php:382 +msgid "" +"Note: Due your privacy settings (Hide your profile " +"details from unknown viewers?) the link potentially included in public " +"postings relayed to GNU Social will lead the visitor to a blank page " +"informing the visitor that the access to your profile has been restricted." +msgstr "" + +#: statusnet.php:385 +msgid "Allow posting to GNU Social" +msgstr "Leyfa sendingu færslna til GNU Social" + +#: statusnet.php:388 +msgid "Send public postings to GNU Social by default" +msgstr "Sjálfgefið senda opinberar færslur á GNU Social" + +#: statusnet.php:392 +msgid "" +"Mirror all posts from GNU Social that are no replies or repeated messages" +msgstr "" + +#: statusnet.php:398 +msgid "Import the remote timeline" +msgstr "Flytja inn fjartengdu tímalínuna" + +#: statusnet.php:402 +msgid "Disabled" +msgstr "Slökkt" + +#: statusnet.php:403 +msgid "Full Timeline" +msgstr "Öll tímalínan" + +#: statusnet.php:404 +msgid "Only Mentions" +msgstr "" + +#: statusnet.php:413 +msgid "Clear OAuth configuration" +msgstr "Hreinsa OAuth stillingar" + +#: statusnet.php:690 +msgid "Site name" +msgstr "Heiti vefsvæðis" + +#: statusnet.php:692 +msgid "Consumer Secret" +msgstr "Leyniorð notanda" + +#: statusnet.php:693 +msgid "Consumer Key" +msgstr "Lykill notanda" diff --git a/statusnet/lang/is/strings.php b/statusnet/lang/is/strings.php index 8a682499..367b40bb 100644 --- a/statusnet/lang/is/strings.php +++ b/statusnet/lang/is/strings.php @@ -1,32 +1,41 @@ -strings["Post to StatusNet"] = "Senda færslu á StatusNet"; -$a->strings["Please contact your site administrator.
The provided API URL is not valid."] = "Hafðu samband við kerfisstjóra.
Uppgefin API slóð er ógild."; -$a->strings["We could not contact the StatusNet API with the Path you entered."] = "Ekki náðist í StatusNet API með slóð sem þú gafst upp."; -$a->strings["StatusNet settings updated."] = "StatusNet stillingar uppfærðar."; -$a->strings["StatusNet Posting Settings"] = "StatusNet færslu stillingar"; -$a->strings["Globally Available StatusNet OAuthKeys"] = "StatusNet OAuthKey í boði á heimsvísu"; -$a->strings["There are preconfigured OAuth key pairs for some StatusNet servers available. If you are useing one of them, please use these credentials. If not feel free to connect to any other StatusNet instance (see below)."] = "Það eru forstillt OAuth lykla pör í sumum StatusNet þjónum. Ef þú ert að nota slíkt par, notaðu þá þau auðkenni. Ef ekki þá er þér frjálst að tengjast hvaða öðrum StatusNet þjón (sjá fyrir neðan)."; -$a->strings["Submit"] = "Senda inn"; -$a->strings["Provide your own OAuth Credentials"] = "Gefðu upp eigin OAuth auðkenni"; -$a->strings["No consumer key pair for StatusNet found. Register your Friendica Account as an desktop client on your StatusNet account, copy the consumer key pair here and enter the API base root.
Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendica installation at your favorited StatusNet installation."] = ""; -$a->strings["OAuth Consumer Key"] = "OAuth notenda lykill"; -$a->strings["OAuth Consumer Secret"] = "OAuth notenda leyndarmál"; -$a->strings["Base API Path (remember the trailing /)"] = "Grunn API slóð (muna eftir / í endann)"; -$a->strings["To connect to your StatusNet account click the button below to get a security code from StatusNet which you have to copy into the input box below and submit the form. Only your public posts will be posted to StatusNet."] = "Til að tengjast StatusNet notandanum ýttu á takkann fyrir neðan, þá fæst öryggis lykill frá StatusNet sem þarf að afrita í svæðið fyrir neðan og senda inn. Aðeins opinberar færslur munu flæða yfir á StatusNet."; -$a->strings["Log in with StatusNet"] = "Innskrá með StatusNet"; -$a->strings["Copy the security code from StatusNet here"] = "Afrita öryggis lykil frá StatusNet hingað"; -$a->strings["Cancel Connection Process"] = "Hætta við tengi ferli"; -$a->strings["Current StatusNet API is"] = "Núverandi StatusNet API er"; -$a->strings["Cancel StatusNet Connection"] = "Hætta við StatusNet tengingu"; -$a->strings["Currently connected to: "] = "Núna tengdur við:"; -$a->strings["If enabled all your public postings can be posted to the associated StatusNet account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Ef virkt þá geta allar opinberu stöðu meldingarnar þínar verið birtar á tengdri StatusNet síðu. Þú getur valið að gera þetta sjálfvirkt (hér) eða fyrir hvern póst í senn þegar hann er skrifaður."; -$a->strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to StatusNet will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = ""; -$a->strings["Allow posting to StatusNet"] = "Leyfa sendingu færslna til StatusNet"; -$a->strings["Send public postings to StatusNet by default"] = "Sjálfgefið senda opinberar færslur á StatusNet"; -$a->strings["Send linked #-tags and @-names to StatusNet"] = ""; -$a->strings["Clear OAuth configuration"] = "Hreinsa OAuth stillingar"; -$a->strings["Site name"] = "Nafn síðu"; -$a->strings["API URL"] = "API slóð"; -$a->strings["Consumer Secret"] = "Notenda leyndarmál"; -$a->strings["Consumer Key"] = "Notenda lykill"; +strings["Post to GNU Social"] = "Senda á GNU Social"; +$a->strings["Please contact your site administrator.
The provided API URL is not valid."] = "Hafðu samband við kerfisstjóra.
Uppgefin API-slóð er ógild."; +$a->strings["We could not contact the GNU Social API with the Path you entered."] = "Ekki náðist í GNU Social API með slóðinni sem þú gafst upp."; +$a->strings["GNU Social settings updated."] = "Stillingar GNU Social uppfærðar."; +$a->strings["GNU Social Import/Export/Mirror"] = ""; +$a->strings["Globally Available GNU Social OAuthKeys"] = "Víðværir OAuth-lyklar GNU Social eru til taks"; +$a->strings["There are preconfigured OAuth key pairs for some GNU Social servers available. If you are using one of them, please use these credentials. If not feel free to connect to any other GNU Social instance (see below)."] = "Það eru forstillt OAuth-lyklapör í sumum GNU Social þjónum. Ef þú ert að nota slíkt par, notaðu þá þau auðkenni. Ef ekki þá er þér frjálst að tengjast hvaða öðrum GNU Social þjónum (sjá fyrir neðan)."; +$a->strings["Save Settings"] = "Vista stillingar"; +$a->strings["Provide your own OAuth Credentials"] = "Gefðu upp eigin OAuth auðkenni"; +$a->strings["No consumer key pair for GNU Social found. Register your Friendica Account as an desktop client on your GNU Social account, copy the consumer key pair here and enter the API base root.
Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendica installation at your favorited GNU Social installation."] = ""; +$a->strings["OAuth Consumer Key"] = "OAuth-lykill notanda"; +$a->strings["OAuth Consumer Secret"] = "OAuth-leyniorð notanda"; +$a->strings["Base API Path (remember the trailing /)"] = "Grunn API-slóð (muna eftir / í endann)"; +$a->strings["To connect to your GNU Social account click the button below to get a security code from GNU Social which you have to copy into the input box below and submit the form. Only your public posts will be posted to GNU Social."] = "Til að tengjast GNU Social notandaaðgangnum ýttu á hnappinn hér fyrir neðan, þá fæst öryggislykill frá GNU Social sem þarf að afrita í svæðið fyrir neðan og senda inn. Aðeins opinberar færslur munu flæða yfir á GNU Social."; +$a->strings["Log in with GNU Social"] = "Skrá inn með GNU Social"; +$a->strings["Copy the security code from GNU Social here"] = "Afrita öryggislykil frá GNU Social hingað"; +$a->strings["Cancel Connection Process"] = "Hætta við tengiferli"; +$a->strings["Current GNU Social API is"] = "Núverandi GNU Social API er"; +$a->strings["Cancel GNU Social Connection"] = "Hætta við GNU Social tengingu"; +$a->strings["Currently connected to: "] = "Núna tengdur við:"; +$a->strings["If enabled all your public postings can be posted to the associated GNU Social account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Ef virkt þá geta allar opinberu stöðu meldingarnar þínar verið birtar á tengdri GNU Social síðu. Þú getur valið að gera þetta sjálfvirkt (hér) eða fyrir hvern póst í senn þegar hann er skrifaður."; +$a->strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to GNU Social will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = ""; +$a->strings["Allow posting to GNU Social"] = "Leyfa sendingu færslna til GNU Social"; +$a->strings["Send public postings to GNU Social by default"] = "Sjálfgefið senda opinberar færslur á GNU Social"; +$a->strings["Mirror all posts from GNU Social that are no replies or repeated messages"] = ""; +$a->strings["Import the remote timeline"] = "Flytja inn fjartengdu tímalínuna"; +$a->strings["Disabled"] = "Slökkt"; +$a->strings["Full Timeline"] = "Öll tímalínan"; +$a->strings["Only Mentions"] = ""; +$a->strings["Clear OAuth configuration"] = "Hreinsa OAuth stillingar"; +$a->strings["Site name"] = "Heiti vefsvæðis"; +$a->strings["Consumer Secret"] = "Leyniorð notanda"; +$a->strings["Consumer Key"] = "Lykill notanda"; -- 2.43.0 From df19b133b957cb764ad68da4fb8f58d77edd21b4 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 25 May 2018 10:14:01 +0200 Subject: [PATCH 17/43] =?UTF-8?q?IS=20translation=20viewsrc=20addon=20THX?= =?UTF-8?q?=20Sveinn=20=C3=AD=20Felli?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- viewsrc/lang/is/messages.po | 23 +++++++++++++++++++++++ viewsrc/lang/is/strings.php | 12 +++++++++--- 2 files changed, 32 insertions(+), 3 deletions(-) create mode 100644 viewsrc/lang/is/messages.po diff --git a/viewsrc/lang/is/messages.po b/viewsrc/lang/is/messages.po new file mode 100644 index 00000000..19bd2eb4 --- /dev/null +++ b/viewsrc/lang/is/messages.po @@ -0,0 +1,23 @@ +# ADDON viewsrc +# Copyright (C) +# This file is distributed under the same license as the Friendica viewsrc addon package. +# +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-02-27 05:01-0500\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Sveinn í Felli , 2018\n" +"Language-Team: Icelandic (https://www.transifex.com/Friendica/teams/12172/is/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: is\n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#: viewsrc.php:39 +msgid "View Source" +msgstr "Skoða uppruna" diff --git a/viewsrc/lang/is/strings.php b/viewsrc/lang/is/strings.php index cbd2bfd5..d67368df 100644 --- a/viewsrc/lang/is/strings.php +++ b/viewsrc/lang/is/strings.php @@ -1,3 +1,9 @@ -strings["View Source"] = ""; +strings["View Source"] = "Skoða uppruna"; -- 2.43.0 From ae2dfdd30fc078a574def92f75f6ab7f62da9446 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 25 May 2018 10:17:14 +0200 Subject: [PATCH 18/43] RU translation viewsrc addon THX Stanislav N --- viewsrc/lang/ru/messages.po | 23 +++++++++++++++++++++++ viewsrc/lang/ru/strings.php | 12 +++++++++--- 2 files changed, 32 insertions(+), 3 deletions(-) create mode 100644 viewsrc/lang/ru/messages.po diff --git a/viewsrc/lang/ru/messages.po b/viewsrc/lang/ru/messages.po new file mode 100644 index 00000000..6e5e6365 --- /dev/null +++ b/viewsrc/lang/ru/messages.po @@ -0,0 +1,23 @@ +# ADDON viewsrc +# Copyright (C) +# This file is distributed under the same license as the Friendica viewsrc addon package. +# +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-02-27 05:01-0500\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Stanislav N. , 2018\n" +"Language-Team: Russian (https://www.transifex.com/Friendica/teams/12172/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#: viewsrc.php:39 +msgid "View Source" +msgstr "Показать исходник" diff --git a/viewsrc/lang/ru/strings.php b/viewsrc/lang/ru/strings.php index 57fa23af..345462c4 100644 --- a/viewsrc/lang/ru/strings.php +++ b/viewsrc/lang/ru/strings.php @@ -1,3 +1,9 @@ -strings["View Source"] = "Просмотр HTML-кода"; +=2 && $n%10<=4 && ($n%100<12 || $n%100>14) ? 1 : $n%10==0 || ($n%10>=5 && $n%10<=9) || ($n%100>=11 && $n%100<=14)? 2 : 3);; +}} +; +$a->strings["View Source"] = "Показать исходник"; -- 2.43.0 From 3917c4f48775fa19074b2ba11d880858f253145b Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 25 May 2018 10:18:39 +0200 Subject: [PATCH 19/43] =?UTF-8?q?IS=20translation=20blogger=20addon=20THX?= =?UTF-8?q?=20Sveinn=20=C3=AD=20Felli?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- blogger/lang/is/messages.po | 4 ++-- blogger/lang/is/strings.php | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/blogger/lang/is/messages.po b/blogger/lang/is/messages.po index e29ce496..687b624f 100644 --- a/blogger/lang/is/messages.po +++ b/blogger/lang/is/messages.po @@ -4,13 +4,13 @@ # # # Translators: -# Sveinn í Felli , 2016 +# Sveinn í Felli , 2016,2018 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-06-22 13:18+0200\n" -"PO-Revision-Date: 2016-07-25 09:15+0000\n" +"PO-Revision-Date: 2018-05-24 09:45+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: Icelandic (http://www.transifex.com/Friendica/friendica/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/blogger/lang/is/strings.php b/blogger/lang/is/strings.php index deab7af8..5e61af39 100644 --- a/blogger/lang/is/strings.php +++ b/blogger/lang/is/strings.php @@ -2,6 +2,7 @@ if(! function_exists("string_plural_select_is")) { function string_plural_select_is($n){ + $n = intval($n); return ($n % 10 != 1 || $n % 100 == 11);; }} ; -- 2.43.0 From 097329fcda18383beb580c2c8bb9464f1d2ab598 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 25 May 2018 10:19:28 +0200 Subject: [PATCH 20/43] RU translation blogger addon THX Stanislav N --- blogger/lang/ru/messages.po | 6 +++--- blogger/lang/ru/strings.php | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/blogger/lang/ru/messages.po b/blogger/lang/ru/messages.po index 93d8ce3f..62ad1fb3 100644 --- a/blogger/lang/ru/messages.po +++ b/blogger/lang/ru/messages.po @@ -4,13 +4,13 @@ # # # Translators: -# Stanislav N. , 2017 +# Stanislav N. , 2017-2018 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-06-22 13:18+0200\n" -"PO-Revision-Date: 2017-04-08 17:02+0000\n" +"PO-Revision-Date: 2018-05-25 00:00+0000\n" "Last-Translator: Stanislav N. \n" "Language-Team: Russian (http://www.transifex.com/Friendica/friendica/language/ru/)\n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgstr "Экспорт в Blogger" #: blogger.php:82 msgid "Enable Blogger Post Addon" -msgstr "Включить плагин Blogger" +msgstr "Включить аддон репоста в Blogger" #: blogger.php:87 msgid "Blogger username" diff --git a/blogger/lang/ru/strings.php b/blogger/lang/ru/strings.php index 3c2e1a29..c90b73e5 100644 --- a/blogger/lang/ru/strings.php +++ b/blogger/lang/ru/strings.php @@ -2,12 +2,13 @@ if(! function_exists("string_plural_select_ru")) { function string_plural_select_ru($n){ + $n = intval($n); return ($n%10==1 && $n%100!=11 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<12 || $n%100>14) ? 1 : $n%10==0 || ($n%10>=5 && $n%10<=9) || ($n%100>=11 && $n%100<=14)? 2 : 3);; }} ; $a->strings["Post to blogger"] = "Написать в Blogger"; $a->strings["Blogger Export"] = "Экспорт в Blogger"; -$a->strings["Enable Blogger Post Addon"] = "Включить плагин Blogger"; +$a->strings["Enable Blogger Post Addon"] = "Включить аддон репоста в Blogger"; $a->strings["Blogger username"] = "Имя пользователя Blogger"; $a->strings["Blogger password"] = "Пароль Blogger"; $a->strings["Blogger API URL"] = "Blogger API URL"; -- 2.43.0 From 6e8f7d78b8dd632f793d0fce0f32def54cae02ed Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 25 May 2018 10:21:07 +0200 Subject: [PATCH 21/43] =?UTF-8?q?IS=20translation=20catavatar=20addon=20TH?= =?UTF-8?q?X=20Sveinn=20=C3=AD=20Felli?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- catavatar/lang/is/messages.po | 51 +++++++++++++++++++++++++++++++++++ catavatar/lang/is/strings.php | 16 +++++++++++ 2 files changed, 67 insertions(+) create mode 100644 catavatar/lang/is/messages.po create mode 100644 catavatar/lang/is/strings.php diff --git a/catavatar/lang/is/messages.po b/catavatar/lang/is/messages.po new file mode 100644 index 00000000..f090c4ae --- /dev/null +++ b/catavatar/lang/is/messages.po @@ -0,0 +1,51 @@ +# ADDON catavatar +# Copyright (C) +# This file is distributed under the same license as the Friendica catavatar addon package. +# +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-13 09:35+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Sveinn í Felli , 2018\n" +"Language-Team: Icelandic (https://www.transifex.com/Friendica/teams/12172/is/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: is\n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#: catavatar.php:60 +msgid "Use Cat as Avatar" +msgstr "" + +#: catavatar.php:61 +msgid "More Random Cat!" +msgstr "" + +#: catavatar.php:62 +msgid "Reset to email Cat" +msgstr "" + +#: catavatar.php:64 +msgid "Cat Avatar Settings" +msgstr "" + +#: catavatar.php:100 +msgid "The cat hadn't found itself." +msgstr "" + +#: catavatar.php:109 +msgid "There was an error, the cat ran away." +msgstr "" + +#: catavatar.php:115 +msgid "Profile Photos" +msgstr "Forsíðumyndir" + +#: catavatar.php:130 +msgid "Meow!" +msgstr "Mjá!" diff --git a/catavatar/lang/is/strings.php b/catavatar/lang/is/strings.php new file mode 100644 index 00000000..a4266e21 --- /dev/null +++ b/catavatar/lang/is/strings.php @@ -0,0 +1,16 @@ +strings["Use Cat as Avatar"] = ""; +$a->strings["More Random Cat!"] = ""; +$a->strings["Reset to email Cat"] = ""; +$a->strings["Cat Avatar Settings"] = ""; +$a->strings["The cat hadn't found itself."] = ""; +$a->strings["There was an error, the cat ran away."] = ""; +$a->strings["Profile Photos"] = "Forsíðumyndir"; +$a->strings["Meow!"] = "Mjá!"; -- 2.43.0 From 2e88375ec7c1ed90ae3aef3b8768e8dc99f00b06 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 25 May 2018 10:27:12 +0200 Subject: [PATCH 22/43] =?UTF-8?q?IS=20translation=20openstreetmap=20addon?= =?UTF-8?q?=20THX=20Sveinn=20=C3=AD=20Felli?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- openstreetmap/lang/is/messages.po | 46 +++++++++++++++++++++++++++++++ openstreetmap/lang/is/strings.php | 22 +++++++++------ 2 files changed, 60 insertions(+), 8 deletions(-) create mode 100644 openstreetmap/lang/is/messages.po diff --git a/openstreetmap/lang/is/messages.po b/openstreetmap/lang/is/messages.po new file mode 100644 index 00000000..77b7cb78 --- /dev/null +++ b/openstreetmap/lang/is/messages.po @@ -0,0 +1,46 @@ +# ADDON openstreetmap +# Copyright (C) +# This file is distributed under the same license as the Friendica openstreetmap addon package. +# +# +# Translators: +# Sveinn í Felli , 2018 +msgid "" +msgstr "" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-02-27 05:01-0500\n" +"PO-Revision-Date: 2018-05-24 15:14+0000\n" +"Last-Translator: Sveinn í Felli \n" +"Language-Team: Icelandic (http://www.transifex.com/Friendica/friendica/language/is/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: is\n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#: openstreetmap.php:94 +msgid "Submit" +msgstr "Senda inn" + +#: openstreetmap.php:95 +msgid "Tile Server URL" +msgstr "Slóð á kortaflísamiðlara" + +#: openstreetmap.php:95 +msgid "" +"A list of public tile servers" +msgstr "Listi yfir opinbera kortaflísamiðlara" + +#: openstreetmap.php:96 +msgid "Default zoom" +msgstr "Sjálfgefinn aðdráttur" + +#: openstreetmap.php:96 +msgid "The default zoom level. (1:world, 18:highest)" +msgstr "Sjálfgefið aðdráttarstig. (1:heimur, 18:mest)" + +#: openstreetmap.php:104 +msgid "Settings updated." +msgstr "Stillingar uppfærðar." diff --git a/openstreetmap/lang/is/strings.php b/openstreetmap/lang/is/strings.php index dc717efb..d14a7713 100644 --- a/openstreetmap/lang/is/strings.php +++ b/openstreetmap/lang/is/strings.php @@ -1,8 +1,14 @@ -strings["Submit"] = "Senda inn"; -$a->strings["Tile Server URL"] = ""; -$a->strings["A list of public tile servers"] = ""; -$a->strings["Default zoom"] = "Sjálfgefin þysjun"; -$a->strings["The default zoom level. (1:world, 18:highest)"] = "Sjálfgefna þysjunar sig. (1:heimur, 18:mest)"; -$a->strings["Settings updated."] = "Stillingar uppfærðar"; +strings["Submit"] = "Senda inn"; +$a->strings["Tile Server URL"] = "Slóð á kortaflísamiðlara"; +$a->strings["A list of public tile servers"] = "Listi yfir opinbera kortaflísamiðlara"; +$a->strings["Default zoom"] = "Sjálfgefinn aðdráttur"; +$a->strings["The default zoom level. (1:world, 18:highest)"] = "Sjálfgefið aðdráttarstig. (1:heimur, 18:mest)"; +$a->strings["Settings updated."] = "Stillingar uppfærðar."; -- 2.43.0 From cbde17c74b7eef8ecdb47cc6806019be3d25459f Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 25 May 2018 10:30:12 +0200 Subject: [PATCH 23/43] =?UTF-8?q?IS=20translation=20communityhome=20addon?= =?UTF-8?q?=20THX=20Sveinn=20=C3=AD=20Felli?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- communityhome/lang/is/messages.po | 74 +++++++++++++++++++++++++++++++ communityhome/lang/is/strings.php | 35 +++++++++------ 2 files changed, 95 insertions(+), 14 deletions(-) create mode 100644 communityhome/lang/is/messages.po diff --git a/communityhome/lang/is/messages.po b/communityhome/lang/is/messages.po new file mode 100644 index 00000000..8fddda5c --- /dev/null +++ b/communityhome/lang/is/messages.po @@ -0,0 +1,74 @@ +# ADDON communityhome +# Copyright (C) +# This file is distributed under the same license as the Friendica communityhome addon package. +# +# +# Translators: +# Sveinn í Felli , 2018 +msgid "" +msgstr "" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-02-27 05:01-0500\n" +"PO-Revision-Date: 2018-05-24 15:16+0000\n" +"Last-Translator: Sveinn í Felli \n" +"Language-Team: Icelandic (http://www.transifex.com/Friendica/friendica/language/is/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: is\n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#: communityhome.php:28 communityhome.php:34 +msgid "Login" +msgstr "Innskráning" + +#: communityhome.php:29 +msgid "OpenID" +msgstr "" + +#: communityhome.php:39 +msgid "Latest users" +msgstr "" + +#: communityhome.php:84 +msgid "Most active users" +msgstr "" + +#: communityhome.php:102 +msgid "Latest photos" +msgstr "" + +#: communityhome.php:115 +msgid "Contact Photos" +msgstr "" + +#: communityhome.php:116 +msgid "Profile Photos" +msgstr "" + +#: communityhome.php:141 +msgid "Latest likes" +msgstr "" + +#: communityhome.php:163 +msgid "event" +msgstr "" + +#: communityhome.php:166 communityhome.php:175 +msgid "status" +msgstr "" + +#: communityhome.php:171 +msgid "photo" +msgstr "" + +#: communityhome.php:180 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "" + +#: communityhome.php:189 +#, php-format +msgid "Welcome to %s" +msgstr "" diff --git a/communityhome/lang/is/strings.php b/communityhome/lang/is/strings.php index 743d16cd..19d602fd 100644 --- a/communityhome/lang/is/strings.php +++ b/communityhome/lang/is/strings.php @@ -1,14 +1,21 @@ -strings["Login"] = "Innskrá"; -$a->strings["OpenID"] = "OpenID"; -$a->strings["Latest users"] = ""; -$a->strings["Most active users"] = "Ofvirkustu notendurnir"; -$a->strings["Latest photos"] = ""; -$a->strings["Contact Photos"] = "Myndir tengiliðs"; -$a->strings["Profile Photos"] = "Forsíðu myndir"; -$a->strings["Latest likes"] = ""; -$a->strings["event"] = "atburður"; -$a->strings["status"] = "staða"; -$a->strings["photo"] = "mynd"; -$a->strings["Welcome to %s"] = "Velkomin(n) til %s"; +strings["Login"] = "Innskráning"; +$a->strings["OpenID"] = ""; +$a->strings["Latest users"] = ""; +$a->strings["Most active users"] = ""; +$a->strings["Latest photos"] = ""; +$a->strings["Contact Photos"] = ""; +$a->strings["Profile Photos"] = ""; +$a->strings["Latest likes"] = ""; +$a->strings["event"] = ""; +$a->strings["status"] = ""; +$a->strings["photo"] = ""; +$a->strings["%1\$s likes %2\$s's %3\$s"] = ""; +$a->strings["Welcome to %s"] = ""; -- 2.43.0 From 0b50a71af3d283406b3d8e763c4dd99329b047c2 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 25 May 2018 10:41:58 +0200 Subject: [PATCH 24/43] RU translation buffer addon THX Stanislav N --- buffer/lang/ru/messages.po | 6 +++--- buffer/lang/ru/strings.php | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/buffer/lang/ru/messages.po b/buffer/lang/ru/messages.po index 68107abc..7aabaf4c 100644 --- a/buffer/lang/ru/messages.po +++ b/buffer/lang/ru/messages.po @@ -4,13 +4,13 @@ # # # Translators: -# Stanislav N. , 2017 +# Stanislav N. , 2017-2018 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-06-22 13:18+0200\n" -"PO-Revision-Date: 2017-04-08 17:05+0000\n" +"PO-Revision-Date: 2018-05-25 00:01+0000\n" "Last-Translator: Stanislav N. \n" "Language-Team: Russian (http://www.transifex.com/Friendica/friendica/language/ru/)\n" "MIME-Version: 1.0\n" @@ -61,7 +61,7 @@ msgstr "Аутентифицируйте свое соединение с Buffer #: buffer.php:146 msgid "Enable Buffer Post Addon" -msgstr "Включить плагин Buffer" +msgstr "Включить аддон Buffer Post" #: buffer.php:151 msgid "Post to Buffer by default" diff --git a/buffer/lang/ru/strings.php b/buffer/lang/ru/strings.php index 8572ffd6..92dfc507 100644 --- a/buffer/lang/ru/strings.php +++ b/buffer/lang/ru/strings.php @@ -2,6 +2,7 @@ if(! function_exists("string_plural_select_ru")) { function string_plural_select_ru($n){ + $n = intval($n); return ($n%10==1 && $n%100!=11 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<12 || $n%100>14) ? 1 : $n%10==0 || ($n%10>=5 && $n%10<=9) || ($n%100>=11 && $n%100<=14)? 2 : 3);; }} ; @@ -15,7 +16,7 @@ $a->strings["return to the connector page"] = "вернуться на стра $a->strings["Post to Buffer"] = "Написать в Buffer"; $a->strings["Buffer Export"] = "Экспорт в Buffer"; $a->strings["Authenticate your Buffer connection"] = "Аутентифицируйте свое соединение с Buffer"; -$a->strings["Enable Buffer Post Addon"] = "Включить плагин Buffer"; +$a->strings["Enable Buffer Post Addon"] = "Включить аддон Buffer Post"; $a->strings["Post to Buffer by default"] = "Отправлять в Buffer по умолчанию"; $a->strings["Check to delete this preset"] = "Отметьте для удаления этих настроек"; $a->strings["Posts are going to all accounts that are enabled by default:"] = "Сообщения уходят во все учетные записи по умолчанию:"; -- 2.43.0 From a18c3bfd45c8b66d454cc30a829c44a04f79cda4 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 25 May 2018 10:43:56 +0200 Subject: [PATCH 25/43] =?UTF-8?q?IS=20translation=20buffer=20addon=20THX?= =?UTF-8?q?=20Sveinn=20=C3=AD=20Felli?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- buffer/lang/is/messages.po | 76 ++++++++++++++++++++++++++++++++++++++ buffer/lang/is/strings.php | 22 +++++++++++ 2 files changed, 98 insertions(+) create mode 100644 buffer/lang/is/messages.po create mode 100644 buffer/lang/is/strings.php diff --git a/buffer/lang/is/messages.po b/buffer/lang/is/messages.po new file mode 100644 index 00000000..dea15854 --- /dev/null +++ b/buffer/lang/is/messages.po @@ -0,0 +1,76 @@ +# ADDON buffer +# Copyright (C) +# This file is distributed under the same license as the Friendica buffer addon package. +# +# +# Translators: +# Sveinn í Felli , 2018 +msgid "" +msgstr "" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-06-22 13:18+0200\n" +"PO-Revision-Date: 2018-05-24 15:15+0000\n" +"Last-Translator: Sveinn í Felli \n" +"Language-Team: Icelandic (http://www.transifex.com/Friendica/friendica/language/is/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: is\n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#: buffer.php:31 +msgid "Permission denied." +msgstr "Heimild ekki veitt." + +#: buffer.php:57 buffer.php:185 +msgid "Save Settings" +msgstr "" + +#: buffer.php:59 +msgid "Client ID" +msgstr "" + +#: buffer.php:60 +msgid "Client Secret" +msgstr "" + +#: buffer.php:67 +msgid "Error when registering buffer connection:" +msgstr "" + +#: buffer.php:86 +msgid "You are now authenticated to buffer. " +msgstr "" + +#: buffer.php:87 +msgid "return to the connector page" +msgstr "" + +#: buffer.php:103 +msgid "Post to Buffer" +msgstr "" + +#: buffer.php:128 buffer.php:132 +msgid "Buffer Export" +msgstr "" + +#: buffer.php:142 +msgid "Authenticate your Buffer connection" +msgstr "" + +#: buffer.php:146 +msgid "Enable Buffer Post Addon" +msgstr "" + +#: buffer.php:151 +msgid "Post to Buffer by default" +msgstr "" + +#: buffer.php:156 +msgid "Check to delete this preset" +msgstr "" + +#: buffer.php:165 +msgid "Posts are going to all accounts that are enabled by default:" +msgstr "" diff --git a/buffer/lang/is/strings.php b/buffer/lang/is/strings.php new file mode 100644 index 00000000..3584aad3 --- /dev/null +++ b/buffer/lang/is/strings.php @@ -0,0 +1,22 @@ +strings["Permission denied."] = "Heimild ekki veitt."; +$a->strings["Save Settings"] = ""; +$a->strings["Client ID"] = ""; +$a->strings["Client Secret"] = ""; +$a->strings["Error when registering buffer connection:"] = ""; +$a->strings["You are now authenticated to buffer. "] = ""; +$a->strings["return to the connector page"] = ""; +$a->strings["Post to Buffer"] = ""; +$a->strings["Buffer Export"] = ""; +$a->strings["Authenticate your Buffer connection"] = ""; +$a->strings["Enable Buffer Post Addon"] = ""; +$a->strings["Post to Buffer by default"] = ""; +$a->strings["Check to delete this preset"] = ""; +$a->strings["Posts are going to all accounts that are enabled by default:"] = ""; -- 2.43.0 From 565887fb91dec88e6ff2156b763435e84c7a3785 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 25 May 2018 10:46:43 +0200 Subject: [PATCH 26/43] =?UTF-8?q?IS=20translation=20buglink=20addon=20THX?= =?UTF-8?q?=20Sveinn=20=C3=AD=20Felli?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- buglink/lang/is/messages.po | 24 ++++++++++++++++++++++++ buglink/lang/is/strings.php | 12 +++++++++--- 2 files changed, 33 insertions(+), 3 deletions(-) create mode 100644 buglink/lang/is/messages.po diff --git a/buglink/lang/is/messages.po b/buglink/lang/is/messages.po new file mode 100644 index 00000000..87154d1f --- /dev/null +++ b/buglink/lang/is/messages.po @@ -0,0 +1,24 @@ +# ADDON buglink +# Copyright (C) +# This file is distributed under the same license as the Friendica buglink addon package. +# +# +# Translators: +# Sveinn í Felli , 2018 +msgid "" +msgstr "" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-06-22 13:18+0200\n" +"PO-Revision-Date: 2018-05-24 15:16+0000\n" +"Last-Translator: Sveinn í Felli \n" +"Language-Team: Icelandic (http://www.transifex.com/Friendica/friendica/language/is/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: is\n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#: buglink.php:15 +msgid "Report Bug" +msgstr "Tilkynna villu" diff --git a/buglink/lang/is/strings.php b/buglink/lang/is/strings.php index 7b3823a6..0458315a 100644 --- a/buglink/lang/is/strings.php +++ b/buglink/lang/is/strings.php @@ -1,3 +1,9 @@ -strings["Report Bug"] = "Tilkynna bilun"; +strings["Report Bug"] = "Tilkynna villu"; -- 2.43.0 From fe4787b35d61e77289510fbe041773dadcae5a0b Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 25 May 2018 10:48:05 +0200 Subject: [PATCH 27/43] RU translation geonames addon THX Stanislav N --- geonames/lang/ru/messages.po | 6 +++--- geonames/lang/ru/strings.php | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/geonames/lang/ru/messages.po b/geonames/lang/ru/messages.po index a639310b..26e3ca45 100644 --- a/geonames/lang/ru/messages.po +++ b/geonames/lang/ru/messages.po @@ -4,13 +4,13 @@ # # # Translators: -# Stanislav N. , 2017 +# Stanislav N. , 2017-2018 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-27 05:01-0500\n" -"PO-Revision-Date: 2017-04-08 17:16+0000\n" +"PO-Revision-Date: 2018-05-25 00:02+0000\n" "Last-Translator: Stanislav N. \n" "Language-Team: Russian (http://www.transifex.com/Friendica/friendica/language/ru/)\n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgstr "Настройки Geonames" #: geonames.php:181 msgid "Enable Geonames Addon" -msgstr "Включить плагин Geonames" +msgstr "Включить аддон Geonames" #: geonames.php:187 msgid "Submit" diff --git a/geonames/lang/ru/strings.php b/geonames/lang/ru/strings.php index 658dd72a..282db750 100644 --- a/geonames/lang/ru/strings.php +++ b/geonames/lang/ru/strings.php @@ -2,10 +2,11 @@ if(! function_exists("string_plural_select_ru")) { function string_plural_select_ru($n){ + $n = intval($n); return ($n%10==1 && $n%100!=11 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<12 || $n%100>14) ? 1 : $n%10==0 || ($n%10>=5 && $n%10<=9) || ($n%100>=11 && $n%100<=14)? 2 : 3);; }} ; $a->strings["Geonames settings updated."] = "Настройки Geonames обновлены."; $a->strings["Geonames Settings"] = "Настройки Geonames"; -$a->strings["Enable Geonames Addon"] = "Включить плагин Geonames"; +$a->strings["Enable Geonames Addon"] = "Включить аддон Geonames"; $a->strings["Submit"] = "Добавить"; -- 2.43.0 From 3c2f867d129b0fed3c30aebedc850e54074777a9 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 25 May 2018 10:49:10 +0200 Subject: [PATCH 28/43] =?UTF-8?q?IS=20translation=20geonames=20addon=20THX?= =?UTF-8?q?=20Sveinn=20=C3=AD=20Felli?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- geonames/lang/is/messages.po | 36 ++++++++++++++++++++++++++++++++++++ geonames/lang/is/strings.php | 18 ++++++++++++------ 2 files changed, 48 insertions(+), 6 deletions(-) create mode 100644 geonames/lang/is/messages.po diff --git a/geonames/lang/is/messages.po b/geonames/lang/is/messages.po new file mode 100644 index 00000000..a2535ce9 --- /dev/null +++ b/geonames/lang/is/messages.po @@ -0,0 +1,36 @@ +# ADDON geonames +# Copyright (C) +# This file is distributed under the same license as the Friendica geonames addon package. +# +# +# Translators: +# Sveinn í Felli , 2018 +msgid "" +msgstr "" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-02-27 05:01-0500\n" +"PO-Revision-Date: 2018-05-24 15:15+0000\n" +"Last-Translator: Sveinn í Felli \n" +"Language-Team: Icelandic (http://www.transifex.com/Friendica/friendica/language/is/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: is\n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#: geonames.php:143 +msgid "Geonames settings updated." +msgstr "" + +#: geonames.php:179 +msgid "Geonames Settings" +msgstr "" + +#: geonames.php:181 +msgid "Enable Geonames Addon" +msgstr "" + +#: geonames.php:187 +msgid "Submit" +msgstr "Senda inn" diff --git a/geonames/lang/is/strings.php b/geonames/lang/is/strings.php index 436d3116..8462f4c3 100644 --- a/geonames/lang/is/strings.php +++ b/geonames/lang/is/strings.php @@ -1,6 +1,12 @@ -strings["Geonames settings updated."] = ""; -$a->strings["Geonames Settings"] = ""; -$a->strings["Enable Geonames Addon"] = ""; -$a->strings["Submit"] = "Senda inn"; +strings["Geonames settings updated."] = ""; +$a->strings["Geonames Settings"] = ""; +$a->strings["Enable Geonames Addon"] = ""; +$a->strings["Submit"] = "Senda inn"; -- 2.43.0 From e9732c3992f06011abd3b2dfba7d071f2c9521ef Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 25 May 2018 10:52:16 +0200 Subject: [PATCH 29/43] =?UTF-8?q?IS=20translation=20blackout=20addon=20THX?= =?UTF-8?q?=20Sveinn=20=C3=AD=20Felli?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- blackout/lang/is/messages.po | 52 ++++++++++++++++++++++++++++++++++++ blackout/lang/is/strings.php | 18 ++++++++++--- 2 files changed, 67 insertions(+), 3 deletions(-) create mode 100644 blackout/lang/is/messages.po diff --git a/blackout/lang/is/messages.po b/blackout/lang/is/messages.po new file mode 100644 index 00000000..0c011bfd --- /dev/null +++ b/blackout/lang/is/messages.po @@ -0,0 +1,52 @@ +# ADDON blackout +# Copyright (C) +# This file is distributed under the same license as the Friendica blackout addon package. +# +# +# Translators: +# Sveinn í Felli , 2018 +msgid "" +msgstr "" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-06-22 13:18+0200\n" +"PO-Revision-Date: 2018-05-24 15:15+0000\n" +"Last-Translator: Sveinn í Felli \n" +"Language-Team: Icelandic (http://www.transifex.com/Friendica/friendica/language/is/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: is\n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#: blackout.php:99 +msgid "Save Settings" +msgstr "Vista stillingar" + +#: blackout.php:100 +msgid "Redirect URL" +msgstr "" + +#: blackout.php:100 +msgid "all your visitors from the web will be redirected to this URL" +msgstr "" + +#: blackout.php:101 +msgid "Begin of the Blackout" +msgstr "" + +#: blackout.php:101 +msgid "" +"format is YYYY year, MM month, DD day, " +"hh hour and mm minute" +msgstr "" + +#: blackout.php:102 +msgid "End of the Blackout" +msgstr "" + +#: blackout.php:108 +msgid "" +"The end-date is prior to the start-date of the blackout, you should fix " +"this." +msgstr "" diff --git a/blackout/lang/is/strings.php b/blackout/lang/is/strings.php index 94f89330..41980a4d 100644 --- a/blackout/lang/is/strings.php +++ b/blackout/lang/is/strings.php @@ -1,3 +1,15 @@ -strings["Submit"] = "Senda inn"; +strings["Save Settings"] = "Vista stillingar"; +$a->strings["Redirect URL"] = ""; +$a->strings["all your visitors from the web will be redirected to this URL"] = ""; +$a->strings["Begin of the Blackout"] = ""; +$a->strings["format is YYYY year, MM month, DD day, hh hour and mm minute"] = ""; +$a->strings["End of the Blackout"] = ""; +$a->strings["The end-date is prior to the start-date of the blackout, you should fix this."] = ""; -- 2.43.0 From d111e17f84f2fc48cc10f8ce50493b451a35c898 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 25 May 2018 10:53:37 +0200 Subject: [PATCH 30/43] RU translation diaspora addon THX Stanislav N --- diaspora/lang/ru/strings.php | 1 + 1 file changed, 1 insertion(+) diff --git a/diaspora/lang/ru/strings.php b/diaspora/lang/ru/strings.php index 0d46c78d..71c8ff1f 100644 --- a/diaspora/lang/ru/strings.php +++ b/diaspora/lang/ru/strings.php @@ -2,6 +2,7 @@ if(! function_exists("string_plural_select_ru")) { function string_plural_select_ru($n){ + $n = intval($n); return ($n%10==1 && $n%100!=11 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<12 || $n%100>14) ? 1 : $n%10==0 || ($n%10>=5 && $n%10<=9) || ($n%100>=11 && $n%100<=14)? 2 : 3);; }} ; -- 2.43.0 From e0c18c77f447fd1b9e2d542d4b40c47e407958c6 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 25 May 2018 10:57:09 +0200 Subject: [PATCH 31/43] =?UTF-8?q?IS=20translation=20diaspora=20addon=20THX?= =?UTF-8?q?=20Sveinn=20=C3=AD=20Felli?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- diaspora/lang/is/messages.po | 62 ++++++++++++++++++++++++++++++++++++ diaspora/lang/is/strings.php | 18 +++++++++++ 2 files changed, 80 insertions(+) create mode 100644 diaspora/lang/is/messages.po create mode 100644 diaspora/lang/is/strings.php diff --git a/diaspora/lang/is/messages.po b/diaspora/lang/is/messages.po new file mode 100644 index 00000000..13f1e3ae --- /dev/null +++ b/diaspora/lang/is/messages.po @@ -0,0 +1,62 @@ +# ADDON diaspora +# Copyright (C) +# This file is distributed under the same license as the Friendica diaspora addon package. +# +# +# Translators: +# Sveinn í Felli , 2018 +msgid "" +msgstr "" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-06-22 13:18+0200\n" +"PO-Revision-Date: 2018-05-24 15:20+0000\n" +"Last-Translator: Sveinn í Felli \n" +"Language-Team: Icelandic (http://www.transifex.com/Friendica/friendica/language/is/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: is\n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#: diaspora.php:37 +msgid "Post to Diaspora" +msgstr "Senda færslu á Diaspora" + +#: diaspora.php:142 +msgid "" +"Can't login to your Diaspora account. Please check username and password and" +" ensure you used the complete address (including http...)" +msgstr "" + +#: diaspora.php:149 diaspora.php:153 +msgid "Diaspora Export" +msgstr "Diaspora útflutningur" + +#: diaspora.php:163 +msgid "Enable Diaspora Post Addon" +msgstr "Virkja sendiviðbót fyrir Diaspora" + +#: diaspora.php:168 +msgid "Diaspora username" +msgstr "Notandanafn á Diaspora" + +#: diaspora.php:173 +msgid "Diaspora password" +msgstr "Lykilorð á Diaspora" + +#: diaspora.php:178 +msgid "Diaspora site URL" +msgstr "Slóð á Diaspora-vefsvæði" + +#: diaspora.php:183 +msgid "Post to Diaspora by default" +msgstr "Senda sjálfgefið færslur á Diaspora" + +#: diaspora.php:189 +msgid "Save Settings" +msgstr "Vista stillingar" + +#: diaspora.php:324 +msgid "Diaspora post failed. Queued for retry." +msgstr "Færsla Diaspora mistókst. Sett í biðröð til endurtekningar." diff --git a/diaspora/lang/is/strings.php b/diaspora/lang/is/strings.php new file mode 100644 index 00000000..6149a41b --- /dev/null +++ b/diaspora/lang/is/strings.php @@ -0,0 +1,18 @@ +strings["Post to Diaspora"] = "Senda færslu á Diaspora"; +$a->strings["Can't login to your Diaspora account. Please check username and password and ensure you used the complete address (including http...)"] = ""; +$a->strings["Diaspora Export"] = "Diaspora útflutningur"; +$a->strings["Enable Diaspora Post Addon"] = "Virkja sendiviðbót fyrir Diaspora"; +$a->strings["Diaspora username"] = "Notandanafn á Diaspora"; +$a->strings["Diaspora password"] = "Lykilorð á Diaspora"; +$a->strings["Diaspora site URL"] = "Slóð á Diaspora-vefsvæði"; +$a->strings["Post to Diaspora by default"] = "Senda sjálfgefið færslur á Diaspora"; +$a->strings["Save Settings"] = "Vista stillingar"; +$a->strings["Diaspora post failed. Queued for retry."] = "Færsla Diaspora mistókst. Sett í biðröð til endurtekningar."; -- 2.43.0 From d247b226a0e634ce0196e6255a1cdfb78b7910f9 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 25 May 2018 11:02:11 +0200 Subject: [PATCH 32/43] DE translation advancedcontentfilter --- advancedcontentfilter/lang/de/messages.po | 174 ++++++++++++++++++++++ advancedcontentfilter/lang/de/strings.php | 41 +++++ 2 files changed, 215 insertions(+) create mode 100644 advancedcontentfilter/lang/de/messages.po create mode 100644 advancedcontentfilter/lang/de/strings.php diff --git a/advancedcontentfilter/lang/de/messages.po b/advancedcontentfilter/lang/de/messages.po new file mode 100644 index 00000000..c6f84ac1 --- /dev/null +++ b/advancedcontentfilter/lang/de/messages.po @@ -0,0 +1,174 @@ +# ADDON advancedcontentfilter +# Copyright (C) +# This file is distributed under the same license as the Friendica advancedcontentfilter addon package. +# +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-17 04:04+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Tobias Diekershoff , 2018\n" +"Language-Team: German (https://www.transifex.com/Friendica/teams/12172/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: advancedcontentfilter.php:134 +#, php-format +msgid "Filtered by rule: %s" +msgstr "Nach dieser Regel gefiltert: %s" + +#: advancedcontentfilter.php:147 advancedcontentfilter.php:204 +msgid "Advanced Content Filter" +msgstr "Erweiterter Inhaltsfilter" + +#: advancedcontentfilter.php:203 +msgid "Back to Addon Settings" +msgstr "Zurück zu den Addon Einstellungen" + +#: advancedcontentfilter.php:205 +msgid "Add a Rule" +msgstr "Eine Regel hinzufügen" + +#: advancedcontentfilter.php:206 +msgid "Help" +msgstr "Hilfe" + +#: advancedcontentfilter.php:207 +msgid "" +"Add and manage your personal content filter rules in this screen. Rules have" +" a name and an arbitrary expression that will be matched against post data. " +"For a complete reference of the available operations and variables, check " +"the help page." +msgstr "" +"Auf dieser Seite kannst du deine persönlichen Filterregeln verwalten. Regeln" +" müssen einen Namen und einen frei wählbaren Ausdruck besitzen. Dieser " +"Ausdruck wird mit den Daten der Beiträge abgeglichen und diese dann " +"gegebenenfalls gefiltert. Für eine Übersicht der verfügbaren Operatoren für " +"die Filter, wirf bitte einen Blick auf die Hilfsseite des Addons." + +#: advancedcontentfilter.php:208 +msgid "Your rules" +msgstr "Deine Regeln" + +#: advancedcontentfilter.php:209 +msgid "" +"You have no rules yet! Start adding one by clicking on the button above next" +" to the title." +msgstr "" +"Du hast bisher noch keine Regeln definiert. Um eine neue Regel zu erstellen," +" verwende bitte den Button neben dem Titel." + +#: advancedcontentfilter.php:210 +msgid "Disabled" +msgstr "Deaktiviert" + +#: advancedcontentfilter.php:211 +msgid "Enabled" +msgstr "Aktiv" + +#: advancedcontentfilter.php:212 +msgid "Disable this rule" +msgstr "Diese Regel deaktivieren" + +#: advancedcontentfilter.php:213 +msgid "Enable this rule" +msgstr "Diese Regel aktivieren" + +#: advancedcontentfilter.php:214 +msgid "Edit this rule" +msgstr "Diese Regel bearbeiten" + +#: advancedcontentfilter.php:215 +msgid "Edit the rule" +msgstr "Die Regel bearbeiten" + +#: advancedcontentfilter.php:216 +msgid "Save this rule" +msgstr "Regel speichern" + +#: advancedcontentfilter.php:217 +msgid "Delete this rule" +msgstr "Diese Regel löschen" + +#: advancedcontentfilter.php:218 +msgid "Rule" +msgstr "Regel" + +#: advancedcontentfilter.php:219 +msgid "Close" +msgstr "Schließen" + +#: advancedcontentfilter.php:220 +msgid "Add new rule" +msgstr "Neue Regel hinzufügen" + +#: advancedcontentfilter.php:221 +msgid "Rule Name" +msgstr "Name der Regel" + +#: advancedcontentfilter.php:222 +msgid "Rule Expression" +msgstr "Ausdruck der Regel" + +#: advancedcontentfilter.php:223 +msgid "" +"

Examples:

  • author_link == "
    +"'https://friendica.mrpetovan.com/profile/hypolite'
  • tags
" +msgstr "" +"

Ein Beispiel:

  • author_link == "
    +"'https://friendica.mrpetovan.com/profile/hypolite'
  • tags
" + +#: advancedcontentfilter.php:224 +msgid "Cancel" +msgstr "Abbrechen" + +#: advancedcontentfilter.php:290 advancedcontentfilter.php:301 +#: advancedcontentfilter.php:312 advancedcontentfilter.php:346 +#: advancedcontentfilter.php:375 advancedcontentfilter.php:396 +msgid "You must be logged in to use this method" +msgstr "Du musst angemeldet sein um diese Methode verwenden zu können " + +#: advancedcontentfilter.php:316 advancedcontentfilter.php:350 +#: advancedcontentfilter.php:379 +msgid "Invalid form security token, please refresh the page." +msgstr "Ungültiges Sciherheitstoken, bitte die Seite neu laden." + +#: advancedcontentfilter.php:328 +msgid "The rule name and expression are required." +msgstr "Der Name der Regel und der Ausdruck sind erforderlich." + +#: advancedcontentfilter.php:340 +msgid "Rule successfully added" +msgstr "Regel erfolgreich hinzugefügt." + +#: advancedcontentfilter.php:354 advancedcontentfilter.php:383 +msgid "Rule doesn't exist or doesn't belong to you." +msgstr "Entweder existiert die Regel nicht, oder sie gehört dir nicht." + +#: advancedcontentfilter.php:369 +msgid "Rule successfully updated" +msgstr "Regel wurde erfolgreich aktualisiert." + +#: advancedcontentfilter.php:390 +msgid "Rule successfully deleted" +msgstr "Regel erfolgreich gelöscht." + +#: advancedcontentfilter.php:400 +msgid "Missing argument: guid." +msgstr "Fehlendes Argument: guid." + +#: advancedcontentfilter.php:406 +#, php-format +msgid "Unknown post with guid: %s" +msgstr "Unbekannter Beitrag mit der guid: %s" + +#: src/middlewares.php:28 +msgid "Method not found" +msgstr "Methode nicht gefunden" diff --git a/advancedcontentfilter/lang/de/strings.php b/advancedcontentfilter/lang/de/strings.php new file mode 100644 index 00000000..80b2ecd7 --- /dev/null +++ b/advancedcontentfilter/lang/de/strings.php @@ -0,0 +1,41 @@ +strings["Filtered by rule: %s"] = "Nach dieser Regel gefiltert: %s"; +$a->strings["Advanced Content Filter"] = "Erweiterter Inhaltsfilter"; +$a->strings["Back to Addon Settings"] = "Zurück zu den Addon Einstellungen"; +$a->strings["Add a Rule"] = "Eine Regel hinzufügen"; +$a->strings["Help"] = "Hilfe"; +$a->strings["Add and manage your personal content filter rules in this screen. Rules have a name and an arbitrary expression that will be matched against post data. For a complete reference of the available operations and variables, check the help page."] = "Auf dieser Seite kannst du deine persönlichen Filterregeln verwalten. Regeln müssen einen Namen und einen frei wählbaren Ausdruck besitzen. Dieser Ausdruck wird mit den Daten der Beiträge abgeglichen und diese dann gegebenenfalls gefiltert. Für eine Übersicht der verfügbaren Operatoren für die Filter, wirf bitte einen Blick auf die Hilfsseite des Addons."; +$a->strings["Your rules"] = "Deine Regeln"; +$a->strings["You have no rules yet! Start adding one by clicking on the button above next to the title."] = "Du hast bisher noch keine Regeln definiert. Um eine neue Regel zu erstellen, verwende bitte den Button neben dem Titel."; +$a->strings["Disabled"] = "Deaktiviert"; +$a->strings["Enabled"] = "Aktiv"; +$a->strings["Disable this rule"] = "Diese Regel deaktivieren"; +$a->strings["Enable this rule"] = "Diese Regel aktivieren"; +$a->strings["Edit this rule"] = "Diese Regel bearbeiten"; +$a->strings["Edit the rule"] = "Die Regel bearbeiten"; +$a->strings["Save this rule"] = "Regel speichern"; +$a->strings["Delete this rule"] = "Diese Regel löschen"; +$a->strings["Rule"] = "Regel"; +$a->strings["Close"] = "Schließen"; +$a->strings["Add new rule"] = "Neue Regel hinzufügen"; +$a->strings["Rule Name"] = "Name der Regel"; +$a->strings["Rule Expression"] = "Ausdruck der Regel"; +$a->strings["

Examples:

  • author_link == 'https://friendica.mrpetovan.com/profile/hypolite'
  • tags
"] = "

Ein Beispiel:

  • author_link == 'https://friendica.mrpetovan.com/profile/hypolite'
  • tags
"; +$a->strings["Cancel"] = "Abbrechen"; +$a->strings["You must be logged in to use this method"] = "Du musst angemeldet sein um diese Methode verwenden zu können "; +$a->strings["Invalid form security token, please refresh the page."] = "Ungültiges Sciherheitstoken, bitte die Seite neu laden."; +$a->strings["The rule name and expression are required."] = "Der Name der Regel und der Ausdruck sind erforderlich."; +$a->strings["Rule successfully added"] = "Regel erfolgreich hinzugefügt."; +$a->strings["Rule doesn't exist or doesn't belong to you."] = "Entweder existiert die Regel nicht, oder sie gehört dir nicht."; +$a->strings["Rule successfully updated"] = "Regel wurde erfolgreich aktualisiert."; +$a->strings["Rule successfully deleted"] = "Regel erfolgreich gelöscht."; +$a->strings["Missing argument: guid."] = "Fehlendes Argument: guid."; +$a->strings["Unknown post with guid: %s"] = "Unbekannter Beitrag mit der guid: %s"; +$a->strings["Method not found"] = "Methode nicht gefunden"; -- 2.43.0 From 56a3d6ed3165b79f4428b47b40c866da8b5dbba9 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 25 May 2018 11:03:16 +0200 Subject: [PATCH 33/43] PL translation advancedcontentfilter THX waldis --- advancedcontentfilter/lang/pl/messages.po | 172 ++++++++++++++++++++++ advancedcontentfilter/lang/pl/strings.php | 41 ++++++ 2 files changed, 213 insertions(+) create mode 100644 advancedcontentfilter/lang/pl/messages.po create mode 100644 advancedcontentfilter/lang/pl/strings.php diff --git a/advancedcontentfilter/lang/pl/messages.po b/advancedcontentfilter/lang/pl/messages.po new file mode 100644 index 00000000..38c4e302 --- /dev/null +++ b/advancedcontentfilter/lang/pl/messages.po @@ -0,0 +1,172 @@ +# ADDON advancedcontentfilter +# Copyright (C) +# This file is distributed under the same license as the Friendica advancedcontentfilter addon package. +# +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-17 04:04+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Waldemar Stoczkowski , 2018\n" +"Language-Team: Polish (https://www.transifex.com/Friendica/teams/12172/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#: advancedcontentfilter.php:134 +#, php-format +msgid "Filtered by rule: %s" +msgstr " Filtruj według reguły: %s" + +#: advancedcontentfilter.php:147 advancedcontentfilter.php:204 +msgid "Advanced Content Filter" +msgstr "Zaawansowany filtr zawartości" + +#: advancedcontentfilter.php:203 +msgid "Back to Addon Settings" +msgstr "Powrót do ustawień dodatków" + +#: advancedcontentfilter.php:205 +msgid "Add a Rule" +msgstr "Dodaj regułę" + +#: advancedcontentfilter.php:206 +msgid "Help" +msgstr "Pomoc" + +#: advancedcontentfilter.php:207 +msgid "" +"Add and manage your personal content filter rules in this screen. Rules have" +" a name and an arbitrary expression that will be matched against post data. " +"For a complete reference of the available operations and variables, check " +"the help page." +msgstr "" +"Dodaj i zarządzaj regułami filtrowania treści osobistych na tym ekranie. " +"Reguły mają nazwę i dowolne wyrażenie, które zostanie dopasowane do danych " +"postów. Aby uzyskać pełne informacje o dostępnych operacjach i zmiennych, " +"sprawdź stronę pomocy." + +#: advancedcontentfilter.php:208 +msgid "Your rules" +msgstr "Twoje zasady" + +#: advancedcontentfilter.php:209 +msgid "" +"You have no rules yet! Start adding one by clicking on the button above next" +" to the title." +msgstr "" +"Nie masz jeszcze żadnych zasad! Zacznij dodawać jedną, klikając przycisk " +"znajdujący się nad tytułem." + +#: advancedcontentfilter.php:210 +msgid "Disabled" +msgstr "Wyłącz" + +#: advancedcontentfilter.php:211 +msgid "Enabled" +msgstr "Włącz" + +#: advancedcontentfilter.php:212 +msgid "Disable this rule" +msgstr "Wyłącz tę regułę" + +#: advancedcontentfilter.php:213 +msgid "Enable this rule" +msgstr "Włącz tę regułę" + +#: advancedcontentfilter.php:214 +msgid "Edit this rule" +msgstr "dytuj tę regułę" + +#: advancedcontentfilter.php:215 +msgid "Edit the rule" +msgstr "Edytuj regułę" + +#: advancedcontentfilter.php:216 +msgid "Save this rule" +msgstr "Zapisz tę regułę" + +#: advancedcontentfilter.php:217 +msgid "Delete this rule" +msgstr "Usuń tę regułę" + +#: advancedcontentfilter.php:218 +msgid "Rule" +msgstr "Reguła" + +#: advancedcontentfilter.php:219 +msgid "Close" +msgstr "Zamknij" + +#: advancedcontentfilter.php:220 +msgid "Add new rule" +msgstr "Dodaj nową regułę" + +#: advancedcontentfilter.php:221 +msgid "Rule Name" +msgstr "Nazwa reguły" + +#: advancedcontentfilter.php:222 +msgid "Rule Expression" +msgstr "Wyrażanie reguły" + +#: advancedcontentfilter.php:223 +msgid "" +"

Examples:

  • author_link == "
    +"'https://friendica.mrpetovan.com/profile/hypolite'
  • tags
" +msgstr "" +"

przykład

  • author_link == "
    +"'https://friendica.mrpetovan.com/profile/hypolite'
  • tagi
" + +#: advancedcontentfilter.php:224 +msgid "Cancel" +msgstr "Anuluj" + +#: advancedcontentfilter.php:290 advancedcontentfilter.php:301 +#: advancedcontentfilter.php:312 advancedcontentfilter.php:346 +#: advancedcontentfilter.php:375 advancedcontentfilter.php:396 +msgid "You must be logged in to use this method" +msgstr "Musisz być zalogowany, aby skorzystać z tej metody" + +#: advancedcontentfilter.php:316 advancedcontentfilter.php:350 +#: advancedcontentfilter.php:379 +msgid "Invalid form security token, please refresh the page." +msgstr "Nieprawidłowy token zabezpieczający formularz, odśwież stronę." + +#: advancedcontentfilter.php:328 +msgid "The rule name and expression are required." +msgstr "Nazwa reguły i wyrażenie są wymagane." + +#: advancedcontentfilter.php:340 +msgid "Rule successfully added" +msgstr "Reguła została pomyślnie dodana" + +#: advancedcontentfilter.php:354 advancedcontentfilter.php:383 +msgid "Rule doesn't exist or doesn't belong to you." +msgstr "Reguła nie istnieje lub nie należy do ciebie." + +#: advancedcontentfilter.php:369 +msgid "Rule successfully updated" +msgstr "Reguła została pomyślnie zaktualizowana" + +#: advancedcontentfilter.php:390 +msgid "Rule successfully deleted" +msgstr "Reguła została pomyślnie usunięta" + +#: advancedcontentfilter.php:400 +msgid "Missing argument: guid." +msgstr "Brakujący argument: guid." + +#: advancedcontentfilter.php:406 +#, php-format +msgid "Unknown post with guid: %s" +msgstr "Nieznany post z guid:%s" + +#: src/middlewares.php:28 +msgid "Method not found" +msgstr "Nie znaleziono metody" diff --git a/advancedcontentfilter/lang/pl/strings.php b/advancedcontentfilter/lang/pl/strings.php new file mode 100644 index 00000000..a8fb9ddd --- /dev/null +++ b/advancedcontentfilter/lang/pl/strings.php @@ -0,0 +1,41 @@ +=2 && $n%10<=4) && ($n%100<12 || $n%100>14) ? 1 : $n!=1 && ($n%10>=0 && $n%10<=1) || ($n%10>=5 && $n%10<=9) || ($n%100>=12 && $n%100<=14) ? 2 : 3);; +}} +; +$a->strings["Filtered by rule: %s"] = " Filtruj według reguły: %s"; +$a->strings["Advanced Content Filter"] = "Zaawansowany filtr zawartości"; +$a->strings["Back to Addon Settings"] = "Powrót do ustawień dodatków"; +$a->strings["Add a Rule"] = "Dodaj regułę"; +$a->strings["Help"] = "Pomoc"; +$a->strings["Add and manage your personal content filter rules in this screen. Rules have a name and an arbitrary expression that will be matched against post data. For a complete reference of the available operations and variables, check the help page."] = "Dodaj i zarządzaj regułami filtrowania treści osobistych na tym ekranie. Reguły mają nazwę i dowolne wyrażenie, które zostanie dopasowane do danych postów. Aby uzyskać pełne informacje o dostępnych operacjach i zmiennych, sprawdź stronę pomocy."; +$a->strings["Your rules"] = "Twoje zasady"; +$a->strings["You have no rules yet! Start adding one by clicking on the button above next to the title."] = "Nie masz jeszcze żadnych zasad! Zacznij dodawać jedną, klikając przycisk znajdujący się nad tytułem."; +$a->strings["Disabled"] = "Wyłącz"; +$a->strings["Enabled"] = "Włącz"; +$a->strings["Disable this rule"] = "Wyłącz tę regułę"; +$a->strings["Enable this rule"] = "Włącz tę regułę"; +$a->strings["Edit this rule"] = "dytuj tę regułę"; +$a->strings["Edit the rule"] = "Edytuj regułę"; +$a->strings["Save this rule"] = "Zapisz tę regułę"; +$a->strings["Delete this rule"] = "Usuń tę regułę"; +$a->strings["Rule"] = "Reguła"; +$a->strings["Close"] = "Zamknij"; +$a->strings["Add new rule"] = "Dodaj nową regułę"; +$a->strings["Rule Name"] = "Nazwa reguły"; +$a->strings["Rule Expression"] = "Wyrażanie reguły"; +$a->strings["

Examples:

  • author_link == 'https://friendica.mrpetovan.com/profile/hypolite'
  • tags
"] = "

przykład

  • author_link == 'https://friendica.mrpetovan.com/profile/hypolite'
  • tagi
"; +$a->strings["Cancel"] = "Anuluj"; +$a->strings["You must be logged in to use this method"] = "Musisz być zalogowany, aby skorzystać z tej metody"; +$a->strings["Invalid form security token, please refresh the page."] = "Nieprawidłowy token zabezpieczający formularz, odśwież stronę."; +$a->strings["The rule name and expression are required."] = "Nazwa reguły i wyrażenie są wymagane."; +$a->strings["Rule successfully added"] = "Reguła została pomyślnie dodana"; +$a->strings["Rule doesn't exist or doesn't belong to you."] = "Reguła nie istnieje lub nie należy do ciebie."; +$a->strings["Rule successfully updated"] = "Reguła została pomyślnie zaktualizowana"; +$a->strings["Rule successfully deleted"] = "Reguła została pomyślnie usunięta"; +$a->strings["Missing argument: guid."] = "Brakujący argument: guid."; +$a->strings["Unknown post with guid: %s"] = "Nieznany post z guid:%s"; +$a->strings["Method not found"] = "Nie znaleziono metody"; -- 2.43.0 From 3a2ebf11c7c38a5566bb8ad5d5e1ab08939ffc4d Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 25 May 2018 11:05:14 +0200 Subject: [PATCH 34/43] RU translation xmpp addon THX Stanislav N --- xmpp/lang/ru/messages.po | 62 ++++++++++++++++++++++++++++++++++++++++ xmpp/lang/ru/strings.php | 17 +++++++++++ 2 files changed, 79 insertions(+) create mode 100644 xmpp/lang/ru/messages.po create mode 100644 xmpp/lang/ru/strings.php diff --git a/xmpp/lang/ru/messages.po b/xmpp/lang/ru/messages.po new file mode 100644 index 00000000..503ac01d --- /dev/null +++ b/xmpp/lang/ru/messages.po @@ -0,0 +1,62 @@ +# ADDON xmpp +# Copyright (C) +# This file is distributed under the same license as the Friendica xmpp addon package. +# +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-27 09:30+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Stanislav N. , 2018\n" +"Language-Team: Russian (https://www.transifex.com/Friendica/teams/12172/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#: xmpp.php:38 +msgid "XMPP settings updated." +msgstr "Настройки XMPP обновлены." + +#: xmpp.php:63 xmpp.php:67 +msgid "XMPP-Chat (Jabber)" +msgstr "XMPP чат (Jabber)" + +#: xmpp.php:71 +msgid "Enable Webchat" +msgstr "Включить веб-чат" + +#: xmpp.php:76 +msgid "Individual Credentials" +msgstr "Ваши данные для входа" + +#: xmpp.php:82 xmpp.php:108 +msgid "Jabber BOSH host" +msgstr "BOSH хост" + +#: xmpp.php:91 xmpp.php:107 +msgid "Save Settings" +msgstr "Сохранить настройки" + +#: xmpp.php:109 +msgid "Use central userbase" +msgstr "Использовать централизованную БД пользователей" + +#: xmpp.php:109 +msgid "" +"If enabled, users will automatically login to an ejabberd server that has to" +" be installed on this machine with synchronized credentials via the " +"\"auth_ejabberd.php\" script." +msgstr "" +"Если включено, то пользователи будут автоматически входить в учетную запись " +"на ejabberd сервере, который должен быть установлен на этом сервере. Учетные" +" данные должны быть синхронизированы с помощью скрипта " +"\"auth_ejabberd.php\"." + +#: xmpp.php:119 +msgid "Settings updated." +msgstr "Настройки обновлены." diff --git a/xmpp/lang/ru/strings.php b/xmpp/lang/ru/strings.php new file mode 100644 index 00000000..499cb981 --- /dev/null +++ b/xmpp/lang/ru/strings.php @@ -0,0 +1,17 @@ +=2 && $n%10<=4 && ($n%100<12 || $n%100>14) ? 1 : $n%10==0 || ($n%10>=5 && $n%10<=9) || ($n%100>=11 && $n%100<=14)? 2 : 3);; +}} +; +$a->strings["XMPP settings updated."] = "Настройки XMPP обновлены."; +$a->strings["XMPP-Chat (Jabber)"] = "XMPP чат (Jabber)"; +$a->strings["Enable Webchat"] = "Включить веб-чат"; +$a->strings["Individual Credentials"] = "Ваши данные для входа"; +$a->strings["Jabber BOSH host"] = "BOSH хост"; +$a->strings["Save Settings"] = "Сохранить настройки"; +$a->strings["Use central userbase"] = "Использовать централизованную БД пользователей"; +$a->strings["If enabled, users will automatically login to an ejabberd server that has to be installed on this machine with synchronized credentials via the \"auth_ejabberd.php\" script."] = "Если включено, то пользователи будут автоматически входить в учетную запись на ejabberd сервере, который должен быть установлен на этом сервере. Учетные данные должны быть синхронизированы с помощью скрипта \"auth_ejabberd.php\"."; +$a->strings["Settings updated."] = "Настройки обновлены."; -- 2.43.0 From 26d8ac9b8e78a144c54871e8997c802cd0d6a4d5 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 25 May 2018 11:09:14 +0200 Subject: [PATCH 35/43] RU translation langfilter addon THX Stanislav N --- langfilter/lang/ru/messages.po | 80 ++++++++++++++++++++++++++++++++++ langfilter/lang/ru/strings.php | 20 +++++++++ 2 files changed, 100 insertions(+) create mode 100644 langfilter/lang/ru/messages.po create mode 100644 langfilter/lang/ru/strings.php diff --git a/langfilter/lang/ru/messages.po b/langfilter/lang/ru/messages.po new file mode 100644 index 00000000..22a9f9f8 --- /dev/null +++ b/langfilter/lang/ru/messages.po @@ -0,0 +1,80 @@ +# ADDON langfilter +# Copyright (C) +# This file is distributed under the same license as the Friendica langfilter addon package. +# +# +# Translators: +# Stanislav N. , 2018 +msgid "" +msgstr "" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-01 11:11-0400\n" +"PO-Revision-Date: 2018-05-24 23:59+0000\n" +"Last-Translator: Stanislav N. \n" +"Language-Team: Russian (http://www.transifex.com/Friendica/friendica/language/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#: langfilter.php:58 +msgid "Language Filter" +msgstr "Языковой фильтр" + +#: langfilter.php:59 +msgid "" +"This addon tries to identify the language posts are writen in. If it does " +"not match any language specifed below, posts will be hidden by collapsing " +"them." +msgstr "Это дополнение пытается идентифицировать язык, на котором написаны посты. Если язык не соответствует ни одному, указанному ниже, то такие посты будут скрыты." + +#: langfilter.php:60 +msgid "Use the language filter" +msgstr "Использовать языковой фильтр" + +#: langfilter.php:61 +msgid "Able to read" +msgstr "Возможность читать" + +#: langfilter.php:61 +msgid "" +"List of abbreviations (iso2 codes) for languages you speak, comma separated." +" For example \"de,it\"." +msgstr "Список аббериватур (кодов по iso2) для языков, на которых вы говорите. Например, \"ru,en\"." + +#: langfilter.php:62 +msgid "Minimum confidence in language detection" +msgstr "Минимальная уверенность в детектировании языка" + +#: langfilter.php:62 +msgid "" +"Minimum confidence in language detection being correct, from 0 to 100. Posts" +" will not be filtered when the confidence of language detection is below " +"this percent value." +msgstr "Минимальная уверенность в правильном детектировании языка, от 0 до 100. Посты не будут скрыты, если уверенность в правильном детектировании языка в процентах ниже этого значения." + +#: langfilter.php:63 +msgid "Minimum length of message body" +msgstr "Минимальная длина тела сообщения" + +#: langfilter.php:63 +msgid "" +"Minimum number of characters in message body for filter to be used. Posts " +"shorter than this will not be filtered. Note: Language detection is " +"unreliable for short content (<200 characters)." +msgstr "Минимальное количество знаков в теле сообщения для применения фильтрации. Посты, длина которых меньше указанного значения, не будут отфильтрованы. Обратите внимание, что детектирование языка работает ненадежно для небольших постов (<200 символов)." + +#: langfilter.php:64 +msgid "Save Settings" +msgstr "Сохранить настройки" + +#: langfilter.php:105 +msgid "Language Filter Settings saved." +msgstr "Настройки фильтрации языков сохранены." + +#: langfilter.php:182 +#, php-format +msgid "Filtered language: %s" +msgstr "Отфильтрованный язык: %s" diff --git a/langfilter/lang/ru/strings.php b/langfilter/lang/ru/strings.php new file mode 100644 index 00000000..33c34e54 --- /dev/null +++ b/langfilter/lang/ru/strings.php @@ -0,0 +1,20 @@ +=2 && $n%10<=4 && ($n%100<12 || $n%100>14) ? 1 : $n%10==0 || ($n%10>=5 && $n%10<=9) || ($n%100>=11 && $n%100<=14)? 2 : 3);; +}} +; +$a->strings["Language Filter"] = "Языковой фильтр"; +$a->strings["This addon tries to identify the language posts are writen in. If it does not match any language specifed below, posts will be hidden by collapsing them."] = "Это дополнение пытается идентифицировать язык, на котором написаны посты. Если язык не соответствует ни одному, указанному ниже, то такие посты будут скрыты."; +$a->strings["Use the language filter"] = "Использовать языковой фильтр"; +$a->strings["Able to read"] = "Возможность читать"; +$a->strings["List of abbreviations (iso2 codes) for languages you speak, comma separated. For example \"de,it\"."] = "Список аббериватур (кодов по iso2) для языков, на которых вы говорите. Например, \"ru,en\"."; +$a->strings["Minimum confidence in language detection"] = "Минимальная уверенность в детектировании языка"; +$a->strings["Minimum confidence in language detection being correct, from 0 to 100. Posts will not be filtered when the confidence of language detection is below this percent value."] = "Минимальная уверенность в правильном детектировании языка, от 0 до 100. Посты не будут скрыты, если уверенность в правильном детектировании языка в процентах ниже этого значения."; +$a->strings["Minimum length of message body"] = "Минимальная длина тела сообщения"; +$a->strings["Minimum number of characters in message body for filter to be used. Posts shorter than this will not be filtered. Note: Language detection is unreliable for short content (<200 characters)."] = "Минимальное количество знаков в теле сообщения для применения фильтрации. Посты, длина которых меньше указанного значения, не будут отфильтрованы. Обратите внимание, что детектирование языка работает ненадежно для небольших постов (<200 символов)."; +$a->strings["Save Settings"] = "Сохранить настройки"; +$a->strings["Language Filter Settings saved."] = "Настройки фильтрации языков сохранены."; +$a->strings["Filtered language: %s"] = "Отфильтрованный язык: %s"; -- 2.43.0 From 5d711cf15aeb40d92d4a3eae4d009ee0e8c69089 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 25 May 2018 11:10:34 +0200 Subject: [PATCH 36/43] RU translation blockem addon THX Stanislav N --- blockem/lang/ru/messages.po | 30 ++++++++++++++++++------------ blockem/lang/ru/strings.php | 6 ++++-- 2 files changed, 22 insertions(+), 14 deletions(-) diff --git a/blockem/lang/ru/messages.po b/blockem/lang/ru/messages.po index d55bfa93..86d536c9 100644 --- a/blockem/lang/ru/messages.po +++ b/blockem/lang/ru/messages.po @@ -4,13 +4,13 @@ # # # Translators: -# Stanislav N. , 2017 +# Stanislav N. , 2017-2018 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-22 13:18+0200\n" -"PO-Revision-Date: 2017-04-08 17:01+0000\n" +"POT-Creation-Date: 2018-04-01 11:11-0400\n" +"PO-Revision-Date: 2018-05-25 00:00+0000\n" "Last-Translator: Stanislav N. \n" "Language-Team: Russian (http://www.transifex.com/Friendica/friendica/language/ru/)\n" "MIME-Version: 1.0\n" @@ -19,13 +19,19 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: blockem.php:53 blockem.php:57 +#: blockem.php:52 blockem.php:56 msgid "\"Blockem\"" msgstr "\"Blockem\"" +#: blockem.php:60 +msgid "" +"Hides user's content by collapsing posts. Also replaces their avatar with " +"generic image." +msgstr "Скрыть контент пользователя. Также заменяет его аватар изображением по-умолчанию." + #: blockem.php:61 -msgid "Comma separated profile URLS to block" -msgstr "Ссылки на профили, которые необходимо заблокировать, разделенные запятыми" +msgid "Comma separated profile URLS:" +msgstr "URL профилей, разделенные запятыми:" #: blockem.php:65 msgid "Save Settings" @@ -35,19 +41,19 @@ msgstr "Сохранить настройки" msgid "BLOCKEM Settings saved." msgstr "BLOCKEM Настройки сохранены." -#: blockem.php:142 +#: blockem.php:136 #, php-format -msgid "Blocked %s - Click to open/close" -msgstr "Заблокированные %s - Нажмите, чтобы открыть/закрыть" +msgid "Filtered user: %s" +msgstr "Отфильтрованный пользователь: %s" -#: blockem.php:197 +#: blockem.php:189 msgid "Unblock Author" msgstr "Разблокировать автора" -#: blockem.php:199 +#: blockem.php:191 msgid "Block Author" msgstr "Блокировать автора" -#: blockem.php:231 +#: blockem.php:223 msgid "blockem settings updated" msgstr "Настройки Blockem обновлены" diff --git a/blockem/lang/ru/strings.php b/blockem/lang/ru/strings.php index 3c47efd9..2a1b1498 100644 --- a/blockem/lang/ru/strings.php +++ b/blockem/lang/ru/strings.php @@ -2,14 +2,16 @@ if(! function_exists("string_plural_select_ru")) { function string_plural_select_ru($n){ + $n = intval($n); return ($n%10==1 && $n%100!=11 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<12 || $n%100>14) ? 1 : $n%10==0 || ($n%10>=5 && $n%10<=9) || ($n%100>=11 && $n%100<=14)? 2 : 3);; }} ; $a->strings["\"Blockem\""] = "\"Blockem\""; -$a->strings["Comma separated profile URLS to block"] = "Ссылки на профили, которые необходимо заблокировать, разделенные запятыми"; +$a->strings["Hides user's content by collapsing posts. Also replaces their avatar with generic image."] = "Скрыть контент пользователя. Также заменяет его аватар изображением по-умолчанию."; +$a->strings["Comma separated profile URLS:"] = "URL профилей, разделенные запятыми:"; $a->strings["Save Settings"] = "Сохранить настройки"; $a->strings["BLOCKEM Settings saved."] = "BLOCKEM Настройки сохранены."; -$a->strings["Blocked %s - Click to open/close"] = "Заблокированные %s - Нажмите, чтобы открыть/закрыть"; +$a->strings["Filtered user: %s"] = "Отфильтрованный пользователь: %s"; $a->strings["Unblock Author"] = "Разблокировать автора"; $a->strings["Block Author"] = "Блокировать автора"; $a->strings["blockem settings updated"] = "Настройки Blockem обновлены"; -- 2.43.0 From 56ed2bccb7bcebb28623aa56356839aa730e0691 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 25 May 2018 11:14:31 +0200 Subject: [PATCH 37/43] RU translation dwpost addon THX Stanislav N --- dwpost/lang/ru/messages.po | 6 +++--- dwpost/lang/ru/strings.php | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/dwpost/lang/ru/messages.po b/dwpost/lang/ru/messages.po index 93e400e5..572e10fe 100644 --- a/dwpost/lang/ru/messages.po +++ b/dwpost/lang/ru/messages.po @@ -4,13 +4,13 @@ # # # Translators: -# Stanislav N. , 2017 +# Stanislav N. , 2017-2018 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-27 05:01-0500\n" -"PO-Revision-Date: 2017-04-08 17:09+0000\n" +"PO-Revision-Date: 2018-05-25 00:01+0000\n" "Last-Translator: Stanislav N. \n" "Language-Team: Russian (http://www.transifex.com/Friendica/friendica/language/ru/)\n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgstr "Настройки сообщений Dreamwidth" #: dwpost.php:72 msgid "Enable dreamwidth Post Addon" -msgstr "Включить плагин отправки сообщений в Dreamwidth" +msgstr "Включить аддон dreamwidth Post" #: dwpost.php:77 msgid "dreamwidth username" diff --git a/dwpost/lang/ru/strings.php b/dwpost/lang/ru/strings.php index 7b6e5f47..5c351320 100644 --- a/dwpost/lang/ru/strings.php +++ b/dwpost/lang/ru/strings.php @@ -2,12 +2,13 @@ if(! function_exists("string_plural_select_ru")) { function string_plural_select_ru($n){ + $n = intval($n); return ($n%10==1 && $n%100!=11 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<12 || $n%100>14) ? 1 : $n%10==0 || ($n%10>=5 && $n%10<=9) || ($n%100>=11 && $n%100<=14)? 2 : 3);; }} ; $a->strings["Post to Dreamwidth"] = "Отправить в Dreamwidth"; $a->strings["Dreamwidth Post Settings"] = "Настройки сообщений Dreamwidth"; -$a->strings["Enable dreamwidth Post Addon"] = "Включить плагин отправки сообщений в Dreamwidth"; +$a->strings["Enable dreamwidth Post Addon"] = "Включить аддон dreamwidth Post"; $a->strings["dreamwidth username"] = "Имя пользователя Dreamwidth"; $a->strings["dreamwidth password"] = "Пароль Dreamwidth"; $a->strings["Post to dreamwidth by default"] = "Отправлять сообщения в Dreamwidth по умолчанию"; -- 2.43.0 From 12261915f8f239e668c3c0d46be562beb7d8858a Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 25 May 2018 11:23:03 +0200 Subject: [PATCH 38/43] RU translation gnot addon THX Stanislav N --- gnot/lang/ru/messages.po | 6 +++--- gnot/lang/ru/strings.php | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/gnot/lang/ru/messages.po b/gnot/lang/ru/messages.po index 9e63af41..751ef46c 100644 --- a/gnot/lang/ru/messages.po +++ b/gnot/lang/ru/messages.po @@ -4,13 +4,13 @@ # # # Translators: -# Stanislav N. , 2017 +# Stanislav N. , 2017-2018 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-27 05:01-0500\n" -"PO-Revision-Date: 2017-04-08 17:17+0000\n" +"PO-Revision-Date: 2018-05-25 00:02+0000\n" "Last-Translator: Stanislav N. \n" "Language-Team: Russian (http://www.transifex.com/Friendica/friendica/language/ru/)\n" "MIME-Version: 1.0\n" @@ -35,7 +35,7 @@ msgstr "Разрешить нитевание уведомлений о комм #: gnot.php:82 msgid "Enable this addon?" -msgstr "Включить этот плагин/аддон?" +msgstr "Включить этот аддон?" #: gnot.php:88 msgid "Submit" diff --git a/gnot/lang/ru/strings.php b/gnot/lang/ru/strings.php index 53d6583b..d49d0219 100644 --- a/gnot/lang/ru/strings.php +++ b/gnot/lang/ru/strings.php @@ -2,12 +2,13 @@ if(! function_exists("string_plural_select_ru")) { function string_plural_select_ru($n){ + $n = intval($n); return ($n%10==1 && $n%100!=11 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<12 || $n%100>14) ? 1 : $n%10==0 || ($n%10>=5 && $n%10<=9) || ($n%100>=11 && $n%100<=14)? 2 : 3);; }} ; $a->strings["Gnot settings updated."] = "Настройки Gnot обновлены."; $a->strings["Gnot Settings"] = "Настройки Gnot"; $a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = "Разрешить нитевание уведомлений о комментариях на Gmail и анонимизировать поле \"Тема\"."; -$a->strings["Enable this addon?"] = "Включить этот плагин/аддон?"; +$a->strings["Enable this addon?"] = "Включить этот аддон?"; $a->strings["Submit"] = "Добавить"; $a->strings["[Friendica:Notify] Comment to conversation #%d"] = "[Friendica:Notify] Комментарий в теме #%d"; -- 2.43.0 From 05943925dd4e7255464d7eb2068b11902ff57310 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sun, 27 May 2018 07:18:28 +0200 Subject: [PATCH 39/43] advancedcontentfilter FI translation added THX Kris --- advancedcontentfilter/lang/fi/messages.po | 164 ++++++++++++++++++++++ advancedcontentfilter/lang/fi/strings.php | 41 ++++++ 2 files changed, 205 insertions(+) create mode 100644 advancedcontentfilter/lang/fi/messages.po create mode 100644 advancedcontentfilter/lang/fi/strings.php diff --git a/advancedcontentfilter/lang/fi/messages.po b/advancedcontentfilter/lang/fi/messages.po new file mode 100644 index 00000000..ebd1d3e6 --- /dev/null +++ b/advancedcontentfilter/lang/fi/messages.po @@ -0,0 +1,164 @@ +# ADDON advancedcontentfilter +# Copyright (C) +# This file is distributed under the same license as the Friendica advancedcontentfilter addon package. +# +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-17 04:04+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Kris, 2018\n" +"Language-Team: Finnish (Finland) (https://www.transifex.com/Friendica/teams/12172/fi_FI/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi_FI\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: advancedcontentfilter.php:134 +#, php-format +msgid "Filtered by rule: %s" +msgstr "" + +#: advancedcontentfilter.php:147 advancedcontentfilter.php:204 +msgid "Advanced Content Filter" +msgstr "" + +#: advancedcontentfilter.php:203 +msgid "Back to Addon Settings" +msgstr "" + +#: advancedcontentfilter.php:205 +msgid "Add a Rule" +msgstr "Lisää sääntö" + +#: advancedcontentfilter.php:206 +msgid "Help" +msgstr "" + +#: advancedcontentfilter.php:207 +msgid "" +"Add and manage your personal content filter rules in this screen. Rules have" +" a name and an arbitrary expression that will be matched against post data. " +"For a complete reference of the available operations and variables, check " +"the help page." +msgstr "" + +#: advancedcontentfilter.php:208 +msgid "Your rules" +msgstr "Sääntösi" + +#: advancedcontentfilter.php:209 +msgid "" +"You have no rules yet! Start adding one by clicking on the button above next" +" to the title." +msgstr "" + +#: advancedcontentfilter.php:210 +msgid "Disabled" +msgstr "Ei käytössä" + +#: advancedcontentfilter.php:211 +msgid "Enabled" +msgstr "Käytössä" + +#: advancedcontentfilter.php:212 +msgid "Disable this rule" +msgstr "" + +#: advancedcontentfilter.php:213 +msgid "Enable this rule" +msgstr "Ota tämä sääntö käyttöön" + +#: advancedcontentfilter.php:214 +msgid "Edit this rule" +msgstr "Muokkaa tätä sääntöä" + +#: advancedcontentfilter.php:215 +msgid "Edit the rule" +msgstr "Muokkaa sääntöä" + +#: advancedcontentfilter.php:216 +msgid "Save this rule" +msgstr "Tallenna tämä sääntö" + +#: advancedcontentfilter.php:217 +msgid "Delete this rule" +msgstr "Poista tämä sääntö" + +#: advancedcontentfilter.php:218 +msgid "Rule" +msgstr "Sääntö" + +#: advancedcontentfilter.php:219 +msgid "Close" +msgstr "Sulje" + +#: advancedcontentfilter.php:220 +msgid "Add new rule" +msgstr "Lisää uusi sääntö" + +#: advancedcontentfilter.php:221 +msgid "Rule Name" +msgstr "" + +#: advancedcontentfilter.php:222 +msgid "Rule Expression" +msgstr "" + +#: advancedcontentfilter.php:223 +msgid "" +"

Examples:

  • author_link == "
    +"'https://friendica.mrpetovan.com/profile/hypolite'
  • tags
" +msgstr "" + +#: advancedcontentfilter.php:224 +msgid "Cancel" +msgstr "" + +#: advancedcontentfilter.php:290 advancedcontentfilter.php:301 +#: advancedcontentfilter.php:312 advancedcontentfilter.php:346 +#: advancedcontentfilter.php:375 advancedcontentfilter.php:396 +msgid "You must be logged in to use this method" +msgstr "" + +#: advancedcontentfilter.php:316 advancedcontentfilter.php:350 +#: advancedcontentfilter.php:379 +msgid "Invalid form security token, please refresh the page." +msgstr "" + +#: advancedcontentfilter.php:328 +msgid "The rule name and expression are required." +msgstr "" + +#: advancedcontentfilter.php:340 +msgid "Rule successfully added" +msgstr "Sääntö lisätty" + +#: advancedcontentfilter.php:354 advancedcontentfilter.php:383 +msgid "Rule doesn't exist or doesn't belong to you." +msgstr "" + +#: advancedcontentfilter.php:369 +msgid "Rule successfully updated" +msgstr "Sääntö päivitetty" + +#: advancedcontentfilter.php:390 +msgid "Rule successfully deleted" +msgstr "Sääntö poistettu" + +#: advancedcontentfilter.php:400 +msgid "Missing argument: guid." +msgstr "" + +#: advancedcontentfilter.php:406 +#, php-format +msgid "Unknown post with guid: %s" +msgstr "" + +#: src/middlewares.php:28 +msgid "Method not found" +msgstr "" diff --git a/advancedcontentfilter/lang/fi/strings.php b/advancedcontentfilter/lang/fi/strings.php new file mode 100644 index 00000000..17e3acc5 --- /dev/null +++ b/advancedcontentfilter/lang/fi/strings.php @@ -0,0 +1,41 @@ +strings["Filtered by rule: %s"] = ""; +$a->strings["Advanced Content Filter"] = ""; +$a->strings["Back to Addon Settings"] = ""; +$a->strings["Add a Rule"] = "Lisää sääntö"; +$a->strings["Help"] = ""; +$a->strings["Add and manage your personal content filter rules in this screen. Rules have a name and an arbitrary expression that will be matched against post data. For a complete reference of the available operations and variables, check the help page."] = ""; +$a->strings["Your rules"] = "Sääntösi"; +$a->strings["You have no rules yet! Start adding one by clicking on the button above next to the title."] = ""; +$a->strings["Disabled"] = "Ei käytössä"; +$a->strings["Enabled"] = "Käytössä"; +$a->strings["Disable this rule"] = ""; +$a->strings["Enable this rule"] = "Ota tämä sääntö käyttöön"; +$a->strings["Edit this rule"] = "Muokkaa tätä sääntöä"; +$a->strings["Edit the rule"] = "Muokkaa sääntöä"; +$a->strings["Save this rule"] = "Tallenna tämä sääntö"; +$a->strings["Delete this rule"] = "Poista tämä sääntö"; +$a->strings["Rule"] = "Sääntö"; +$a->strings["Close"] = "Sulje"; +$a->strings["Add new rule"] = "Lisää uusi sääntö"; +$a->strings["Rule Name"] = ""; +$a->strings["Rule Expression"] = ""; +$a->strings["

Examples:

  • author_link == 'https://friendica.mrpetovan.com/profile/hypolite'
  • tags
"] = ""; +$a->strings["Cancel"] = ""; +$a->strings["You must be logged in to use this method"] = ""; +$a->strings["Invalid form security token, please refresh the page."] = ""; +$a->strings["The rule name and expression are required."] = ""; +$a->strings["Rule successfully added"] = "Sääntö lisätty"; +$a->strings["Rule doesn't exist or doesn't belong to you."] = ""; +$a->strings["Rule successfully updated"] = "Sääntö päivitetty"; +$a->strings["Rule successfully deleted"] = "Sääntö poistettu"; +$a->strings["Missing argument: guid."] = ""; +$a->strings["Unknown post with guid: %s"] = ""; +$a->strings["Method not found"] = ""; -- 2.43.0 From 0c00f853babc3fe127d63ef77a6a7bd8cabf5d1c Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Mon, 28 May 2018 13:53:20 +0200 Subject: [PATCH 40/43] potential RU / RO hickup diasporacleaning --- diaspora/lang/ro/messages.po | 8 ++++---- diaspora/lang/ro/strings.php | 3 ++- diaspora/lang/ru/messages.po | 6 +++--- diaspora/lang/ru/strings.php | 2 +- 4 files changed, 10 insertions(+), 9 deletions(-) diff --git a/diaspora/lang/ro/messages.po b/diaspora/lang/ro/messages.po index 11c6b1ec..1a2203d3 100644 --- a/diaspora/lang/ro/messages.po +++ b/diaspora/lang/ro/messages.po @@ -9,9 +9,9 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-06-22 13:18+0200\n" -"PO-Revision-Date: 2014-07-08 11:48+0000\n" -"Last-Translator: Arian - Cazare Muncitori \n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/friendica/language/ro_RO/)\n" +"PO-Revision-Date: 2018-01-24 16:06+0000\n" +"Last-Translator: fabrixxm \n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/Friendica/friendica/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "Exportare pe Diaspora " #: diaspora.php:163 msgid "Enable Diaspora Post Addon" -msgstr "Activare Modul Postare pe Diaspora" +msgstr "" #: diaspora.php:168 msgid "Diaspora username" diff --git a/diaspora/lang/ro/strings.php b/diaspora/lang/ro/strings.php index a6798158..3173251c 100644 --- a/diaspora/lang/ro/strings.php +++ b/diaspora/lang/ro/strings.php @@ -2,13 +2,14 @@ if(! function_exists("string_plural_select_ro")) { function string_plural_select_ro($n){ + $n = intval($n); return ($n==1?0:((($n%100>19)||(($n%100==0)&&($n!=0)))?2:1));; }} ; $a->strings["Post to Diaspora"] = "Postați pe Diaspora"; $a->strings["Can't login to your Diaspora account. Please check username and password and ensure you used the complete address (including http...)"] = "Nu se poate face autentificarea pe contul dvs. Diaspora. Verificați numele de utilizator şi parola şi asigurați-vă că ați folosit adresa completă (inclusiv http ... )"; $a->strings["Diaspora Export"] = "Exportare pe Diaspora "; -$a->strings["Enable Diaspora Post Addon"] = "Activare Modul Postare pe Diaspora"; +$a->strings["Enable Diaspora Post Addon"] = ""; $a->strings["Diaspora username"] = "Utilizator Diaspora"; $a->strings["Diaspora password"] = "Parola Diaspora"; $a->strings["Diaspora site URL"] = "URL site Diaspora"; diff --git a/diaspora/lang/ru/messages.po b/diaspora/lang/ru/messages.po index 3534b0ac..34a8c323 100644 --- a/diaspora/lang/ru/messages.po +++ b/diaspora/lang/ru/messages.po @@ -4,13 +4,13 @@ # # # Translators: -# Stanislav N. , 2017 +# Stanislav N. , 2017-2018 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-06-22 13:18+0200\n" -"PO-Revision-Date: 2017-04-08 17:14+0000\n" +"PO-Revision-Date: 2018-05-25 00:01+0000\n" "Last-Translator: Stanislav N. \n" "Language-Team: Russian (http://www.transifex.com/Friendica/friendica/language/ru/)\n" "MIME-Version: 1.0\n" @@ -35,7 +35,7 @@ msgstr "Экспорт в Diaspora" #: diaspora.php:163 msgid "Enable Diaspora Post Addon" -msgstr "Включить плагин отправки сообщений в Diaspora" +msgstr "Включить аддон Diaspora Post" #: diaspora.php:168 msgid "Diaspora username" diff --git a/diaspora/lang/ru/strings.php b/diaspora/lang/ru/strings.php index 71c8ff1f..c414f622 100644 --- a/diaspora/lang/ru/strings.php +++ b/diaspora/lang/ru/strings.php @@ -9,7 +9,7 @@ function string_plural_select_ru($n){ $a->strings["Post to Diaspora"] = "Отправить в Diaspora"; $a->strings["Can't login to your Diaspora account. Please check username and password and ensure you used the complete address (including http...)"] = "Невозможно войти в вашу учетную запись Diaspora. Пожалуйста, проверьте имя пользователя, пароль и убедитесь, что вы ввели полный адрес пода (включая http/https)"; $a->strings["Diaspora Export"] = "Экспорт в Diaspora"; -$a->strings["Enable Diaspora Post Addon"] = "Включить плагин отправки сообщений в Diaspora"; +$a->strings["Enable Diaspora Post Addon"] = "Включить аддон Diaspora Post"; $a->strings["Diaspora username"] = "Имя пользователя Diaspora"; $a->strings["Diaspora password"] = "Пароль Diaspora"; $a->strings["Diaspora site URL"] = "URL пода Diaspora"; -- 2.43.0 From 83404d1f6310c21b62844ca84960e1958a648ceb Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Mon, 28 May 2018 13:54:42 +0200 Subject: [PATCH 41/43] IT translation update THX Fabio --- advancedcontentfilter/lang/it/messages.po | 173 ++++++++++++++++++++++ advancedcontentfilter/lang/it/strings.php | 41 +++++ blockem/lang/it/messages.po | 26 ++-- blockem/lang/it/strings.php | 3 +- langfilter/lang/it/messages.po | 54 ++++--- langfilter/lang/it/strings.php | 9 +- nsfw/lang/it/messages.po | 15 +- nsfw/lang/it/strings.php | 4 +- showmore/lang/it/messages.po | 22 +-- showmore/lang/it/strings.php | 3 +- 10 files changed, 293 insertions(+), 57 deletions(-) create mode 100644 advancedcontentfilter/lang/it/messages.po create mode 100644 advancedcontentfilter/lang/it/strings.php diff --git a/advancedcontentfilter/lang/it/messages.po b/advancedcontentfilter/lang/it/messages.po new file mode 100644 index 00000000..95f14912 --- /dev/null +++ b/advancedcontentfilter/lang/it/messages.po @@ -0,0 +1,173 @@ +# ADDON advancedcontentfilter +# Copyright (C) +# This file is distributed under the same license as the Friendica advancedcontentfilter addon package. +# +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-17 04:04+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: fabrixxm , 2018\n" +"Language-Team: Italian (https://www.transifex.com/Friendica/teams/12172/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: advancedcontentfilter.php:134 +#, php-format +msgid "Filtered by rule: %s" +msgstr "Filtrato dalla regola: %s" + +#: advancedcontentfilter.php:147 advancedcontentfilter.php:204 +msgid "Advanced Content Filter" +msgstr "Filtro Avanzato Contenuti" + +#: advancedcontentfilter.php:203 +msgid "Back to Addon Settings" +msgstr "Torna alle impostazioni del componente aggiuntivo" + +#: advancedcontentfilter.php:205 +msgid "Add a Rule" +msgstr "Aggiungi una regola" + +#: advancedcontentfilter.php:206 +msgid "Help" +msgstr "Aiuto" + +#: advancedcontentfilter.php:207 +msgid "" +"Add and manage your personal content filter rules in this screen. Rules have" +" a name and an arbitrary expression that will be matched against post data. " +"For a complete reference of the available operations and variables, check " +"the help page." +msgstr "" +"Aggiungi e gestisci le tue regole personali di filtro contenuti in questa " +"schermata. Le regole hanno un nome e un'espressione arbitraria che sarà " +"confrontata con i dati del messaggio. Per un elenco completo delle " +"operazioni disponibili, controlla la pagina di aiuto." + +#: advancedcontentfilter.php:208 +msgid "Your rules" +msgstr "Le tue regole" + +#: advancedcontentfilter.php:209 +msgid "" +"You have no rules yet! Start adding one by clicking on the button above next" +" to the title." +msgstr "" +"Non hai ancora nessuna regola! Aggiungine una cliccando sul bottone qui " +"sopra a fianco al titolo." + +#: advancedcontentfilter.php:210 +msgid "Disabled" +msgstr "Disabilitato" + +#: advancedcontentfilter.php:211 +msgid "Enabled" +msgstr "Abilitato" + +#: advancedcontentfilter.php:212 +msgid "Disable this rule" +msgstr "Diabilita questa regola" + +#: advancedcontentfilter.php:213 +msgid "Enable this rule" +msgstr "Abilita questa regola" + +#: advancedcontentfilter.php:214 +msgid "Edit this rule" +msgstr "Modifica questa regola" + +#: advancedcontentfilter.php:215 +msgid "Edit the rule" +msgstr "Modifica la regola" + +#: advancedcontentfilter.php:216 +msgid "Save this rule" +msgstr "Salva questa regola" + +#: advancedcontentfilter.php:217 +msgid "Delete this rule" +msgstr "Elimina questa regola" + +#: advancedcontentfilter.php:218 +msgid "Rule" +msgstr "Regola" + +#: advancedcontentfilter.php:219 +msgid "Close" +msgstr "Chiudi" + +#: advancedcontentfilter.php:220 +msgid "Add new rule" +msgstr "Aggiungi nuova regola" + +#: advancedcontentfilter.php:221 +msgid "Rule Name" +msgstr "Nome Regola" + +#: advancedcontentfilter.php:222 +msgid "Rule Expression" +msgstr "Espressione Regola" + +#: advancedcontentfilter.php:223 +msgid "" +"

Examples:

  • author_link == "
    +"'https://friendica.mrpetovan.com/profile/hypolite'
  • tags
" +msgstr "" +"

Esempi:

  • author_link == "
    +"'https://friendica.mrpetovan.com/profile/hypolite'
  • tags
" + +#: advancedcontentfilter.php:224 +msgid "Cancel" +msgstr "Annulla" + +#: advancedcontentfilter.php:290 advancedcontentfilter.php:301 +#: advancedcontentfilter.php:312 advancedcontentfilter.php:346 +#: advancedcontentfilter.php:375 advancedcontentfilter.php:396 +msgid "You must be logged in to use this method" +msgstr "Devi essere autenticato per usare questo metodo" + +#: advancedcontentfilter.php:316 advancedcontentfilter.php:350 +#: advancedcontentfilter.php:379 +msgid "Invalid form security token, please refresh the page." +msgstr "Token di sicurezza invalido, aggiorna la pagina." + +#: advancedcontentfilter.php:328 +msgid "The rule name and expression are required." +msgstr "Il nome e l'espressione della regola sono richiesti." + +#: advancedcontentfilter.php:340 +msgid "Rule successfully added" +msgstr "Regola aggiunta con successo" + +#: advancedcontentfilter.php:354 advancedcontentfilter.php:383 +msgid "Rule doesn't exist or doesn't belong to you." +msgstr "La regola non esiste o non ti appartiene." + +#: advancedcontentfilter.php:369 +msgid "Rule successfully updated" +msgstr "Regola aggiornata con successo" + +#: advancedcontentfilter.php:390 +msgid "Rule successfully deleted" +msgstr "Regola eliminata con successo" + +#: advancedcontentfilter.php:400 +msgid "Missing argument: guid." +msgstr "Argomento mancante: guid." + +#: advancedcontentfilter.php:406 +#, php-format +msgid "Unknown post with guid: %s" +msgstr "Messaggio con guid %s sconosciuto" + +#: src/middlewares.php:28 +msgid "Method not found" +msgstr "Metodo non trovato" diff --git a/advancedcontentfilter/lang/it/strings.php b/advancedcontentfilter/lang/it/strings.php new file mode 100644 index 00000000..b5ef1f08 --- /dev/null +++ b/advancedcontentfilter/lang/it/strings.php @@ -0,0 +1,41 @@ +strings["Filtered by rule: %s"] = "Filtrato dalla regola: %s"; +$a->strings["Advanced Content Filter"] = "Filtro Avanzato Contenuti"; +$a->strings["Back to Addon Settings"] = "Torna alle impostazioni del componente aggiuntivo"; +$a->strings["Add a Rule"] = "Aggiungi una regola"; +$a->strings["Help"] = "Aiuto"; +$a->strings["Add and manage your personal content filter rules in this screen. Rules have a name and an arbitrary expression that will be matched against post data. For a complete reference of the available operations and variables, check the help page."] = "Aggiungi e gestisci le tue regole personali di filtro contenuti in questa schermata. Le regole hanno un nome e un'espressione arbitraria che sarà confrontata con i dati del messaggio. Per un elenco completo delle operazioni disponibili, controlla la pagina di aiuto."; +$a->strings["Your rules"] = "Le tue regole"; +$a->strings["You have no rules yet! Start adding one by clicking on the button above next to the title."] = "Non hai ancora nessuna regola! Aggiungine una cliccando sul bottone qui sopra a fianco al titolo."; +$a->strings["Disabled"] = "Disabilitato"; +$a->strings["Enabled"] = "Abilitato"; +$a->strings["Disable this rule"] = "Diabilita questa regola"; +$a->strings["Enable this rule"] = "Abilita questa regola"; +$a->strings["Edit this rule"] = "Modifica questa regola"; +$a->strings["Edit the rule"] = "Modifica la regola"; +$a->strings["Save this rule"] = "Salva questa regola"; +$a->strings["Delete this rule"] = "Elimina questa regola"; +$a->strings["Rule"] = "Regola"; +$a->strings["Close"] = "Chiudi"; +$a->strings["Add new rule"] = "Aggiungi nuova regola"; +$a->strings["Rule Name"] = "Nome Regola"; +$a->strings["Rule Expression"] = "Espressione Regola"; +$a->strings["

Examples:

  • author_link == 'https://friendica.mrpetovan.com/profile/hypolite'
  • tags
"] = "

Esempi:

  • author_link == 'https://friendica.mrpetovan.com/profile/hypolite'
  • tags
"; +$a->strings["Cancel"] = "Annulla"; +$a->strings["You must be logged in to use this method"] = "Devi essere autenticato per usare questo metodo"; +$a->strings["Invalid form security token, please refresh the page."] = "Token di sicurezza invalido, aggiorna la pagina."; +$a->strings["The rule name and expression are required."] = "Il nome e l'espressione della regola sono richiesti."; +$a->strings["Rule successfully added"] = "Regola aggiunta con successo"; +$a->strings["Rule doesn't exist or doesn't belong to you."] = "La regola non esiste o non ti appartiene."; +$a->strings["Rule successfully updated"] = "Regola aggiornata con successo"; +$a->strings["Rule successfully deleted"] = "Regola eliminata con successo"; +$a->strings["Missing argument: guid."] = "Argomento mancante: guid."; +$a->strings["Unknown post with guid: %s"] = "Messaggio con guid %s sconosciuto"; +$a->strings["Method not found"] = "Metodo non trovato"; diff --git a/blockem/lang/it/messages.po b/blockem/lang/it/messages.po index ea72109e..5d8132ca 100644 --- a/blockem/lang/it/messages.po +++ b/blockem/lang/it/messages.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-02-09 13:00+0100\n" -"PO-Revision-Date: 2018-03-19 13:14+0000\n" +"POT-Creation-Date: 2018-04-01 11:11-0400\n" +"PO-Revision-Date: 2018-05-28 09:04+0000\n" "Last-Translator: fabrixxm \n" "Language-Team: Italian (http://www.transifex.com/Friendica/friendica/language/it/)\n" "MIME-Version: 1.0\n" @@ -19,41 +19,41 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: blockem.php:51 blockem.php:55 +#: blockem.php:52 blockem.php:56 msgid "\"Blockem\"" msgstr "\"Blockem\"" -#: blockem.php:59 +#: blockem.php:60 msgid "" "Hides user's content by collapsing posts. Also replaces their avatar with " "generic image." msgstr "Nascondi il contenuto degli utenti collassando i messaggi. Sostituisce anche gli avatar con un'immagine generica." -#: blockem.php:60 +#: blockem.php:61 msgid "Comma separated profile URLS:" msgstr "URL profili separati da virgola:" -#: blockem.php:64 +#: blockem.php:65 msgid "Save Settings" msgstr "Salva Impostazioni" -#: blockem.php:77 +#: blockem.php:78 msgid "BLOCKEM Settings saved." msgstr "Impostazioni BLOCKEM salvate." -#: blockem.php:140 +#: blockem.php:136 #, php-format -msgid "Hidden content by %s - Click to open/close" -msgstr "Contenuto di %s nascosto - Clicca per aprire/chiudere" +msgid "Filtered user: %s" +msgstr "Utente filtrato: %s" -#: blockem.php:193 +#: blockem.php:189 msgid "Unblock Author" msgstr "Sblocca autore" -#: blockem.php:195 +#: blockem.php:191 msgid "Block Author" msgstr "Blocca autore" -#: blockem.php:227 +#: blockem.php:223 msgid "blockem settings updated" msgstr "Impostazioni 'blockem' aggiornate." diff --git a/blockem/lang/it/strings.php b/blockem/lang/it/strings.php index f3997eda..08a73955 100644 --- a/blockem/lang/it/strings.php +++ b/blockem/lang/it/strings.php @@ -2,6 +2,7 @@ if(! function_exists("string_plural_select_it")) { function string_plural_select_it($n){ + $n = intval($n); return ($n != 1);; }} ; @@ -10,7 +11,7 @@ $a->strings["Hides user's content by collapsing posts. Also replaces their avata $a->strings["Comma separated profile URLS:"] = "URL profili separati da virgola:"; $a->strings["Save Settings"] = "Salva Impostazioni"; $a->strings["BLOCKEM Settings saved."] = "Impostazioni BLOCKEM salvate."; -$a->strings["Hidden content by %s - Click to open/close"] = "Contenuto di %s nascosto - Clicca per aprire/chiudere"; +$a->strings["Filtered user: %s"] = "Utente filtrato: %s"; $a->strings["Unblock Author"] = "Sblocca autore"; $a->strings["Block Author"] = "Blocca autore"; $a->strings["blockem settings updated"] = "Impostazioni 'blockem' aggiornate."; diff --git a/langfilter/lang/it/messages.po b/langfilter/lang/it/messages.po index 452632dc..0f31d911 100644 --- a/langfilter/lang/it/messages.po +++ b/langfilter/lang/it/messages.po @@ -4,14 +4,14 @@ # # # Translators: -# fabrixxm , 2015 +# fabrixxm , 2015,2018 # Sandro Santilli , 2015 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-22 15:18+0200\n" -"PO-Revision-Date: 2017-09-22 12:16+0000\n" +"POT-Creation-Date: 2018-04-01 11:11-0400\n" +"PO-Revision-Date: 2018-05-28 09:01+0000\n" "Last-Translator: fabrixxm \n" "Language-Team: Italian (http://www.transifex.com/Friendica/friendica/language/it/)\n" "MIME-Version: 1.0\n" @@ -20,52 +20,62 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: langfilter.php:44 +#: langfilter.php:58 msgid "Language Filter" msgstr "Filtro Lingua" -#: langfilter.php:45 +#: langfilter.php:59 msgid "" -"This addon tries to identify the language of a postings. If it does not " -"match any language spoken by you (see below) the posting will be collapsed. " -"Remember detecting the language is not perfect, especially with short " -"postings." -msgstr "Questo plugin prova ad identificare la lingua usata in un messaggio. Se questa non corrisponde a una delle lingue da te parlata (vedi sotto), il messaggio verrà nascosto. Ricorda che la rilevazione della lingua non è perfetta, specie con i messaggi corti." +"This addon tries to identify the language posts are writen in. If it does " +"not match any language specifed below, posts will be hidden by collapsing " +"them." +msgstr "Questo componente aggiuntivo prova ad identificare la lingua usata in un messaggio. Se questa non corrisponde a una delle lingue specificata qui sotto, il messaggio verrà collassato. " -#: langfilter.php:46 +#: langfilter.php:60 msgid "Use the language filter" msgstr "Usa il filtro lingua" -#: langfilter.php:47 -msgid "I speak" -msgstr "Parlo" +#: langfilter.php:61 +msgid "Able to read" +msgstr "In grado di leggere" -#: langfilter.php:47 +#: langfilter.php:61 msgid "" "List of abbreviations (iso2 codes) for languages you speak, comma separated." " For example \"de,it\"." msgstr "Lista di abbreviazioni (codici iso2) per le lingue che parli, separate da virgola. Per esempio \"it,de\"" -#: langfilter.php:48 +#: langfilter.php:62 msgid "Minimum confidence in language detection" msgstr "Fiducia minima nel rilevamento della lingua" -#: langfilter.php:48 +#: langfilter.php:62 msgid "" "Minimum confidence in language detection being correct, from 0 to 100. Posts" " will not be filtered when the confidence of language detection is below " "this percent value." msgstr "Fiducia minima che il rilevamento della lingua sia corretto, da 0 a 100. I post non saranno filtrati quando la fiducia nel rilevamento della lingua è sotto questo valore percentuale." -#: langfilter.php:49 +#: langfilter.php:63 +msgid "Minimum length of message body" +msgstr "Lunghezza minima del corpo del messaggio" + +#: langfilter.php:63 +msgid "" +"Minimum number of characters in message body for filter to be used. Posts " +"shorter than this will not be filtered. Note: Language detection is " +"unreliable for short content (<200 characters)." +msgstr "Numero di caratteri minimo perché il filtro venga usato. I messaggio più corti non saranno filtrati. Nota: la rilevazione della lingua non è affidabile con messaggi brevi (<200 caratteri)" + +#: langfilter.php:64 msgid "Save Settings" msgstr "Salva Impostazioni" -#: langfilter.php:73 +#: langfilter.php:105 msgid "Language Filter Settings saved." msgstr "Impostazioni Filtro Lingua salvate." -#: langfilter.php:123 +#: langfilter.php:182 #, php-format -msgid "unspoken language %s - Click to open/close" -msgstr "lingua non parlata %s - Clicca per aprire/chiudere" +msgid "Filtered language: %s" +msgstr "Lingua filtrata: %s" diff --git a/langfilter/lang/it/strings.php b/langfilter/lang/it/strings.php index ecb7b8d3..2d7c282a 100644 --- a/langfilter/lang/it/strings.php +++ b/langfilter/lang/it/strings.php @@ -2,16 +2,19 @@ if(! function_exists("string_plural_select_it")) { function string_plural_select_it($n){ + $n = intval($n); return ($n != 1);; }} ; $a->strings["Language Filter"] = "Filtro Lingua"; -$a->strings["This addon tries to identify the language of a postings. If it does not match any language spoken by you (see below) the posting will be collapsed. Remember detecting the language is not perfect, especially with short postings."] = "Questo plugin prova ad identificare la lingua usata in un messaggio. Se questa non corrisponde a una delle lingue da te parlata (vedi sotto), il messaggio verrà nascosto. Ricorda che la rilevazione della lingua non è perfetta, specie con i messaggi corti."; +$a->strings["This addon tries to identify the language posts are writen in. If it does not match any language specifed below, posts will be hidden by collapsing them."] = "Questo componente aggiuntivo prova ad identificare la lingua usata in un messaggio. Se questa non corrisponde a una delle lingue specificata qui sotto, il messaggio verrà collassato. "; $a->strings["Use the language filter"] = "Usa il filtro lingua"; -$a->strings["I speak"] = "Parlo"; +$a->strings["Able to read"] = "In grado di leggere"; $a->strings["List of abbreviations (iso2 codes) for languages you speak, comma separated. For example \"de,it\"."] = "Lista di abbreviazioni (codici iso2) per le lingue che parli, separate da virgola. Per esempio \"it,de\""; $a->strings["Minimum confidence in language detection"] = "Fiducia minima nel rilevamento della lingua"; $a->strings["Minimum confidence in language detection being correct, from 0 to 100. Posts will not be filtered when the confidence of language detection is below this percent value."] = "Fiducia minima che il rilevamento della lingua sia corretto, da 0 a 100. I post non saranno filtrati quando la fiducia nel rilevamento della lingua è sotto questo valore percentuale."; +$a->strings["Minimum length of message body"] = "Lunghezza minima del corpo del messaggio"; +$a->strings["Minimum number of characters in message body for filter to be used. Posts shorter than this will not be filtered. Note: Language detection is unreliable for short content (<200 characters)."] = "Numero di caratteri minimo perché il filtro venga usato. I messaggio più corti non saranno filtrati. Nota: la rilevazione della lingua non è affidabile con messaggi brevi (<200 caratteri)"; $a->strings["Save Settings"] = "Salva Impostazioni"; $a->strings["Language Filter Settings saved."] = "Impostazioni Filtro Lingua salvate."; -$a->strings["unspoken language %s - Click to open/close"] = "lingua non parlata %s - Clicca per aprire/chiudere"; +$a->strings["Filtered language: %s"] = "Lingua filtrata: %s"; diff --git a/nsfw/lang/it/messages.po b/nsfw/lang/it/messages.po index dae2b817..abb605cd 100644 --- a/nsfw/lang/it/messages.po +++ b/nsfw/lang/it/messages.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-03-15 17:54+0700\n" -"PO-Revision-Date: 2018-03-19 13:18+0000\n" +"POT-Creation-Date: 2018-04-01 11:11-0400\n" +"PO-Revision-Date: 2018-05-28 09:01+0000\n" "Last-Translator: fabrixxm \n" "Language-Team: Italian (http://www.transifex.com/Friendica/friendica/language/it/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,12 @@ msgstr "Utilizza /espressione/ per inserire espressioni regolari" msgid "NSFW Settings saved." msgstr "Impostazioni NSFW salvate." -#: nsfw.php:167 +#: nsfw.php:162 #, php-format -msgid "%s - Click to open/close" -msgstr "%s - Clicca per aprire / chiudere" +msgid "Filtered tag: %s" +msgstr "Tag filtrato: %s" + +#: nsfw.php:164 +#, php-format +msgid "Filtered word: %s" +msgstr "Parola filtrata: %s" diff --git a/nsfw/lang/it/strings.php b/nsfw/lang/it/strings.php index 886299af..18ecfb16 100644 --- a/nsfw/lang/it/strings.php +++ b/nsfw/lang/it/strings.php @@ -2,6 +2,7 @@ if(! function_exists("string_plural_select_it")) { function string_plural_select_it($n){ + $n = intval($n); return ($n != 1);; }} ; @@ -12,4 +13,5 @@ $a->strings["Comma separated list of keywords to hide"] = "Elenco separato da vi $a->strings["Save Settings"] = "Salva Impostazioni"; $a->strings["Use /expression/ to provide regular expressions"] = "Utilizza /espressione/ per inserire espressioni regolari"; $a->strings["NSFW Settings saved."] = "Impostazioni NSFW salvate."; -$a->strings["%s - Click to open/close"] = "%s - Clicca per aprire / chiudere"; +$a->strings["Filtered tag: %s"] = "Tag filtrato: %s"; +$a->strings["Filtered word: %s"] = "Parola filtrata: %s"; diff --git a/showmore/lang/it/messages.po b/showmore/lang/it/messages.po index 1a565540..dd619e49 100644 --- a/showmore/lang/it/messages.po +++ b/showmore/lang/it/messages.po @@ -4,13 +4,13 @@ # # # Translators: -# fabrixxm , 2014-2015 +# fabrixxm , 2014-2015,2018 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-27 05:01-0500\n" -"PO-Revision-Date: 2017-09-20 06:08+0000\n" +"POT-Creation-Date: 2018-04-01 11:11-0400\n" +"PO-Revision-Date: 2018-05-28 09:04+0000\n" "Last-Translator: fabrixxm \n" "Language-Team: Italian (http://www.transifex.com/Friendica/friendica/language/it/)\n" "MIME-Version: 1.0\n" @@ -19,26 +19,26 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: showmore.php:38 +#: showmore.php:41 showmore.php:45 msgid "\"Show more\" Settings" msgstr "Impostazioni \"Mostra altro\"" -#: showmore.php:41 +#: showmore.php:50 msgid "Enable Show More" msgstr "Abilita \"Mostra altro\"" -#: showmore.php:44 +#: showmore.php:53 msgid "Cutting posts after how much characters" msgstr "Dopo quanti caratteri tagliare il messaggio" -#: showmore.php:48 -msgid "Submit" -msgstr "Invia" +#: showmore.php:57 +msgid "Save Settings" +msgstr "Salva Impostazioni" -#: showmore.php:65 +#: showmore.php:74 msgid "Show More Settings saved." msgstr "Impostazioni \"Mostra altro\" salvate." -#: showmore.php:119 +#: showmore.php:134 msgid "show more" msgstr "mostra di più" diff --git a/showmore/lang/it/strings.php b/showmore/lang/it/strings.php index d15a41b5..c6ed91bf 100644 --- a/showmore/lang/it/strings.php +++ b/showmore/lang/it/strings.php @@ -2,12 +2,13 @@ if(! function_exists("string_plural_select_it")) { function string_plural_select_it($n){ + $n = intval($n); return ($n != 1);; }} ; $a->strings["\"Show more\" Settings"] = "Impostazioni \"Mostra altro\""; $a->strings["Enable Show More"] = "Abilita \"Mostra altro\""; $a->strings["Cutting posts after how much characters"] = "Dopo quanti caratteri tagliare il messaggio"; -$a->strings["Submit"] = "Invia"; +$a->strings["Save Settings"] = "Salva Impostazioni"; $a->strings["Show More Settings saved."] = "Impostazioni \"Mostra altro\" salvate."; $a->strings["show more"] = "mostra di più"; -- 2.43.0 From 5c668bd6e9f22b657ca31245da3bf8df7a0cffb0 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 29 May 2018 05:24:25 +0000 Subject: [PATCH 42/43] Changed function that will be private in the future --- pumpio/pumpio.php | 22 ++++++++-------------- 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/pumpio/pumpio.php b/pumpio/pumpio.php index 8426c535..b45e7670 100644 --- a/pumpio/pumpio.php +++ b/pumpio/pumpio.php @@ -1042,21 +1042,15 @@ function pumpio_get_contact($uid, $contact, $no_insert = false) { function pumpio_dodelete(&$a, $uid, $self, $post, $own_id) { // Two queries for speed issues - $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1", - dbesc($post->object->id), - intval($uid) - ); + $condition = ['uri' => $post->object->id, 'uid' => $uid]; + if (dba::exists('item', $condition)) { + return Item::delete($condition); + } - if (count($r)) - return Item::deleteById($r[0]["id"]); - - $r = q("SELECT * FROM `item` WHERE `extid` = '%s' AND `uid` = %d LIMIT 1", - dbesc($post->object->id), - intval($uid) - ); - - if (count($r)) - return Item::deleteById($r[0]["id"]); + $condition = ['extid' => $post->object->id, 'uid' => $uid]; + if (dba::exists('item', $condition)) { + return Item::delete($condition); + } } function pumpio_dopost(&$a, $client, $uid, $self, $post, $own_id, $threadcompletion = true) { -- 2.43.0 From 476302afc51c69135c27ee31bdb72d9cdfe777d9 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 29 May 2018 12:36:44 +0000 Subject: [PATCH 43/43] Return values --- pumpio/pumpio.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pumpio/pumpio.php b/pumpio/pumpio.php index b45e7670..2da35abc 100644 --- a/pumpio/pumpio.php +++ b/pumpio/pumpio.php @@ -1044,13 +1044,16 @@ function pumpio_dodelete(&$a, $uid, $self, $post, $own_id) { // Two queries for speed issues $condition = ['uri' => $post->object->id, 'uid' => $uid]; if (dba::exists('item', $condition)) { - return Item::delete($condition); + Item::delete($condition); + return true; } $condition = ['extid' => $post->object->id, 'uid' => $uid]; if (dba::exists('item', $condition)) { - return Item::delete($condition); + Item::delete($condition); + return true; } + return false; } function pumpio_dopost(&$a, $client, $uid, $self, $post, $own_id, $threadcompletion = true) { -- 2.43.0