From b3eb963a2bdff7735b32085f30c9a715d14482f0 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 12 Mar 2016 07:42:57 +0100 Subject: [PATCH 01/24] fromgplus: Add keywords to imported posts --- fromgplus/fromgplus.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/fromgplus/fromgplus.php b/fromgplus/fromgplus.php index e0fdc705..d21ece2b 100644 --- a/fromgplus/fromgplus.php +++ b/fromgplus/fromgplus.php @@ -10,6 +10,7 @@ define('FROMGPLUS_DEFAULT_POLL_INTERVAL', 30); // given in minutes require_once('mod/share.php'); +require_once('mod/parse_url.php'); function fromgplus_install() { register_hook('connector_settings', 'addon/fromgplus/fromgplus.php', 'fromgplus_addon_settings'); @@ -323,6 +324,11 @@ function fromgplus_handleattachments($a, $uid, $item, $displaytext, $shared) { if ($quote != "") $pagedata["text"] = $quote; + // Add Keywords to page link + $data = parseurl_getsiteinfo_cached($pagedata["url"], true); + if (isset($data["keywords"])) + $pagedata["keywords"] = $data["keywords"]; + break; case "photo": -- 2.43.4 From 1ffa5387c5dd61dc8352de898b4c8ea0c1f8a591 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 15 Sep 2016 09:52:30 +0000 Subject: [PATCH 02/24] Rendertime: Ignorelist for page where rendertime doesn't look good. --- rendertime/rendertime.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rendertime/rendertime.php b/rendertime/rendertime.php index 548775a1..38b50a53 100755 --- a/rendertime/rendertime.php +++ b/rendertime/rendertime.php @@ -26,7 +26,10 @@ function rendertime_page_end(&$a, &$o) { $duration = microtime(true)-$a->performance["start"]; - if (is_site_admin() AND ($_GET["mode"] != "minimal") AND !$a->is_mobile AND !$a->is_tablet) { + $ignored_modules = array("fbrowser"); + $ignored = in_array($a->module, $ignored_modules); + + if (is_site_admin() AND ($_GET["mode"] != "minimal") AND !$a->is_mobile AND !$a->is_tablet AND !$ignored) { $o = $o.'
'.sprintf(t("Database: %s, Network: %s, Rendering: %s, Session: %s, I/O: %s, Other: %s, Total: %s"), round($a->performance["database"], 3), round($a->performance["network"], 3), -- 2.43.4 From afc875627e527cf26de26cd3c4812afba86924ca Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Wed, 21 Sep 2016 11:52:03 +0200 Subject: [PATCH 03/24] PT BR translation for curweather addon --- curweather/lang/pt-br/messages.po | 9 +++++---- curweather/lang/pt-br/strings.php | 4 ++-- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/curweather/lang/pt-br/messages.po b/curweather/lang/pt-br/messages.po index 16f9e2b1..810875d8 100644 --- a/curweather/lang/pt-br/messages.po +++ b/curweather/lang/pt-br/messages.po @@ -4,14 +4,15 @@ # # # Translators: +# André Alves , 2016 # Beatriz Vital , 2016 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-12 08:10+0100\n" -"PO-Revision-Date: 2016-08-16 12:28+0000\n" -"Last-Translator: Beatriz Vital \n" +"PO-Revision-Date: 2016-09-18 20:49+0000\n" +"Last-Translator: André Alves \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/Friendica/friendica/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,7 +26,7 @@ msgstr "Houve um erro na obtenção de dados do clima\\nErro:" #: curweather.php:111 curweather.php:172 msgid "Current Weather" -msgstr "" +msgstr "Clima atual" #: curweather.php:118 msgid "Relative Humidity" @@ -61,7 +62,7 @@ msgstr "em OpenWeatherMap" #: curweather.php:146 msgid "Current Weather settings updated." -msgstr "" +msgstr "Atualização das Configurações de clima." #: curweather.php:161 msgid "No APPID found, please contact your admin to optain one." diff --git a/curweather/lang/pt-br/strings.php b/curweather/lang/pt-br/strings.php index d25df2a9..f50bc4a0 100644 --- a/curweather/lang/pt-br/strings.php +++ b/curweather/lang/pt-br/strings.php @@ -6,7 +6,7 @@ function string_plural_select_pt_br($n){ }} ; $a->strings["Error fetching weather data.\\nError was: "] = "Houve um erro na obtenção de dados do clima\\nErro:"; -$a->strings["Current Weather"] = ""; +$a->strings["Current Weather"] = "Clima atual"; $a->strings["Relative Humidity"] = "Umidade relativa"; $a->strings["Pressure"] = "Pressão"; $a->strings["Wind"] = "Vento"; @@ -15,7 +15,7 @@ $a->strings["Data by"] = "Dados de"; $a->strings["Show on map"] = "Mostrar no mapa"; $a->strings["There was a problem accessing the weather data. But have a look"] = "Houve um problema no acesso aos dados do clima. Mas dê uma olhada"; $a->strings["at OpenWeatherMap"] = "em OpenWeatherMap"; -$a->strings["Current Weather settings updated."] = ""; +$a->strings["Current Weather settings updated."] = "Atualização das Configurações de clima."; $a->strings["No APPID found, please contact your admin to optain one."] = "Não foi encontrado nenhum AppID; fale com seu administrador para receber um."; $a->strings["Save Settings"] = "Salvar Configurações"; $a->strings["Settings"] = "Configurações"; -- 2.43.4 From 17f29ae08c46067a40716ce5433ac80fbddd3e34 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sat, 24 Sep 2016 08:03:51 +0200 Subject: [PATCH 04/24] correction of typos --- curweather/curweather.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/curweather/curweather.php b/curweather/curweather.php index e416ba67..71d95e46 100644 --- a/curweather/curweather.php +++ b/curweather/curweather.php @@ -158,7 +158,7 @@ function curweather_plugin_settings(&$a,&$s) { $curweather_units = get_pconfig(local_user(), 'curweather', 'curweather_units'); $appid = get_config('curweather','appid'); if ($appid=="") { - $noappidtext = t('No APPID found, please contact your admin to optain one.'); + $noappidtext = t('No APPID found, please contact your admin to obtain one.'); } else { $noappidtext = ''; } @@ -173,7 +173,7 @@ function curweather_plugin_settings(&$a,&$s) { '$noappidtext' => $noappidtext, '$info' => t('Enter either the name of your location or the zip code.'), '$curweather_loc' => array( 'curweather_loc', t('Your Location'), $curweather_loc, t('Identifier of your location (name or zip code), e.g. Berlin,DE or 14476,DE.') ), - '$curweather_units' => array( 'curweather_units', t('Units'), $curweather_units, t('select if the temperatur should be displayed in °C or °F'), array('metric'=>'°C', 'imperial'=>'°F')), + '$curweather_units' => array( 'curweather_units', t('Units'), $curweather_units, t('select if the temperature should be displayed in °C or °F'), array('metric'=>'°C', 'imperial'=>'°F')), '$enabled' => array( 'curweather_enable', t('Show weather data'), $enable, '') )); return; -- 2.43.4 From 9030e4c1a6a067ec7ea01cccd9264b86db22b6b7 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sat, 24 Sep 2016 08:42:19 +0200 Subject: [PATCH 05/24] FR update to the translation THX Hypolite Petovan --- appnet/lang/fr/messages.po | 107 ++++++++++++++++++++++++++---- appnet/lang/fr/strings.php | 25 +++++-- blackout/lang/fr/messages.po | 9 +-- blackout/lang/fr/strings.php | 2 +- buffer/lang/fr/messages.po | 29 ++++---- buffer/lang/fr/strings.php | 22 +++--- communityhome/lang/fr/messages.po | 75 +++++++++++++++++++++ communityhome/lang/fr/strings.php | 34 ++++++---- curweather/lang/fr/messages.po | 87 ++++++++++++------------ curweather/lang/fr/strings.php | 24 +++---- 10 files changed, 297 insertions(+), 117 deletions(-) create mode 100644 communityhome/lang/fr/messages.po diff --git a/appnet/lang/fr/messages.po b/appnet/lang/fr/messages.po index 73e0dc2f..6f5f2997 100644 --- a/appnet/lang/fr/messages.po +++ b/appnet/lang/fr/messages.po @@ -1,17 +1,18 @@ -# ADDON appnetpost +# ADDON appnet # Copyright (C) -# This file is distributed under the same license as the Friendica appnetpost addon package. +# This file is distributed under the same license as the Friendica appnet addon package. # # # Translators: -# Nicola Spanti , 2015 +# Hypolite Petovan , 2016 +# Jak , 2014 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-06-22 11:47+0200\n" -"PO-Revision-Date: 2015-08-30 17:06+0000\n" -"Last-Translator: Nicola Spanti \n" +"PO-Revision-Date: 2016-09-24 02:12+0000\n" +"Last-Translator: Hypolite Petovan \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" @@ -19,22 +20,100 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: appnetpost.php:37 +#: appnet.php:39 +msgid "Permission denied." +msgstr "Autorisation refusée" + +#: appnet.php:73 +msgid "You are now authenticated to app.net. " +msgstr "Vous êtes maintenant authentifié sur app.net" + +#: appnet.php:77 +msgid "

Error fetching token. Please try again.

" +msgstr "

Impossible d'obtenir le jeton, merci de réessayer.

" + +#: appnet.php:80 +msgid "return to the connector page" +msgstr "revenir à la page du connecteur" + +#: appnet.php:94 msgid "Post to app.net" -msgstr "" +msgstr "Publier sur app.net" -#: appnetpost.php:59 appnetpost.php:63 +#: appnet.php:125 appnet.php:129 msgid "App.net Export" -msgstr "" +msgstr "Export App.net" -#: appnetpost.php:67 +#: appnet.php:142 +msgid "Currently connected to: " +msgstr "Actuellement connecté à :" + +#: appnet.php:144 msgid "Enable App.net Post Plugin" -msgstr "" +msgstr "Activer le plugin de publication app.net" -#: appnetpost.php:72 +#: appnet.php:149 msgid "Post to App.net by default" -msgstr "" +msgstr "Publier sur App.net par défaut" -#: appnetpost.php:78 +#: appnet.php:153 +msgid "Import the remote timeline" +msgstr "Importer la timeline distante" + +#: appnet.php:159 +msgid "" +"

Error fetching user profile. Please clear the configuration and try " +"again.

" +msgstr "

Impossible d'obtenir le profil utilisateur. Merci de réinitialiser la configuration et de réessayer.

" + +#: appnet.php:164 +msgid "

You have two ways to connect to App.net.

" +msgstr "

Vous avez deux possibilités pour vous connecter à App.net.

" + +#: appnet.php:166 +msgid "" +"

First way: Register an application at https://account.app.net/developer/apps/" +" and enter Client ID and Client Secret. " +msgstr "

Première méthode: Enregistrer une application sur App.net [en] et entrez l'ID Client et le Secret Client. " + +#: appnet.php:167 +#, php-format +msgid "Use '%s' as Redirect URI

" +msgstr "Utilisez '%s' pour l'URI de Redirection" + +#: appnet.php:169 +msgid "Client ID" +msgstr "ID Client" + +#: appnet.php:173 +msgid "Client Secret" +msgstr "Secret Client" + +#: appnet.php:177 +msgid "" +"

Second way: fetch a token at http://dev-lite.jonathonduerig.com/. " +msgstr "

Deuxième méthode: obtenez un jeton ur http://dev-lite.jonathonduerig.com/ [en]. " + +#: appnet.php:178 +msgid "" +"Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', " +"'Messages'.

" +msgstr "Cochez les \"scopes\" suivant: \"Basic\", \"Stream\", \"Write Post\", \"Public Messages\", \"Messages\".

" + +#: appnet.php:180 +msgid "Token" +msgstr "Jeton" + +#: appnet.php:192 +msgid "Sign in using App.net" +msgstr "Se connecter avec App.net" + +#: appnet.php:197 +msgid "Clear OAuth configuration" +msgstr "Effacer la configuration OAuth" + +#: appnet.php:204 msgid "Save Settings" msgstr "Sauvegarder les paramètres" diff --git a/appnet/lang/fr/strings.php b/appnet/lang/fr/strings.php index b714f03d..ef9fc9e2 100644 --- a/appnet/lang/fr/strings.php +++ b/appnet/lang/fr/strings.php @@ -5,8 +5,25 @@ function string_plural_select_fr($n){ return ($n > 1);; }} ; -$a->strings["Post to app.net"] = ""; -$a->strings["App.net Export"] = ""; -$a->strings["Enable App.net Post Plugin"] = ""; -$a->strings["Post to App.net by default"] = ""; +$a->strings["Permission denied."] = "Autorisation refusée"; +$a->strings["You are now authenticated to app.net. "] = "Vous êtes maintenant authentifié sur app.net"; +$a->strings["

Error fetching token. Please try again.

"] = "

Impossible d'obtenir le jeton, merci de réessayer.

"; +$a->strings["return to the connector page"] = "revenir à la page du connecteur"; +$a->strings["Post to app.net"] = "Publier sur app.net"; +$a->strings["App.net Export"] = "Export App.net"; +$a->strings["Currently connected to: "] = "Actuellement connecté à :"; +$a->strings["Enable App.net Post Plugin"] = "Activer le plugin de publication app.net"; +$a->strings["Post to App.net by default"] = "Publier sur App.net par défaut"; +$a->strings["Import the remote timeline"] = "Importer la timeline distante"; +$a->strings["

Error fetching user profile. Please clear the configuration and try again.

"] = "

Impossible d'obtenir le profil utilisateur. Merci de réinitialiser la configuration et de réessayer.

"; +$a->strings["

You have two ways to connect to App.net.

"] = "

Vous avez deux possibilités pour vous connecter à App.net.

"; +$a->strings["

First way: Register an application at https://account.app.net/developer/apps/ and enter Client ID and Client Secret. "] = "

Première méthode: Enregistrer une application sur App.net [en] et entrez l'ID Client et le Secret Client. "; +$a->strings["Use '%s' as Redirect URI

"] = "Utilisez '%s' pour l'URI de Redirection"; +$a->strings["Client ID"] = "ID Client"; +$a->strings["Client Secret"] = "Secret Client"; +$a->strings["

Second way: fetch a token at http://dev-lite.jonathonduerig.com/. "] = "

Deuxième méthode: obtenez un jeton ur http://dev-lite.jonathonduerig.com/ [en]. "; +$a->strings["Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', 'Messages'.

"] = "Cochez les \"scopes\" suivant: \"Basic\", \"Stream\", \"Write Post\", \"Public Messages\", \"Messages\".

"; +$a->strings["Token"] = "Jeton"; +$a->strings["Sign in using App.net"] = "Se connecter avec App.net"; +$a->strings["Clear OAuth configuration"] = "Effacer la configuration OAuth"; $a->strings["Save Settings"] = "Sauvegarder les paramètres"; diff --git a/blackout/lang/fr/messages.po b/blackout/lang/fr/messages.po index 0a1aa499..b52d3809 100644 --- a/blackout/lang/fr/messages.po +++ b/blackout/lang/fr/messages.po @@ -5,14 +5,15 @@ # # Translators: # Damien Goutte-Gattat , 2015 +# Hypolite Petovan , 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: 2015-02-06 00:24+0000\n" -"Last-Translator: Damien Goutte-Gattat \n" -"Language-Team: French (http://www.transifex.com/projects/p/friendica/language/fr/)\n" +"PO-Revision-Date: 2016-09-24 02:13+0000\n" +"Last-Translator: Hypolite Petovan \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" @@ -39,7 +40,7 @@ msgstr "Début du blackout" msgid "" "format is YYYY year, MM month, DD day, " "hh hour and mm minute" -msgstr "" +msgstr "Le format est YYYY année, MM mois, DD jour, hh heure and mm minute" #: blackout.php:102 msgid "End of the Blackout" diff --git a/blackout/lang/fr/strings.php b/blackout/lang/fr/strings.php index 705a6a77..ce184038 100644 --- a/blackout/lang/fr/strings.php +++ b/blackout/lang/fr/strings.php @@ -9,6 +9,6 @@ $a->strings["Save Settings"] = "Sauvegarder les paramètres"; $a->strings["Redirect URL"] = "Adresse de redirection"; $a->strings["all your visitors from the web will be redirected to this URL"] = "Tous vos visiteurs venant du web seront redirigés vers cette URL."; $a->strings["Begin of the Blackout"] = "Début du blackout"; -$a->strings["format is YYYY year, MM month, DD day, hh hour and mm minute"] = ""; +$a->strings["format is YYYY year, MM month, DD day, hh hour and mm minute"] = "Le format est YYYY année, MM mois, DD jour, hh heure and mm minute"; $a->strings["End of the Blackout"] = "Fin du blackout"; $a->strings["The end-date is prior to the start-date of the blackout, you should fix this."] = "La date de fin est antérieure à la date de début. Veuillez corriger cela."; diff --git a/buffer/lang/fr/messages.po b/buffer/lang/fr/messages.po index de1acc4e..bc159341 100644 --- a/buffer/lang/fr/messages.po +++ b/buffer/lang/fr/messages.po @@ -4,6 +4,7 @@ # # # Translators: +# Hypolite Petovan , 2016 # Nicola Spanti , 2015 # StefOfficiel , 2015 msgid "" @@ -11,9 +12,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: 2015-07-27 18:12+0000\n" -"Last-Translator: Nicola Spanti \n" -"Language-Team: French (http://www.transifex.com/projects/p/friendica/language/fr/)\n" +"PO-Revision-Date: 2016-09-24 03:03+0000\n" +"Last-Translator: Hypolite Petovan \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" @@ -34,44 +35,44 @@ msgstr "Identifiant client" #: buffer.php:60 msgid "Client Secret" -msgstr "" +msgstr "Secret Client" #: buffer.php:67 msgid "Error when registering buffer connection:" -msgstr "" +msgstr "Une erreur est survenue lors de la connexion à Buffer :" #: buffer.php:86 msgid "You are now authenticated to buffer. " -msgstr "" +msgstr "Vous êtes maintenant authentifié sur Buffer." #: buffer.php:87 msgid "return to the connector page" -msgstr "" +msgstr "revenir à la page du connecteur" #: buffer.php:103 msgid "Post to Buffer" -msgstr "" +msgstr "Publier sur Buffer" #: buffer.php:128 buffer.php:132 msgid "Buffer Export" -msgstr "" +msgstr "Export Buffer" #: buffer.php:142 msgid "Authenticate your Buffer connection" -msgstr "" +msgstr "Authentifier votre connexion à Buffer" #: buffer.php:146 msgid "Enable Buffer Post Plugin" -msgstr "" +msgstr "Activer le connecteur Buffer" #: buffer.php:151 msgid "Post to Buffer by default" -msgstr "" +msgstr "Publier sur Buffer par défaut" #: buffer.php:156 msgid "Check to delete this preset" -msgstr "" +msgstr "Cocher pour supprimer ce préréglage" #: buffer.php:165 msgid "Posts are going to all accounts that are enabled by default:" -msgstr "" +msgstr "Les posts sont envoyés à tous les comptes activés par défault:" diff --git a/buffer/lang/fr/strings.php b/buffer/lang/fr/strings.php index 7d7d5911..07460f47 100644 --- a/buffer/lang/fr/strings.php +++ b/buffer/lang/fr/strings.php @@ -8,14 +8,14 @@ function string_plural_select_fr($n){ $a->strings["Permission denied."] = "Permission refusée."; $a->strings["Save Settings"] = "Enregistrer les Paramètres"; $a->strings["Client ID"] = "Identifiant client"; -$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 Plugin"] = ""; -$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:"] = ""; +$a->strings["Client Secret"] = "Secret Client"; +$a->strings["Error when registering buffer connection:"] = "Une erreur est survenue lors de la connexion à Buffer :"; +$a->strings["You are now authenticated to buffer. "] = "Vous êtes maintenant authentifié sur Buffer."; +$a->strings["return to the connector page"] = "revenir à la page du connecteur"; +$a->strings["Post to Buffer"] = "Publier sur Buffer"; +$a->strings["Buffer Export"] = "Export Buffer"; +$a->strings["Authenticate your Buffer connection"] = "Authentifier votre connexion à Buffer"; +$a->strings["Enable Buffer Post Plugin"] = "Activer le connecteur Buffer"; +$a->strings["Post to Buffer by default"] = "Publier sur Buffer par défaut"; +$a->strings["Check to delete this preset"] = "Cocher pour supprimer ce préréglage"; +$a->strings["Posts are going to all accounts that are enabled by default:"] = "Les posts sont envoyés à tous les comptes activés par défault:"; diff --git a/communityhome/lang/fr/messages.po b/communityhome/lang/fr/messages.po new file mode 100644 index 00000000..0d54a9c6 --- /dev/null +++ b/communityhome/lang/fr/messages.po @@ -0,0 +1,75 @@ +# ADDON communityhome +# Copyright (C) +# This file is distributed under the same license as the Friendica communityhome addon package. +# +# +# Translators: +# Hypolite Petovan , 2016 +# StefOfficiel , 2015 +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-09-24 03:05+0000\n" +"Last-Translator: Hypolite Petovan \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" + +#: communityhome.php:28 communityhome.php:34 +msgid "Login" +msgstr "Identifiant" + +#: communityhome.php:29 +msgid "OpenID" +msgstr "OpenID" + +#: communityhome.php:39 +msgid "Latest users" +msgstr "Derniers utilisateurs" + +#: communityhome.php:84 +msgid "Most active users" +msgstr "Utilisateurs les plus actifs" + +#: communityhome.php:102 +msgid "Latest photos" +msgstr "Dernières photos" + +#: communityhome.php:115 +msgid "Contact Photos" +msgstr "Photos du contact" + +#: communityhome.php:116 +msgid "Profile Photos" +msgstr "Photos de profil" + +#: communityhome.php:141 +msgid "Latest likes" +msgstr "Derniers likes" + +#: communityhome.php:163 +msgid "event" +msgstr "événement" + +#: communityhome.php:166 communityhome.php:175 +msgid "status" +msgstr "statut" + +#: communityhome.php:171 +msgid "photo" +msgstr "photo" + +#: communityhome.php:180 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s aime %3$s de %2$s" + +#: communityhome.php:189 +#, php-format +msgid "Welcome to %s" +msgstr "Bienvenue sur %s" diff --git a/communityhome/lang/fr/strings.php b/communityhome/lang/fr/strings.php index 88381caa..42a98c84 100644 --- a/communityhome/lang/fr/strings.php +++ b/communityhome/lang/fr/strings.php @@ -1,14 +1,20 @@ -strings["Login"] = "Connexion"; -$a->strings["OpenID"] = "OpenID"; -$a->strings["Latest users"] = "Derniers utilisateurs"; -$a->strings["Most active users"] = "Utilisateurs les plus actifs"; -$a->strings["Latest photos"] = "Dernières photos"; -$a->strings["Contact Photos"] = "Photos du contact"; -$a->strings["Profile Photos"] = "Photos du profil"; -$a->strings["Latest likes"] = "Dernières approbations"; -$a->strings["event"] = "évènement"; -$a->strings["status"] = "le statut"; -$a->strings["photo"] = "photo"; -$a->strings["Welcome to %s"] = "Bienvenue sur %s"; + 1);; +}} +; +$a->strings["Login"] = "Identifiant"; +$a->strings["OpenID"] = "OpenID"; +$a->strings["Latest users"] = "Derniers utilisateurs"; +$a->strings["Most active users"] = "Utilisateurs les plus actifs"; +$a->strings["Latest photos"] = "Dernières photos"; +$a->strings["Contact Photos"] = "Photos du contact"; +$a->strings["Profile Photos"] = "Photos de profil"; +$a->strings["Latest likes"] = "Derniers likes"; +$a->strings["event"] = "événement"; +$a->strings["status"] = "statut"; +$a->strings["photo"] = "photo"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s aime %3\$s de %2\$s"; +$a->strings["Welcome to %s"] = "Bienvenue sur %s"; diff --git a/curweather/lang/fr/messages.po b/curweather/lang/fr/messages.po index 9e0d0168..c2330005 100644 --- a/curweather/lang/fr/messages.po +++ b/curweather/lang/fr/messages.po @@ -4,15 +4,16 @@ # # # Translators: +# Hypolite Petovan , 2016 # Nicola Spanti , 2015 # StefOfficiel , 2015 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-07-13 18:46+0200\n" -"PO-Revision-Date: 2015-08-30 17:11+0000\n" -"Last-Translator: Nicola Spanti \n" +"POT-Creation-Date: 2016-03-12 08:10+0100\n" +"PO-Revision-Date: 2016-09-24 03:15+0000\n" +"Last-Translator: Hypolite Petovan \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" @@ -20,114 +21,114 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: curweather.php:30 +#: curweather.php:31 msgid "Error fetching weather data.\\nError was: " msgstr "Erreur durant la récupération de la météo.\\nL'erreur était : " -#: curweather.php:103 curweather.php:163 +#: curweather.php:111 curweather.php:172 msgid "Current Weather" msgstr "Météo actuelle" -#: curweather.php:109 +#: curweather.php:118 msgid "Relative Humidity" -msgstr "" +msgstr "Humidité relative" -#: curweather.php:110 +#: curweather.php:119 msgid "Pressure" -msgstr "" +msgstr "Pression" -#: curweather.php:111 +#: curweather.php:120 msgid "Wind" msgstr "Vent" -#: curweather.php:112 +#: curweather.php:121 msgid "Last Updated" msgstr "Dernière mise-à-jour" -#: curweather.php:113 +#: curweather.php:122 msgid "Data by" msgstr "Données de" -#: curweather.php:114 +#: curweather.php:123 msgid "Show on map" msgstr "Montrer sur la carte" -#: curweather.php:119 +#: curweather.php:128 msgid "There was a problem accessing the weather data. But have a look" -msgstr "" +msgstr "Une erreur est survenue lors de l'accès aux données météo. Vous pouvez quand même jeter un oeil" -#: curweather.php:121 +#: curweather.php:130 msgid "at OpenWeatherMap" -msgstr "" +msgstr "à OpenWeatherMap" -#: curweather.php:137 +#: curweather.php:146 msgid "Current Weather settings updated." -msgstr "" +msgstr "Paramètres de la Météo Actuelle mis à jour." -#: curweather.php:152 +#: curweather.php:161 msgid "No APPID found, please contact your admin to optain one." -msgstr "" +msgstr "APPID introuvable, veuillez contacter votre administrateur pour en obtenir un." -#: curweather.php:162 curweather.php:191 +#: curweather.php:171 curweather.php:200 msgid "Save Settings" msgstr "Sauvegarder les paramètres" -#: curweather.php:163 +#: curweather.php:172 msgid "Settings" msgstr "Paramètres" -#: curweather.php:165 +#: curweather.php:174 msgid "Enter either the name of your location or the zip code." -msgstr "" +msgstr "Entrez le nom de votre emplacement ou votre code postal." -#: curweather.php:166 +#: curweather.php:175 msgid "Your Location" msgstr "Votre position" -#: curweather.php:166 +#: curweather.php:175 msgid "" "Identifier of your location (name or zip code), e.g. Berlin,DE or " "14476,DE." -msgstr "" +msgstr "Identifiant de votre emplacement (nom ou code postal), par exemple Paris 08, Fr ou 75008, FR." -#: curweather.php:167 +#: curweather.php:176 msgid "Units" msgstr "Unités" -#: curweather.php:167 -msgid "select if the temperatur should be displayed in °C or °F" -msgstr "" +#: curweather.php:176 +msgid "select if the temperatur should be displayed in °C or °F" +msgstr "choisissez si la température doit être affichée en °C ou °F" -#: curweather.php:168 +#: curweather.php:177 msgid "Show weather data" msgstr "Montrer les données météos" -#: curweather.php:181 +#: curweather.php:190 msgid "Curweather settings saved." -msgstr "" +msgstr "Paramètres Curweather sauvés." -#: curweather.php:192 +#: curweather.php:201 msgid "Caching Interval" -msgstr "" +msgstr "Intervalle de mise en cache." -#: curweather.php:192 +#: curweather.php:201 msgid "" "For how long should the weather data be cached? Choose according your " "OpenWeatherMap account type." -msgstr "" +msgstr "Pendant combien de temps les données météo doivent-elles être mises en cache? Choisissez en fonction du type de compte OpenWeatherMap." -#: curweather.php:192 +#: curweather.php:201 msgid "no cache" msgstr "pas de cache" -#: curweather.php:192 +#: curweather.php:201 msgid "minutes" msgstr "minutes" -#: curweather.php:193 +#: curweather.php:202 msgid "Your APPID" msgstr "Votre APPID" -#: curweather.php:193 +#: curweather.php:202 msgid "Your API key provided by OpenWeatherMap" msgstr "Votre clé pour l'API de OpenWeatherMap" diff --git a/curweather/lang/fr/strings.php b/curweather/lang/fr/strings.php index b735ef8c..466a0508 100644 --- a/curweather/lang/fr/strings.php +++ b/curweather/lang/fr/strings.php @@ -7,27 +7,27 @@ function string_plural_select_fr($n){ ; $a->strings["Error fetching weather data.\\nError was: "] = "Erreur durant la récupération de la météo.\\nL'erreur était : "; $a->strings["Current Weather"] = "Météo actuelle"; -$a->strings["Relative Humidity"] = ""; -$a->strings["Pressure"] = ""; +$a->strings["Relative Humidity"] = "Humidité relative"; +$a->strings["Pressure"] = "Pression"; $a->strings["Wind"] = "Vent"; $a->strings["Last Updated"] = "Dernière mise-à-jour"; $a->strings["Data by"] = "Données de"; $a->strings["Show on map"] = "Montrer sur la carte"; -$a->strings["There was a problem accessing the weather data. But have a look"] = ""; -$a->strings["at OpenWeatherMap"] = ""; -$a->strings["Current Weather settings updated."] = ""; -$a->strings["No APPID found, please contact your admin to optain one."] = ""; +$a->strings["There was a problem accessing the weather data. But have a look"] = "Une erreur est survenue lors de l'accès aux données météo. Vous pouvez quand même jeter un oeil"; +$a->strings["at OpenWeatherMap"] = "à OpenWeatherMap"; +$a->strings["Current Weather settings updated."] = "Paramètres de la Météo Actuelle mis à jour."; +$a->strings["No APPID found, please contact your admin to optain one."] = "APPID introuvable, veuillez contacter votre administrateur pour en obtenir un."; $a->strings["Save Settings"] = "Sauvegarder les paramètres"; $a->strings["Settings"] = "Paramètres"; -$a->strings["Enter either the name of your location or the zip code."] = ""; +$a->strings["Enter either the name of your location or the zip code."] = "Entrez le nom de votre emplacement ou votre code postal."; $a->strings["Your Location"] = "Votre position"; -$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."] = "Identifiant de votre emplacement (nom ou code postal), par exemple Paris 08, Fr ou 75008, FR."; $a->strings["Units"] = "Unités"; -$a->strings["select if the temperatur should be displayed in °C or °F"] = ""; +$a->strings["select if the temperatur should be displayed in °C or °F"] = "choisissez si la température doit être affichée en °C ou °F"; $a->strings["Show weather data"] = "Montrer les données météos"; -$a->strings["Curweather settings saved."] = ""; -$a->strings["Caching Interval"] = ""; -$a->strings["For how long should the weather data be cached? Choose according your OpenWeatherMap account type."] = ""; +$a->strings["Curweather settings saved."] = "Paramètres Curweather sauvés."; +$a->strings["Caching Interval"] = "Intervalle de mise en cache."; +$a->strings["For how long should the weather data be cached? Choose according your OpenWeatherMap account type."] = "Pendant combien de temps les données météo doivent-elles être mises en cache? Choisissez en fonction du type de compte OpenWeatherMap."; $a->strings["no cache"] = "pas de cache"; $a->strings["minutes"] = "minutes"; $a->strings["Your APPID"] = "Votre APPID"; -- 2.43.4 From 6fdd8c2ab44fddb28979dfe745fc2733ae43d191 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sun, 25 Sep 2016 17:18:55 +0200 Subject: [PATCH 06/24] update to the curweather messages.po file for translation --- curweather/lang/C/messages.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/curweather/lang/C/messages.po b/curweather/lang/C/messages.po index cee9c343..048c327a 100644 --- a/curweather/lang/C/messages.po +++ b/curweather/lang/C/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-12 08:10+0100\n" +"POT-Creation-Date: 2016-09-25 17:17+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -62,7 +62,7 @@ msgid "Current Weather settings updated." msgstr "" #: curweather.php:161 -msgid "No APPID found, please contact your admin to optain one." +msgid "No APPID found, please contact your admin to obtain one." msgstr "" #: curweather.php:171 curweather.php:200 @@ -92,7 +92,7 @@ msgid "Units" msgstr "" #: curweather.php:176 -msgid "select if the temperatur should be displayed in °C or °F" +msgid "select if the temperature should be displayed in °C or °F" msgstr "" #: curweather.php:177 -- 2.43.4 From 40949204f1136e14160bb57d4d203ce101e1b4e3 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Mon, 26 Sep 2016 12:20:24 +0200 Subject: [PATCH 07/24] DE translation for curweather --- curweather/lang/de/messages.po | 13 +++++++------ curweather/lang/de/strings.php | 4 ++-- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/curweather/lang/de/messages.po b/curweather/lang/de/messages.po index d8650b79..0f76e2cb 100644 --- a/curweather/lang/de/messages.po +++ b/curweather/lang/de/messages.po @@ -6,14 +6,15 @@ # Translators: # Andreas H., 2014 # Oliver , 2016 -# bavatar , 2014-2015 +# Tobias Diekershoff , 2014-2015 +# Tobias Diekershoff , 2016 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-12 08:10+0100\n" -"PO-Revision-Date: 2016-03-17 21:22+0000\n" -"Last-Translator: Oliver \n" +"POT-Creation-Date: 2016-09-25 17:17+0200\n" +"PO-Revision-Date: 2016-09-26 10:17+0000\n" +"Last-Translator: Tobias Diekershoff \n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -66,7 +67,7 @@ msgid "Current Weather settings updated." msgstr "Einstellungen des Aktuellen Wetter Addons aktualisiert." #: curweather.php:161 -msgid "No APPID found, please contact your admin to optain one." +msgid "No APPID found, please contact your admin to obtain one." msgstr "Keine APPID gefunden, bitte kontaktiere deinen Admin damit eine eingerichtet wird." #: curweather.php:171 curweather.php:200 @@ -96,7 +97,7 @@ msgid "Units" msgstr "Einheiten" #: curweather.php:176 -msgid "select if the temperatur should be displayed in °C or °F" +msgid "select if the temperature should be displayed in °C or °F" msgstr "wähle ob die Temperatur in °C oder °F angezeigt werden soll" #: curweather.php:177 diff --git a/curweather/lang/de/strings.php b/curweather/lang/de/strings.php index 24d93056..2f1f0e3d 100644 --- a/curweather/lang/de/strings.php +++ b/curweather/lang/de/strings.php @@ -16,14 +16,14 @@ $a->strings["Show on map"] = "Karte anzeigen"; $a->strings["There was a problem accessing the weather data. But have a look"] = "Es gab ein Problem beim Abrufen der Wetterdaten. Aber werf doch mal einen Blick"; $a->strings["at OpenWeatherMap"] = "auf OpenWeatherMap"; $a->strings["Current Weather settings updated."] = "Einstellungen des Aktuellen Wetter Addons aktualisiert."; -$a->strings["No APPID found, please contact your admin to optain one."] = "Keine APPID gefunden, bitte kontaktiere deinen Admin damit eine eingerichtet wird."; +$a->strings["No APPID found, please contact your admin to obtain one."] = "Keine APPID gefunden, bitte kontaktiere deinen Admin damit eine eingerichtet wird."; $a->strings["Save Settings"] = "Einstellungen speichern"; $a->strings["Settings"] = "Einstellungen"; $a->strings["Enter either the name of your location or the zip code."] = "Gib entweder den Namen oder die PLZ deines Ortes ein."; $a->strings["Your Location"] = "Deinen Standort festlegen"; $a->strings["Identifier of your location (name or zip code), e.g. Berlin,DE or 14476,DE."] = "Identifikator deines Standorts (Name oder Postleitzahl), z.B. Berlin,DE oder 14476,DE."; $a->strings["Units"] = "Einheiten"; -$a->strings["select if the temperatur should be displayed in °C or °F"] = "wähle ob die Temperatur in °C oder °F angezeigt werden soll"; +$a->strings["select if the temperature should be displayed in °C or °F"] = "wähle ob die Temperatur in °C oder °F angezeigt werden soll"; $a->strings["Show weather data"] = "Zeige Wetter Daten"; $a->strings["Curweather settings saved."] = "Curweather Einstellungen gespeichert."; $a->strings["Caching Interval"] = "Cache Intervall"; -- 2.43.4 From ed1caffe044be3b499d3adea89a2ee3f73cb9d74 Mon Sep 17 00:00:00 2001 From: Sandro Santilli Date: Sat, 1 Oct 2016 18:15:32 +0200 Subject: [PATCH 08/24] Add minimum post body length setting to language filter --- langfilter/langfilter.php | 13 +++++++++++++ langfilter/templates/settings.tpl | 1 + 2 files changed, 14 insertions(+) diff --git a/langfilter/langfilter.php b/langfilter/langfilter.php index b29084c8..d4fe942d 100644 --- a/langfilter/langfilter.php +++ b/langfilter/langfilter.php @@ -36,6 +36,7 @@ function langfilter_addon_settings(&$a,&$s) { $enable_checked = (intval(get_pconfig(local_user(),'langfilter','disable')) ? '' : ' checked="checked" '); $languages = get_pconfig(local_user(),'langfilter','languages'); $minconfidence = get_pconfig(local_user(),'langfilter','minconfidence')*100; + $minlength = get_pconfig(local_user(),'langfilter','minlength'); if(! $languages) $languages = 'en,de,fr,it,es'; @@ -46,6 +47,7 @@ function langfilter_addon_settings(&$a,&$s) { '$enabled' => array('langfilter_enable', t('Use the language filter'), $enable_checked, ''), '$languages' => array('langfilter_languages', t('I speak'), $languages, t('List of abbreviations (iso2 codes) for languages you speak, comma separated. For example "de,it".') ), '$minconfidence' => array('langfilter_minconfidence', t('Minimum confidence in language detection'), $minconfidence, t('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.') ), + '$minlength' => array('langfilter_minlength', t('Minimum length of message body'), $minlength, t('Minimum length of message body for language filter to be used. Posts shorter than this number of characters will not be filtered.') ), '$submit' => t('Save Settings'), )); @@ -70,6 +72,12 @@ function langfilter_addon_settings_post(&$a,&$b) { else if ( $minconfidence < 0 ) $minconfidence = 0; else if ( $minconfidence > 100 ) $minconfidence = 100; set_pconfig(local_user(),'langfilter','minconfidence', $minconfidence/100.0); + + $minlength = 0+$_POST['langfilter_minlength']; + if ( ! $minlength ) $minlength = 32; + else if ( $minlength < 0 ) $minlength = 32; + set_pconfig(local_user(),'langfilter','minlength', $minlength); + info( t('Language Filter Settings saved.') . EOL); } } @@ -94,6 +102,11 @@ function langfilter_prepare_body(&$a,&$b) { # Don't filter if language filter is disabled if( get_pconfig($logged_user,'langfilter','disable') ) return; + # Don't filter if body lenght is below minimum + $minlen = get_pconfig(local_user(),'langfilter','minlength'); + if ( ! $minlen ) $minlen = 32; + if ( strlen($b['item']['body']) < $minlen ) return; + $spoken_config = get_pconfig(local_user(),'langfilter','languages'); $minconfidence = get_pconfig(local_user(),'langfilter','minconfidence'); diff --git a/langfilter/templates/settings.tpl b/langfilter/templates/settings.tpl index 5d1fb25f..8e62ef49 100644 --- a/langfilter/templates/settings.tpl +++ b/langfilter/templates/settings.tpl @@ -11,6 +11,7 @@ {{include file="field_checkbox.tpl" field=$enabled}} {{include file="field_input.tpl" field=$languages}} {{include file="field_input.tpl" field=$minconfidence}} + {{include file="field_input.tpl" field=$minlength}}
-- 2.43.4 From 04eb464835f8240d8db471fbd9c4fdbfb77ffd34 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Sat, 8 Oct 2016 20:58:57 -0400 Subject: [PATCH 09/24] [ifttt] Add missing nickname in the callback URL --- ifttt/ifttt.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ifttt/ifttt.php b/ifttt/ifttt.php index b0e5e122..38236509 100644 --- a/ifttt/ifttt.php +++ b/ifttt/ifttt.php @@ -48,7 +48,7 @@ function ifttt_settings(&$a,&$s) { $s .= '
'; $s .= '

'.t("Create an account at IFTTT. Create three Facebook recipes that are connected with Maker (In the form 'if Facebook then Maker') with the following parameters:").'

'; $s .= '

URL

'; - $s .= '

'.$a->get_baseurl()."/ifttt/".'

'; + $s .= '

' . $a->get_baseurl() . '/ifttt/' . $a->user['nickname'] . '

'; $s .= '

Method

'; $s .= '

POST

'; $s .= '

Content Type

'; -- 2.43.4 From 71f988d1bf42f512e9fef75aff3e467172f28a46 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 11 Oct 2016 08:35:46 +0200 Subject: [PATCH 10/24] ES update to the translations THX Athalbert --- appnet/lang/es/messages.po | 117 ++++++++++++++++++++++++++++ appnet/lang/es/strings.php | 29 +++++++ blogger/lang/es/messages.po | 55 +++++++++++++ blogger/lang/es/strings.php | 27 ++++--- buffer/lang/es/messages.po | 75 ++++++++++++++++++ buffer/lang/es/strings.php | 21 +++++ buglink/lang/es/messages.po | 23 ++++++ buglink/lang/es/strings.php | 11 ++- cal/lang/es/messages.po | 55 +++++++++++++ cal/lang/es/strings.php | 16 ++++ communityhome/lang/es/messages.po | 73 ++++++++++++++++++ communityhome/lang/es/strings.php | 34 +++++---- twitter/lang/es/messages.po | 123 ++++++++++++++++++++++++++++++ twitter/lang/es/strings.php | 49 +++++++----- 14 files changed, 660 insertions(+), 48 deletions(-) create mode 100644 appnet/lang/es/messages.po create mode 100644 appnet/lang/es/strings.php create mode 100644 blogger/lang/es/messages.po create mode 100644 buffer/lang/es/messages.po create mode 100644 buffer/lang/es/strings.php create mode 100644 buglink/lang/es/messages.po create mode 100644 cal/lang/es/messages.po create mode 100644 cal/lang/es/strings.php create mode 100644 communityhome/lang/es/messages.po create mode 100644 twitter/lang/es/messages.po diff --git a/appnet/lang/es/messages.po b/appnet/lang/es/messages.po new file mode 100644 index 00000000..78d083d4 --- /dev/null +++ b/appnet/lang/es/messages.po @@ -0,0 +1,117 @@ +# ADDON appnet +# Copyright (C) +# This file is distributed under the same license as the Friendica appnet addon package. +# +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-06-22 11:47+0200\n" +"PO-Revision-Date: 2016-10-10 17:59+0000\n" +"Last-Translator: Athalbert\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" +"Content-Transfer-Encoding: 8bit\n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: appnet.php:39 +msgid "Permission denied." +msgstr "Permiso denegado" + +#: appnet.php:73 +msgid "You are now authenticated to app.net. " +msgstr "Ahora está autenticado en app.net." + +#: appnet.php:77 +msgid "

Error fetching token. Please try again.

" +msgstr "

Advertencia de error. Por favor inténtelo de nuevo.

" + +#: appnet.php:80 +msgid "return to the connector page" +msgstr "vuelva a pa página de conexón" + +#: appnet.php:94 +msgid "Post to app.net" +msgstr "Publique en app.net" + +#: appnet.php:125 appnet.php:129 +msgid "App.net Export" +msgstr "Exportar a app.net" + +#: appnet.php:142 +msgid "Currently connected to: " +msgstr "Actualmente conectado a:" + +#: appnet.php:144 +msgid "Enable App.net Post Plugin" +msgstr "Habilitar el plugin de publicación de App.net" + +#: appnet.php:149 +msgid "Post to App.net by default" +msgstr "Publicar en App.net por defecto" + +#: appnet.php:153 +msgid "Import the remote timeline" +msgstr "Importar la línea de tiempo remota" + +#: appnet.php:159 +msgid "" +"

Error fetching user profile. Please clear the configuration and try " +"again.

" +msgstr "

Advertencia de error de perfil. Por favor borre la configuración e inténtelo de nuevo.

" + +#: appnet.php:164 +msgid "

You have two ways to connect to App.net.

" +msgstr "

Tiene dos formas de conectar a App.net.

" + +#: appnet.php:166 +msgid "" +"

First way: Register an application at https://account.app.net/developer/apps/" +" and enter Client ID and Client Secret. " +msgstr "" + +#: appnet.php:167 +#, php-format +msgid "Use '%s' as Redirect URI

" +msgstr "Use '%s' como Redirigir URI" + +#: appnet.php:169 +msgid "Client ID" +msgstr "ID de cliente" + +#: appnet.php:173 +msgid "Client Secret" +msgstr "Secreto de cliente" + +#: appnet.php:177 +msgid "" +"

Second way: fetch a token at http://dev-lite.jonathonduerig.com/. " +msgstr "

Segunda manera: traiga un símbolo a http://dev-lite.jonathonduerig.com/" + +#: appnet.php:178 +msgid "" +"Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', " +"'Messages'.

" +msgstr "Seleccione estas posibilidades: 'Básico', 'Continuo', 'Escribir entrada', 'Mensajes públicos', 'Mensajes'.

" + +#: appnet.php:180 +msgid "Token" +msgstr "Símbolo" + +#: appnet.php:192 +msgid "Sign in using App.net" +msgstr "Regístrese usando App.net" + +#: appnet.php:197 +msgid "Clear OAuth configuration" +msgstr "Borre la configuración OAuth" + +#: appnet.php:204 +msgid "Save Settings" +msgstr "Guardar los ajustes" diff --git a/appnet/lang/es/strings.php b/appnet/lang/es/strings.php new file mode 100644 index 00000000..10631799 --- /dev/null +++ b/appnet/lang/es/strings.php @@ -0,0 +1,29 @@ +strings["Permission denied."] = "Permiso denegado"; +$a->strings["You are now authenticated to app.net. "] = "Ahora está autenticado en app.net."; +$a->strings["

Error fetching token. Please try again.

"] = "

Advertencia de error. Por favor inténtelo de nuevo.

"; +$a->strings["return to the connector page"] = "vuelva a pa página de conexón"; +$a->strings["Post to app.net"] = "Publique en app.net"; +$a->strings["App.net Export"] = "Exportar a app.net"; +$a->strings["Currently connected to: "] = "Actualmente conectado a:"; +$a->strings["Enable App.net Post Plugin"] = "Habilitar el plugin de publicación de App.net"; +$a->strings["Post to App.net by default"] = "Publicar en App.net por defecto"; +$a->strings["Import the remote timeline"] = "Importar la línea de tiempo remota"; +$a->strings["

Error fetching user profile. Please clear the configuration and try again.

"] = "

Advertencia de error de perfil. Por favor borre la configuración e inténtelo de nuevo.

"; +$a->strings["

You have two ways to connect to App.net.

"] = "

Tiene dos formas de conectar a App.net.

"; +$a->strings["

First way: Register an application at https://account.app.net/developer/apps/ and enter Client ID and Client Secret. "] = ""; +$a->strings["Use '%s' as Redirect URI

"] = "Use '%s' como Redirigir URI"; +$a->strings["Client ID"] = "ID de cliente"; +$a->strings["Client Secret"] = "Secreto de cliente"; +$a->strings["

Second way: fetch a token at http://dev-lite.jonathonduerig.com/. "] = "

Segunda manera: traiga un símbolo a http://dev-lite.jonathonduerig.com/"; +$a->strings["Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', 'Messages'.

"] = "Seleccione estas posibilidades: 'Básico', 'Continuo', 'Escribir entrada', 'Mensajes públicos', 'Mensajes'.

"; +$a->strings["Token"] = "Símbolo"; +$a->strings["Sign in using App.net"] = "Regístrese usando App.net"; +$a->strings["Clear OAuth configuration"] = "Borre la configuración OAuth"; +$a->strings["Save Settings"] = "Guardar los ajustes"; diff --git a/blogger/lang/es/messages.po b/blogger/lang/es/messages.po new file mode 100644 index 00000000..86b1dcb7 --- /dev/null +++ b/blogger/lang/es/messages.po @@ -0,0 +1,55 @@ +# ADDON blogger +# Copyright (C) +# This file is distributed under the same license as the Friendica blogger addon package. +# +# +# Translators: +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" +"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" +"Content-Transfer-Encoding: 8bit\n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: blogger.php:42 +msgid "Post to blogger" +msgstr "Entrada para blogger" + +#: blogger.php:74 blogger.php:78 +msgid "Blogger Export" +msgstr "Esportar Blogger" + +#: blogger.php:82 +msgid "Enable Blogger Post Plugin" +msgstr "Activar plugin de entrada de Blogger" + +#: blogger.php:87 +msgid "Blogger username" +msgstr "Nombre de usuario de Blogger" + +#: blogger.php:92 +msgid "Blogger password" +msgstr "Contraseña de Blogger" + +#: blogger.php:97 +msgid "Blogger API URL" +msgstr "URL API de Blogger" + +#: blogger.php:102 +msgid "Post to Blogger by default" +msgstr "Entrada a Blogger por defecto" + +#: blogger.php:108 +msgid "Save Settings" +msgstr "Guardar ajustes" + +#: blogger.php:178 +msgid "Post from Friendica" +msgstr "Entrada desde Friendica" diff --git a/blogger/lang/es/strings.php b/blogger/lang/es/strings.php index 3ef963d9..01441ae5 100644 --- a/blogger/lang/es/strings.php +++ b/blogger/lang/es/strings.php @@ -1,11 +1,16 @@ -strings["Post to blogger"] = "Publícar en Blogger"; -$a->strings["Blogger Post Settings"] = "Configuración de las publicaciones en Blogger"; -$a->strings["Enable Blogger Post Plugin"] = "Activar el módulo de publicación en Blogger"; -$a->strings["Blogger username"] = "Nombre de usuario de Blogger"; -$a->strings["Blogger password"] = "Contraseña de Blogger"; -$a->strings["Blogger API URL"] = "Dirección de la API de Blogger"; -$a->strings["Post to Blogger by default"] = "Publicar en Blogger por defecto"; -$a->strings["Submit"] = "Envíar"; -$a->strings["Post from Friendica"] = "Publicado desde Friendica"; +strings["Post to blogger"] = "Entrada para blogger"; +$a->strings["Blogger Export"] = "Esportar Blogger"; +$a->strings["Enable Blogger Post Plugin"] = "Activar plugin de entrada 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"; +$a->strings["Post to Blogger by default"] = "Entrada a Blogger por defecto"; +$a->strings["Save Settings"] = "Guardar ajustes"; +$a->strings["Post from Friendica"] = "Entrada desde Friendica"; diff --git a/buffer/lang/es/messages.po b/buffer/lang/es/messages.po new file mode 100644 index 00000000..20ceacae --- /dev/null +++ b/buffer/lang/es/messages.po @@ -0,0 +1,75 @@ +# ADDON buffer +# Copyright (C) +# This file is distributed under the same license as the Friendica buffer addon package. +# +# +# Translators: +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" +"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" +"Content-Transfer-Encoding: 8bit\n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: buffer.php:31 +msgid "Permission denied." +msgstr "Permiso denegado" + +#: buffer.php:57 buffer.php:185 +msgid "Save Settings" +msgstr "Guardar ajustes" + +#: buffer.php:59 +msgid "Client ID" +msgstr "ID de cliente" + +#: buffer.php:60 +msgid "Client Secret" +msgstr "Secreto de cliente" + +#: buffer.php:67 +msgid "Error when registering buffer connection:" +msgstr "Error al registrar cunexión de buffer" + +#: buffer.php:86 +msgid "You are now authenticated to buffer. " +msgstr "Ahora está autenticado al fufer" + +#: buffer.php:87 +msgid "return to the connector page" +msgstr "Vuelva a la página de conexión" + +#: buffer.php:103 +msgid "Post to Buffer" +msgstr "Publique en Buffer" + +#: buffer.php:128 buffer.php:132 +msgid "Buffer Export" +msgstr "Exportar Buffer" + +#: buffer.php:142 +msgid "Authenticate your Buffer connection" +msgstr "Autenticar su conexión de Buffer" + +#: buffer.php:146 +msgid "Enable Buffer Post Plugin" +msgstr "Active el plugin de publicación de Buffer" + +#: buffer.php:151 +msgid "Post to Buffer by default" +msgstr "Publicar en Buffer por defecto" + +#: buffer.php:156 +msgid "Check to delete this preset" +msgstr "Verificar para eliminar este preajuste" + +#: buffer.php:165 +msgid "Posts are going to all accounts that are enabled by default:" +msgstr "Las publicaciones van a todas las cuentas que estén habilitadas por defecto" diff --git a/buffer/lang/es/strings.php b/buffer/lang/es/strings.php new file mode 100644 index 00000000..15c58cd1 --- /dev/null +++ b/buffer/lang/es/strings.php @@ -0,0 +1,21 @@ +strings["Permission denied."] = "Permiso denegado"; +$a->strings["Save Settings"] = "Guardar ajustes"; +$a->strings["Client ID"] = "ID de cliente"; +$a->strings["Client Secret"] = "Secreto de cliente"; +$a->strings["Error when registering buffer connection:"] = "Error al registrar cunexión de buffer"; +$a->strings["You are now authenticated to buffer. "] = "Ahora está autenticado al fufer"; +$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 Plugin"] = "Active el plugin 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/buglink/lang/es/messages.po b/buglink/lang/es/messages.po new file mode 100644 index 00000000..d17209d5 --- /dev/null +++ b/buglink/lang/es/messages.po @@ -0,0 +1,23 @@ +# ADDON buglink +# Copyright (C) +# This file is distributed under the same license as the Friendica buglink addon package. +# +# +# Translators: +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:42+0000\n" +"Last-Translator: Athalbert\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" +"Content-Transfer-Encoding: 8bit\n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: buglink.php:15 +msgid "Report Bug" +msgstr "Reportar error" diff --git a/buglink/lang/es/strings.php b/buglink/lang/es/strings.php index fe632488..27e45c1b 100644 --- a/buglink/lang/es/strings.php +++ b/buglink/lang/es/strings.php @@ -1,3 +1,8 @@ -strings["Report Bug"] = "Informe de errores"; +strings["Report Bug"] = "Reportar error"; diff --git a/cal/lang/es/messages.po b/cal/lang/es/messages.po new file mode 100644 index 00000000..65b2a322 --- /dev/null +++ b/cal/lang/es/messages.po @@ -0,0 +1,55 @@ +# ADDON cal +# Copyright (C) +# This file is distributed under the same license as the Friendica cal addon package. +# +# +# Translators: +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:48+0000\n" +"Last-Translator: Athalbert\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" +"Content-Transfer-Encoding: 8bit\n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: cal.php:33 +msgid "Event Export" +msgstr "Exportación de evento" + +#: cal.php:33 +msgid "You can download public events from: " +msgstr "Puede descargar eventos públicos desde:" + +#: cal.php:53 +msgid "The user does not export the calendar." +msgstr "El usuario no exporta el calendario." + +#: cal.php:83 +msgid "This calendar format is not supported" +msgstr "No se soporta este formato de calendario" + +#: cal.php:181 cal.php:185 +msgid "Export Events" +msgstr "Exportar Eventos" + +#: cal.php:189 +msgid "If this is enabled, your public events will be available at" +msgstr "Si esto está habilitado, sus eventos públicos estarán permitidos en" + +#: cal.php:190 +msgid "Currently supported formats are ical and csv." +msgstr "Los formatos soportados actualmente son ical y csv." + +#: cal.php:191 +msgid "Enable calendar export" +msgstr "Habilitar exportar calendario" + +#: cal.php:193 +msgid "Save Settings" +msgstr "Guardar Ajustes" diff --git a/cal/lang/es/strings.php b/cal/lang/es/strings.php new file mode 100644 index 00000000..29c9cc93 --- /dev/null +++ b/cal/lang/es/strings.php @@ -0,0 +1,16 @@ +strings["Event Export"] = "Exportación de evento"; +$a->strings["You can download public events from: "] = "Puede descargar eventos públicos desde:"; +$a->strings["The user does not export the calendar."] = "El usuario no exporta el calendario."; +$a->strings["This calendar format is not supported"] = "No se soporta este formato de calendario"; +$a->strings["Export Events"] = "Exportar Eventos"; +$a->strings["If this is enabled, your public events will be available at"] = "Si esto está habilitado, sus eventos públicos estarán permitidos en"; +$a->strings["Currently supported formats are ical and csv."] = "Los formatos soportados actualmente son ical y csv."; +$a->strings["Enable calendar export"] = "Habilitar exportar calendario"; +$a->strings["Save Settings"] = "Guardar Ajustes"; diff --git a/communityhome/lang/es/messages.po b/communityhome/lang/es/messages.po new file mode 100644 index 00000000..40be2be1 --- /dev/null +++ b/communityhome/lang/es/messages.po @@ -0,0 +1,73 @@ +# ADDON communityhome +# Copyright (C) +# This file is distributed under the same license as the Friendica communityhome addon package. +# +# +# Translators: +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-10-10 20:53+0000\n" +"Last-Translator: Athalbert\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" +"Content-Transfer-Encoding: 8bit\n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: communityhome.php:28 communityhome.php:34 +msgid "Login" +msgstr "Acceder" + +#: communityhome.php:29 +msgid "OpenID" +msgstr "ID Abierta" + +#: communityhome.php:39 +msgid "Latest users" +msgstr "Usuarios recientes" + +#: communityhome.php:84 +msgid "Most active users" +msgstr "Usuarios más activos" + +#: communityhome.php:102 +msgid "Latest photos" +msgstr "Fotos recientes" + +#: communityhome.php:115 +msgid "Contact Photos" +msgstr "Fotos de contacto" + +#: communityhome.php:116 +msgid "Profile Photos" +msgstr "Fotos de perfil" + +#: communityhome.php:141 +msgid "Latest likes" +msgstr "Últomos Me gusta" + +#: communityhome.php:163 +msgid "event" +msgstr "evento" + +#: communityhome.php:166 communityhome.php:175 +msgid "status" +msgstr "estatus social" + +#: communityhome.php:171 +msgid "photo" +msgstr "foto" + +#: communityhome.php:180 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "A %1$s le gusta %2$s's %3$s" + +#: communityhome.php:189 +#, php-format +msgid "Welcome to %s" +msgstr "Bienvenido a %s" diff --git a/communityhome/lang/es/strings.php b/communityhome/lang/es/strings.php index 25cea3ef..5023d631 100644 --- a/communityhome/lang/es/strings.php +++ b/communityhome/lang/es/strings.php @@ -1,14 +1,20 @@ -strings["Login"] = "Acceder"; -$a->strings["OpenID"] = "OpenID"; -$a->strings["Latest users"] = "Últimos usuarios"; -$a->strings["Most active users"] = "Usuarios más activos"; -$a->strings["Latest photos"] = "Últimas fotos"; -$a->strings["Contact Photos"] = "Foto del contacto"; -$a->strings["Profile Photos"] = "Foto del perfil"; -$a->strings["Latest likes"] = "Últimos me gusta"; -$a->strings["event"] = "evento"; -$a->strings["status"] = "estado"; -$a->strings["photo"] = "foto"; -$a->strings["Welcome to %s"] = "Bienvenido a %s"; +strings["Login"] = "Acceder"; +$a->strings["OpenID"] = "ID Abierta"; +$a->strings["Latest users"] = "Usuarios recientes"; +$a->strings["Most active users"] = "Usuarios más activos"; +$a->strings["Latest photos"] = "Fotos recientes"; +$a->strings["Contact Photos"] = "Fotos de contacto"; +$a->strings["Profile Photos"] = "Fotos de perfil"; +$a->strings["Latest likes"] = "Últomos Me gusta"; +$a->strings["event"] = "evento"; +$a->strings["status"] = "estatus social"; +$a->strings["photo"] = "foto"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s le gusta %2\$s's %3\$s"; +$a->strings["Welcome to %s"] = "Bienvenido a %s"; diff --git a/twitter/lang/es/messages.po b/twitter/lang/es/messages.po new file mode 100644 index 00000000..6cb69948 --- /dev/null +++ b/twitter/lang/es/messages.po @@ -0,0 +1,123 @@ +# ADDON twitter +# Copyright (C) +# This file is distributed under the same license as the Friendica twitter addon package. +# +# +# Translators: +# Athalbert, 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-10-10 15:07+0000\n" +"Last-Translator: Athalbert\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" +"Content-Transfer-Encoding: 8bit\n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: twitter.php:77 +msgid "Post to Twitter" +msgstr "Entrada para Twitter" + +#: twitter.php:129 +msgid "Twitter settings updated." +msgstr "Ajustes de Twitter actualizados." + +#: twitter.php:157 +msgid "Twitter Posting Settings" +msgstr "Ajustes de publicación de Twitter" + +#: twitter.php:164 +msgid "" +"No consumer key pair for Twitter found. Please contact your site " +"administrator." +msgstr "No hay par de claves para encuentro de Twitter." + +#: twitter.php:183 +msgid "" +"At this Friendica instance the Twitter plugin 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." +msgstr "En esta petición de Friendica el plugin de Twitter estaba activo pero usted no ha conectado aún su cuenta con la cuenta de Twitter. Para hacerlo click en el botón de abajo para obtener un PIN desde Twitter que tiene que copiar en la caja de texto de abajo y enviar el formulario. Sólo sus entradas públicas serán posteadas en Twitter" + +#: twitter.php:184 +msgid "Log in with Twitter" +msgstr "Iniciar sesión con Twitter" + +#: twitter.php:186 +msgid "Copy the PIN from Twitter here" +msgstr "Copie el PIN de Twitter aquí" + +#: twitter.php:191 twitter.php:229 twitter.php:556 +msgid "Submit" +msgstr "Enviar" + +#: twitter.php:200 +msgid "Currently connected to: " +msgstr "Moneda conectada a:" + +#: twitter.php:201 +msgid "" +"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." +msgstr "Si habilita todas sus publicaciones públicas pueden ser publicadas en la cuenta de Twitter asociada. Puede elegir hacer eso por defecto (aquí) o por cada publicación por separado en las opciones de entrada cuando escriba la entrada." + +#: twitter.php:203 +msgid "" +"Note: Due 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." +msgstr "Nota: Debido a sus ajustes de privacidad (¿Ocultar sus detalles de perfil de espectadores desconocidos?) el enlace potencialmente incluido en publicaciones públicas relevado a Twitter llevará al visitante a una página en blanco informándole de que el acceso a su perfil ha sido restringido." + +#: twitter.php:206 +msgid "Allow posting to Twitter" +msgstr "Permitir publicar en Twitter" + +#: twitter.php:209 +msgid "Send public postings to Twitter by default" +msgstr "Enviar publicaciones públicas a Twitter por defecto" + +#: twitter.php:213 +msgid "Mirror all posts from twitter that are no replies or retweets" +msgstr "Reflejar todas las publicaciones de Twitter que no son respuestas o retweets." + +#: twitter.php:217 +msgid "Shortening method that optimizes the tweet" +msgstr "Método de corte the optimiza el tweet" + +#: twitter.php:221 +msgid "Send linked #-tags and @-names to Twitter" +msgstr "Enviar #-etiquetas enlazadas y @-nombres a Twitter" + +#: twitter.php:226 +msgid "Clear OAuth configuration" +msgstr "Borrar configuración OAuth" + +#: twitter.php:550 +msgid "Settings updated." +msgstr "Ajustes actualizados" + +#: twitter.php:558 +msgid "Consumer key" +msgstr "Clave de consumidor" + +#: twitter.php:559 +msgid "Consumer secret" +msgstr "Secreto de consumidor" + +#: twitter.php:560 +msgid "Name of the Twitter Application" +msgstr "Nombre de la aplicación de Twitter" + +#: twitter.php:560 +msgid "" +"set this to avoid mirroring postings from ~friendica back to ~friendica" +msgstr "Fijar esto para evitar el reflejo de publicaciones de ~friendica de vuelta a ~friendica" diff --git a/twitter/lang/es/strings.php b/twitter/lang/es/strings.php index 2169f393..c1168e4a 100644 --- a/twitter/lang/es/strings.php +++ b/twitter/lang/es/strings.php @@ -1,20 +1,29 @@ -strings["Post to Twitter"] = "Publicar en Twitter"; -$a->strings["Twitter settings updated."] = "Actualización de la configuración de Twitter"; -$a->strings["Twitter Posting Settings"] = "Configuración de publicaciones en Twitter"; -$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "No se ha encontrado ningún par de claves para Twitter. Póngase en contacto con el administrador del sitio."; -$a->strings["At this Friendica instance the Twitter plugin 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."] = "En esta instalación de Friendica el módulo de Twitter está activo pero aún no has conectado tu cuenta con la de Twitter. Para hacerlo, pulsa en el siguiente botón para obtener un PIN de Twitter, que deberás introducir en la casilla de abajo y enviar el formulario. Unicamente el contenido público que publiques será publicado en Twitter."; -$a->strings["Log in with Twitter"] = "Acceder con Twitter"; -$a->strings["Copy the PIN from Twitter here"] = "Copia el PIN de Twitter aquí"; -$a->strings["Submit"] = "Envíar"; -$a->strings["Currently connected to: "] = "Actualmente conectado a:"; -$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."] = "Si lo habilitas todas tus publicaciones públicas serán publicadas en la cuenta de Twitter asociada. Puedes elegir hacerlo por defecto (aquí) o individualmente para cada publicación usando las opciones cuando escribas."; -$a->strings["Note: Due 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."] = "Nota: Debido a tus opciones de privacidad (¿Ocultar los detalles de tu perfil de espectadores desconocidos?) el vínculo potencialmente incluido en publicaciones públicas que se transmiten a Twitter conducirá al visitante a una página en blanco que informa a los visitantes que el acceso a tu perfil es restringido."; -$a->strings["Allow posting to Twitter"] = "Permitir publicar en Twitter"; -$a->strings["Send public postings to Twitter by default"] = "Enviar publicaciones públicas a Twitter por defecto"; -$a->strings["Send linked #-tags and @-names to Twitter"] = "Enviar a Twitter las #-etiquetas y @-nombres"; -$a->strings["Clear OAuth configuration"] = "Borrar la configuración de OAuth"; -$a->strings["Settings updated."] = "Configuración actualizada."; -$a->strings["Consumer key"] = "Clave del usuario"; -$a->strings["Consumer secret"] = "Secreto del usuario"; +strings["Post to Twitter"] = "Entrada para Twitter"; +$a->strings["Twitter settings updated."] = "Ajustes de Twitter actualizados."; +$a->strings["Twitter Posting Settings"] = "Ajustes de publicación de Twitter"; +$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "No hay par de claves para encuentro de Twitter."; +$a->strings["At this Friendica instance the Twitter plugin 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."] = "En esta petición de Friendica el plugin de Twitter estaba activo pero usted no ha conectado aún su cuenta con la cuenta de Twitter. Para hacerlo click en el botón de abajo para obtener un PIN desde Twitter que tiene que copiar en la caja de texto de abajo y enviar el formulario. Sólo sus entradas públicas serán posteadas en Twitter"; +$a->strings["Log in with Twitter"] = "Iniciar sesión con Twitter"; +$a->strings["Copy the PIN from Twitter here"] = "Copie el PIN de Twitter aquí"; +$a->strings["Submit"] = "Enviar"; +$a->strings["Currently connected to: "] = "Moneda conectada a:"; +$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."] = "Si habilita todas sus publicaciones públicas pueden ser publicadas en la cuenta de Twitter asociada. Puede elegir hacer eso por defecto (aquí) o por cada publicación por separado en las opciones de entrada cuando escriba la entrada."; +$a->strings["Note: Due 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."] = "Nota: Debido a sus ajustes de privacidad (¿Ocultar sus detalles de perfil de espectadores desconocidos?) el enlace potencialmente incluido en publicaciones públicas relevado a Twitter llevará al visitante a una página en blanco informándole de que el acceso a su perfil ha sido restringido."; +$a->strings["Allow posting to Twitter"] = "Permitir publicar en Twitter"; +$a->strings["Send public postings to Twitter by default"] = "Enviar publicaciones públicas a Twitter por defecto"; +$a->strings["Mirror all posts from twitter that are no replies or retweets"] = "Reflejar todas las publicaciones de Twitter que no son respuestas o retweets."; +$a->strings["Shortening method that optimizes the tweet"] = "Método de corte the optimiza el tweet"; +$a->strings["Send linked #-tags and @-names to Twitter"] = "Enviar #-etiquetas enlazadas y @-nombres a Twitter"; +$a->strings["Clear OAuth configuration"] = "Borrar configuración OAuth"; +$a->strings["Settings updated."] = "Ajustes actualizados"; +$a->strings["Consumer key"] = "Clave de consumidor"; +$a->strings["Consumer secret"] = "Secreto de consumidor"; +$a->strings["Name of the Twitter Application"] = "Nombre de la aplicación de Twitter"; +$a->strings["set this to avoid mirroring postings from ~friendica back to ~friendica"] = "Fijar esto para evitar el reflejo de publicaciones de ~friendica de vuelta a ~friendica"; -- 2.43.4 From 1d100905a2f9baf64e1644b9d55c2cdbe8299b6d Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Thu, 13 Oct 2016 07:21:34 +0200 Subject: [PATCH 11/24] =?UTF-8?q?ES=20update=20to=20the=20translations=20T?= =?UTF-8?q?HX=20Alberto=20D=C3=ADaz?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- openstreetmap/lang/es/messages.po | 46 ++++++++++++++++++++++ openstreetmap/lang/es/strings.php | 21 ++++++---- piwik/lang/es/messages.po | 64 +++++++++++++++++++++++++++++++ piwik/lang/es/strings.php | 27 +++++++------ planets/lang/es/messages.po | 32 ++++++++++++++++ planets/lang/es/strings.php | 15 +++++--- tumblr/lang/es/messages.po | 64 +++++++++++++++++++++++++++++++ tumblr/lang/es/strings.php | 26 +++++++++---- 8 files changed, 263 insertions(+), 32 deletions(-) create mode 100644 openstreetmap/lang/es/messages.po create mode 100644 piwik/lang/es/messages.po create mode 100644 planets/lang/es/messages.po create mode 100644 tumblr/lang/es/messages.po diff --git a/openstreetmap/lang/es/messages.po b/openstreetmap/lang/es/messages.po new file mode 100644 index 00000000..c7db998b --- /dev/null +++ b/openstreetmap/lang/es/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: +# Alberto Díaz , 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-10-12 15:01+0000\n" +"Last-Translator: Alberto Díaz \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: openstreetmap.php:94 +msgid "Submit" +msgstr "Enviar" + +#: openstreetmap.php:95 +msgid "Tile Server URL" +msgstr "URL del mosaico de servidor" + +#: openstreetmap.php:95 +msgid "" +"A list of public tile servers" +msgstr "Una lista de mosaico de servidores públicos" + +#: openstreetmap.php:96 +msgid "Default zoom" +msgstr "Zoom por defecto" + +#: openstreetmap.php:96 +msgid "The default zoom level. (1:world, 18:highest)" +msgstr "El nivel por defecto de zoom. (1:world, 18:highest)" + +#: openstreetmap.php:104 +msgid "Settings updated." +msgstr "Ajustes actualizados" diff --git a/openstreetmap/lang/es/strings.php b/openstreetmap/lang/es/strings.php index 0c40375e..d8a59d0e 100644 --- a/openstreetmap/lang/es/strings.php +++ b/openstreetmap/lang/es/strings.php @@ -1,8 +1,13 @@ -strings["Submit"] = "Envíar"; -$a->strings["Tile Server URL"] = "Dirección del servidor"; -$a->strings["A list of public tile servers"] = "Un listado de servidores públicos"; -$a->strings["Default zoom"] = "Zoom por defecto"; -$a->strings["The default zoom level. (1:world, 18:highest)"] = "Nivel de zoom predeterminado. (1:mínimo, 18:máximo)"; -$a->strings["Settings updated."] = "Configuración actualizada."; +strings["Submit"] = "Enviar"; +$a->strings["Tile Server URL"] = "URL del mosaico de servidor"; +$a->strings["A list of public tile servers"] = "Una lista de mosaico de servidores públicos"; +$a->strings["Default zoom"] = "Zoom por defecto"; +$a->strings["The default zoom level. (1:world, 18:highest)"] = "El nivel por defecto de zoom. (1:world, 18:highest)"; +$a->strings["Settings updated."] = "Ajustes actualizados"; diff --git a/piwik/lang/es/messages.po b/piwik/lang/es/messages.po new file mode 100644 index 00000000..fff8cea3 --- /dev/null +++ b/piwik/lang/es/messages.po @@ -0,0 +1,64 @@ +# ADDON piwik +# Copyright (C) +# This file is distributed under the same license as the Friendica piwik addon package. +# +# +# Translators: +# Alberto Díaz , 2016 +msgid "" +msgstr "" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-07-26 12:49+0200\n" +"PO-Revision-Date: 2016-10-12 14:57+0000\n" +"Last-Translator: Alberto Díaz \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: piwik.php:79 +msgid "" +"This website is tracked using the Piwik " +"analytics tool." +msgstr "Esta página es rastreada usando la herramienta analítica Piwik." + +#: piwik.php:82 +#, php-format +msgid "" +"If you do not want that your visits are logged in this way you can set a cookie to prevent Piwik from tracking further visits of " +"the site (opt-out)." +msgstr "Si no quiere que sus visitas sean registradas puede seleccionar una cookie para evitar que Piwik rastree más visitas de la página (cláusula de opción)." + +#: piwik.php:89 +msgid "Save Settings" +msgstr "Guardar ajustes" + +#: piwik.php:90 +msgid "Piwik Base URL" +msgstr "URL Base de Piwik" + +#: piwik.php:90 +msgid "" +"Absolute path to your Piwik installation. (without protocol (http/s), with " +"trailing slash)" +msgstr "Camino a la instalación de su Piwik. (sin protocolo (http/s), con corte de cola)" + +#: piwik.php:91 +msgid "Site ID" +msgstr "ID de la página" + +#: piwik.php:92 +msgid "Show opt-out cookie link?" +msgstr "Mostrar enlace a cláusula de opción de cookie" + +#: piwik.php:93 +msgid "Asynchronous tracking" +msgstr "Rastreo asíncrono" + +#: piwik.php:105 +msgid "Settings updated." +msgstr "Ajustes actualizados" diff --git a/piwik/lang/es/strings.php b/piwik/lang/es/strings.php index 59e264ae..96a61a4a 100644 --- a/piwik/lang/es/strings.php +++ b/piwik/lang/es/strings.php @@ -1,11 +1,16 @@ -strings["This website is tracked using the Piwik analytics tool."] = "Este sitio realiza un seguimiento mediante la herramienta de análisis Piwik."; -$a->strings["If you do not want that your visits are logged this way you can set a cookie to prevent Piwik from tracking further visits of the site (opt-out)."] = "Si no quieres que tus visitas sean registradas de esta manera puedes establecer una cookie para evitar que Piwik realice un seguimiento de las visitas del sitio (opt-out)."; -$a->strings["Submit"] = "Envíar"; -$a->strings["Piwik Base URL"] = "Dirección base Piwik"; -$a->strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "Ruta absoluta a tu instalación de Piwik (sin el protocolo (http/s) pero con la barra)."; -$a->strings["Site ID"] = "ID del sitio"; -$a->strings["Show opt-out cookie link?"] = "¿Mostrar enlace a las cookies?"; -$a->strings["Asynchronous tracking"] = "Seguimiento asíncrono"; -$a->strings["Settings updated."] = "Configuración actualizada."; +strings["This website is tracked using the Piwik analytics tool."] = "Esta página es rastreada usando la herramienta analítica Piwik."; +$a->strings["If you do not want that your visits are logged in this way you can set a cookie to prevent Piwik from tracking further visits of the site (opt-out)."] = "Si no quiere que sus visitas sean registradas puede seleccionar una cookie para evitar que Piwik rastree más visitas de la página (cláusula de opción)."; +$a->strings["Save Settings"] = "Guardar ajustes"; +$a->strings["Piwik Base URL"] = "URL Base de Piwik"; +$a->strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "Camino a la instalación de su Piwik. (sin protocolo (http/s), con corte de cola)"; +$a->strings["Site ID"] = "ID de la página"; +$a->strings["Show opt-out cookie link?"] = "Mostrar enlace a cláusula de opción de cookie"; +$a->strings["Asynchronous tracking"] = "Rastreo asíncrono"; +$a->strings["Settings updated."] = "Ajustes actualizados"; diff --git a/planets/lang/es/messages.po b/planets/lang/es/messages.po new file mode 100644 index 00000000..294da082 --- /dev/null +++ b/planets/lang/es/messages.po @@ -0,0 +1,32 @@ +# ADDON planets +# Copyright (C) +# This file is distributed under the same license as the Friendica planets addon package. +# +# +# Translators: +# Alberto Díaz , 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-10-12 15:12+0000\n" +"Last-Translator: Alberto Díaz \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: planets.php:150 +msgid "Planets Settings" +msgstr "Ajustes de Planets" + +#: planets.php:152 +msgid "Enable Planets Plugin" +msgstr "Habilite el plugin Planets" + +#: planets.php:158 +msgid "Submit" +msgstr "Enviar" diff --git a/planets/lang/es/strings.php b/planets/lang/es/strings.php index 67b52dcd..8c7ef65d 100644 --- a/planets/lang/es/strings.php +++ b/planets/lang/es/strings.php @@ -1,5 +1,10 @@ -strings["Planets Settings"] = "Configuración de Planets"; -$a->strings["Enable Planets Plugin"] = "Activar el módulo de planetas Planets"; -$a->strings["Submit"] = "Envíar"; +strings["Planets Settings"] = "Ajustes de Planets"; +$a->strings["Enable Planets Plugin"] = "Habilite el plugin Planets"; +$a->strings["Submit"] = "Enviar"; diff --git a/tumblr/lang/es/messages.po b/tumblr/lang/es/messages.po new file mode 100644 index 00000000..2f2eb431 --- /dev/null +++ b/tumblr/lang/es/messages.po @@ -0,0 +1,64 @@ +# ADDON tumblr +# Copyright (C) +# This file is distributed under the same license as the Friendica tumblr addon package. +# +# +# Translators: +# Alberto Díaz , 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-10-12 15:15+0000\n" +"Last-Translator: Alberto Díaz \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: tumblr.php:34 +msgid "Permission denied." +msgstr "Permiso denegado." + +#: tumblr.php:144 +msgid "You are now authenticated to tumblr." +msgstr "Está ahora autenticado en tumblr." + +#: tumblr.php:145 +msgid "return to the connector page" +msgstr "Vuelva a la página del conector" + +#: tumblr.php:158 +msgid "Post to Tumblr" +msgstr "Publicar en Tumblr" + +#: tumblr.php:185 +msgid "Tumblr Post Settings" +msgstr "Ajustes de publicación de Tumblr" + +#: tumblr.php:188 +msgid "(Re-)Authenticate your tumblr page" +msgstr "(Re-)autenticar su página de tumblr" + +#: tumblr.php:192 +msgid "Enable Tumblr Post Plugin" +msgstr "Habilite el plugin Tumblr Post" + +#: tumblr.php:197 +msgid "Post to Tumblr by default" +msgstr "Publique en Tumblr por defecto" + +#: tumblr.php:217 +msgid "Post to page:" +msgstr "Publicar en página:" + +#: tumblr.php:228 +msgid "You are not authenticated to tumblr" +msgstr "No está autenticado en tumblr" + +#: tumblr.php:233 +msgid "Submit" +msgstr "Enviar" diff --git a/tumblr/lang/es/strings.php b/tumblr/lang/es/strings.php index af34a57c..3a6e5ce9 100644 --- a/tumblr/lang/es/strings.php +++ b/tumblr/lang/es/strings.php @@ -1,8 +1,18 @@ -strings["Permission denied."] = "Permiso denegado."; -$a->strings["Post to Tumblr"] = "Publicar en Tumblr"; -$a->strings["Tumblr Post Settings"] = "Configuración de publicación en Tumblr"; -$a->strings["Enable Tumblr Post Plugin"] = "Habilitar el módulo de publicación en Tumblr"; -$a->strings["Post to Tumblr by default"] = "Publicar en Tumblr por defecto"; -$a->strings["Submit"] = "Envíar"; +strings["Permission denied."] = "Permiso denegado."; +$a->strings["You are now authenticated to tumblr."] = "Está ahora autenticado en tumblr."; +$a->strings["return to the connector page"] = "Vuelva a la página del conector"; +$a->strings["Post to Tumblr"] = "Publicar en Tumblr"; +$a->strings["Tumblr Post Settings"] = "Ajustes de publicación de Tumblr"; +$a->strings["(Re-)Authenticate your tumblr page"] = "(Re-)autenticar su página de tumblr"; +$a->strings["Enable Tumblr Post Plugin"] = "Habilite el plugin Tumblr Post"; +$a->strings["Post to Tumblr by default"] = "Publique en Tumblr por defecto"; +$a->strings["Post to page:"] = "Publicar en página:"; +$a->strings["You are not authenticated to tumblr"] = "No está autenticado en tumblr"; +$a->strings["Submit"] = "Enviar"; -- 2.43.4 From dea5b336322d07ac4a1052e87f1d5a622c1527ca Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 7 Nov 2016 05:23:19 +0000 Subject: [PATCH 12/24] Prevent posting loops --- fromgplus/fromgplus.php | 21 ++++++++++++++++----- statusnet/statusnet.php | 3 +++ twitter/twitter.php | 3 +++ 3 files changed, 22 insertions(+), 5 deletions(-) diff --git a/fromgplus/fromgplus.php b/fromgplus/fromgplus.php index c8026ad3..4c96892c 100644 --- a/fromgplus/fromgplus.php +++ b/fromgplus/fromgplus.php @@ -39,6 +39,7 @@ function fromgplus_addon_settings(&$a,&$s) { return; $enable_checked = (intval(get_pconfig(local_user(),'fromgplus','enable')) ? ' checked="checked"' : ''); + $keywords_checked = (intval(get_pconfig(local_user(), 'fromgplus', 'keywords')) ? ' checked="checked"' : ''); $account = get_pconfig(local_user(),'fromgplus','account'); $s .= ''; @@ -57,6 +58,9 @@ function fromgplus_addon_settings(&$a,&$s) { $s .= ''; $s .= ''; $s .= '
'; + $s .= ''; + $s .= ''; + $s .= '
'; $s .= '
'; @@ -74,6 +78,8 @@ function fromgplus_addon_settings_post(&$a,&$b) { set_pconfig(local_user(),'fromgplus','account',trim($_POST['fromgplus-account'])); $enable = ((x($_POST,'fromgplus-enable')) ? intval($_POST['fromgplus-enable']) : 0); set_pconfig(local_user(),'fromgplus','enable', $enable); + $keywords = ((x($_POST, 'fromgplus-keywords')) ? intval($_POST['fromgplus-keywords']) : 0); + set_pconfig(local_user(),'fromgplus', 'keywords', $keywords); if (!$enable) del_pconfig(local_user(),'fromgplus','lastdate'); @@ -130,7 +136,7 @@ function fromgplus_cron($a,$b) { set_config('fromgplus','last_poll', time()); } -function fromgplus_post($a, $uid, $source, $body, $location, $coord) { +function fromgplus_post($a, $uid, $source, $body, $location, $coord, $id) { //$uid = 2; @@ -158,6 +164,9 @@ function fromgplus_post($a, $uid, $source, $body, $location, $coord) { $_REQUEST['source'] = $source; $_REQUEST['extid'] = NETWORK_GPLUS; + if (isset($id)) + $_REQUEST['message_id'] = NETWORK_GPLUS.":".$id; + // $_REQUEST['verb'] // $_REQUEST['parent'] // $_REQUEST['parent_uri'] @@ -327,9 +336,9 @@ function fromgplus_handleattachments($a, $uid, $item, $displaytext, $shared) { // Add Keywords to page link $data = parseurl_getsiteinfo_cached($pagedata["url"], true); - if (isset($data["keywords"])) + if (isset($data["keywords"]) AND get_pconfig($uid, 'fromgplus', 'keywords')) { $pagedata["keywords"] = $data["keywords"]; - + } break; case "photo": @@ -452,6 +461,8 @@ function fromgplus_fetch($a, $uid) { if ($lastdate < strtotime($item->published)) $lastdate = strtotime($item->published); + set_pconfig($uid,'fromgplus','lastdate', $lastdate); + if ($first_time) continue; @@ -485,7 +496,7 @@ function fromgplus_fetch($a, $uid) { } elseif (isset($item->address)) $location = $item->address; - fromgplus_post($a, $uid, $item->provider->title, $post, $location, $coord); + fromgplus_post($a, $uid, $item->provider->title, $post, $location, $coord, $item->id); break; @@ -536,7 +547,7 @@ function fromgplus_fetch($a, $uid) { } elseif (isset($item->address)) $location = $item->address; - fromgplus_post($a, $uid, $item->provider->title, $post, $location, $coord); + fromgplus_post($a, $uid, $item->provider->title, $post, $location, $coord, $item->id); break; } } diff --git a/statusnet/statusnet.php b/statusnet/statusnet.php index 4fdd6a74..febe4032 100644 --- a/statusnet/statusnet.php +++ b/statusnet/statusnet.php @@ -872,6 +872,9 @@ function statusnet_fetchtimeline($a, $uid) { $_REQUEST["source"] = $post->source; $_REQUEST["extid"] = NETWORK_STATUSNET; + if (isset($post->id)) + $_REQUEST['message_id'] = NETWORK_STATUSNET.":".$post->id; + //$_REQUEST["date"] = $post->created_at; $_REQUEST["title"] = ""; diff --git a/twitter/twitter.php b/twitter/twitter.php index 8f023dfe..e7429696 100644 --- a/twitter/twitter.php +++ b/twitter/twitter.php @@ -791,6 +791,9 @@ function twitter_fetchtimeline($a, $uid) { $_REQUEST["source"] = $post->source; $_REQUEST["extid"] = NETWORK_TWITTER; + if (isset($post->id)) + $_REQUEST['message_id'] = NETWORK_TWITTER.":".$post->id; + //$_REQUEST["date"] = $post->created_at; $_REQUEST["title"] = ""; -- 2.43.4 From 327b810438ab364adfd962d08def33978b994e37 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Thu, 10 Nov 2016 10:38:52 +0100 Subject: [PATCH 13/24] ES libravatar --- libravatar/lang/es/messages.po | 84 ++++++++++++++++++++++++++++++++++ libravatar/lang/es/strings.php | 39 +++++++++------- 2 files changed, 106 insertions(+), 17 deletions(-) create mode 100644 libravatar/lang/es/messages.po diff --git a/libravatar/lang/es/messages.po b/libravatar/lang/es/messages.po new file mode 100644 index 00000000..a4dd4a43 --- /dev/null +++ b/libravatar/lang/es/messages.po @@ -0,0 +1,84 @@ +# ADDON libravatar +# Copyright (C) +# This file is distributed under the same license as the Friendica libravatar addon package. +# +# +# Translators: +# Alberto Díaz Tormo , 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-10-12 15:10+0000\n" +"Last-Translator: Alberto Díaz Tormo \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: libravatar.php:14 +msgid "Could NOT install Libravatar successfully.
It requires PHP >= 5.3" +msgstr "Podría NO instalar Libravatar con éxito.
Requiere PHP >= 5.3" + +#: libravatar.php:73 +msgid "generic profile image" +msgstr "Imagen de perfil genérica" + +#: libravatar.php:74 +msgid "random geometric pattern" +msgstr "Estampado geométrico aleatorio" + +#: libravatar.php:75 +msgid "monster face" +msgstr "cara de monstruo" + +#: libravatar.php:76 +msgid "computer generated face" +msgstr "Cara generada por ordenador" + +#: libravatar.php:77 +msgid "retro arcade style face" +msgstr "Cara de estilo retro" + +#: libravatar.php:82 +msgid "Warning" +msgstr "Advertencia" + +#: libravatar.php:83 +#, php-format +msgid "Your PHP version %s is lower than the required PHP >= 5.3." +msgstr "Su versión PHP %s es inferior a la requerida PHP >= 5.3." + +#: libravatar.php:84 +msgid "This addon is not functional on your server." +msgstr "Este complemento no es funcional en su servidor" + +#: libravatar.php:93 +msgid "Information" +msgstr "Información" + +#: libravatar.php:93 +msgid "" +"Gravatar addon is installed. Please disable the Gravatar addon.
The " +"Libravatar addon will fall back to Gravatar if nothing was found at " +"Libravatar." +msgstr "El complemento Gravatar se ha instalado. Por favor desactive el complemento Gravatar.
El complemento Libravatar quedará por detrás de Gravatar si no se encuentra nada en Libravatar." + +#: libravatar.php:99 +msgid "Submit" +msgstr "Enviar" + +#: libravatar.php:100 +msgid "Default avatar image" +msgstr "Imagen de avatar por defecto" + +#: libravatar.php:100 +msgid "Select default avatar image if none was found. See README" +msgstr "Selecione el avatar por defecto si no se encuentra ninguno. Vea README" + +#: libravatar.php:112 +msgid "Libravatar settings updated." +msgstr "Ajustes de Libravatar actualizados" diff --git a/libravatar/lang/es/strings.php b/libravatar/lang/es/strings.php index a746d580..1ab20cf1 100644 --- a/libravatar/lang/es/strings.php +++ b/libravatar/lang/es/strings.php @@ -1,17 +1,22 @@ -strings["Could NOT install Libravatar successfully.
It requires PHP >= 5.3"] = "Libravatar puede no haberse instalado correctamente.
Requiere PHP >=5.3"; -$a->strings["generic profile image"] = "imagen genérica del perfil"; -$a->strings["random geometric pattern"] = "patrón geométrico aleatorio"; -$a->strings["monster face"] = "monstruosa"; -$a->strings["computer generated face"] = "generada por ordenador"; -$a->strings["retro arcade style face"] = "estilo retro arcade"; -$a->strings["Warning"] = "Aviso"; -$a->strings["Your PHP version %s is lower than the required PHP >= 5.3."] = "Tu versión de PHP %s, menor que la requerida (PHP >=5.3)."; -$a->strings["This addon is not functional on your server."] = "Esta funcionalidad no está activa en tu servidor."; -$a->strings["Information"] = "Información"; -$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."] = "El complemento Gravatar está instalado. Por favor, desactiva dicho complemento.
El complemento Libravatar usará Gravatar si no encuentra nada en Libravatar."; -$a->strings["Submit"] = "Envíar"; -$a->strings["Default avatar image"] = "Imagen del avatar por defecto"; -$a->strings["Select default avatar image if none was found. See README"] = "Elige una imagen para tu avatar si no se encuentra ninguna (ver README)"; -$a->strings["Libravatar settings updated."] = "Configuración de Libravatar actualizada."; +strings["Could NOT install Libravatar successfully.
It requires PHP >= 5.3"] = "Podría NO instalar Libravatar con éxito.
Requiere PHP >= 5.3"; +$a->strings["generic profile image"] = "Imagen de perfil genérica"; +$a->strings["random geometric pattern"] = "Estampado geométrico aleatorio"; +$a->strings["monster face"] = "cara de monstruo"; +$a->strings["computer generated face"] = "Cara generada por ordenador"; +$a->strings["retro arcade style face"] = "Cara de estilo retro"; +$a->strings["Warning"] = "Advertencia"; +$a->strings["Your PHP version %s is lower than the required PHP >= 5.3."] = "Su versión PHP %s es inferior a la requerida PHP >= 5.3."; +$a->strings["This addon is not functional on your server."] = "Este complemento no es funcional en su servidor"; +$a->strings["Information"] = "Información"; +$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."] = "El complemento Gravatar se ha instalado. Por favor desactive el complemento Gravatar.
El complemento Libravatar quedará por detrás de Gravatar si no se encuentra nada en Libravatar."; +$a->strings["Submit"] = "Enviar"; +$a->strings["Default avatar image"] = "Imagen de avatar por defecto"; +$a->strings["Select default avatar image if none was found. See README"] = "Selecione el avatar por defecto si no se encuentra ninguno. Vea README"; +$a->strings["Libravatar settings updated."] = "Ajustes de Libravatar actualizados"; -- 2.43.4 From 26fdee5b2313cbf7172b024b408a7ac206b1d0ba Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Thu, 10 Nov 2016 10:40:07 +0100 Subject: [PATCH 14/24] ES appnet --- appnet/lang/es/messages.po | 7 ++++--- appnet/lang/es/strings.php | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/appnet/lang/es/messages.po b/appnet/lang/es/messages.po index 78d083d4..a44089d7 100644 --- a/appnet/lang/es/messages.po +++ b/appnet/lang/es/messages.po @@ -4,13 +4,14 @@ # # # Translators: +# Alberto Díaz Tormo , 2016 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-06-22 11:47+0200\n" -"PO-Revision-Date: 2016-10-10 17:59+0000\n" -"Last-Translator: Athalbert\n" +"PO-Revision-Date: 2016-10-13 21:25+0000\n" +"Last-Translator: Alberto Díaz Tormo \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" @@ -73,7 +74,7 @@ msgid "" "

First way: Register an application at https://account.app.net/developer/apps/" " and enter Client ID and Client Secret. " -msgstr "" +msgstr "

Primera forma: Registrar una aplicación en https://account.app.net/developer/apps/ y seleccionar Client ID y Client Secret. " #: appnet.php:167 #, php-format diff --git a/appnet/lang/es/strings.php b/appnet/lang/es/strings.php index 10631799..020c6f35 100644 --- a/appnet/lang/es/strings.php +++ b/appnet/lang/es/strings.php @@ -17,7 +17,7 @@ $a->strings["Post to App.net by default"] = "Publicar en App.net por defecto"; $a->strings["Import the remote timeline"] = "Importar la línea de tiempo remota"; $a->strings["

Error fetching user profile. Please clear the configuration and try again.

"] = "

Advertencia de error de perfil. Por favor borre la configuración e inténtelo de nuevo.

"; $a->strings["

You have two ways to connect to App.net.

"] = "

Tiene dos formas de conectar a App.net.

"; -$a->strings["

First way: Register an application at https://account.app.net/developer/apps/ and enter Client ID and Client Secret. "] = ""; +$a->strings["

First way: Register an application at https://account.app.net/developer/apps/ and enter Client ID and Client Secret. "] = "

Primera forma: Registrar una aplicación en https://account.app.net/developer/apps/ y seleccionar Client ID y Client Secret. "; $a->strings["Use '%s' as Redirect URI

"] = "Use '%s' como Redirigir URI"; $a->strings["Client ID"] = "ID de cliente"; $a->strings["Client Secret"] = "Secreto de cliente"; -- 2.43.4 From 48d112f22218cfa14986b243fa64d735898461b6 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Thu, 10 Nov 2016 10:42:50 +0100 Subject: [PATCH 15/24] ES curweather --- curweather/lang/es/messages.po | 132 +++++++++++++++++++++++++++++++++ curweather/lang/es/strings.php | 37 ++++++++- 2 files changed, 166 insertions(+), 3 deletions(-) create mode 100644 curweather/lang/es/messages.po diff --git a/curweather/lang/es/messages.po b/curweather/lang/es/messages.po new file mode 100644 index 00000000..6dfd444d --- /dev/null +++ b/curweather/lang/es/messages.po @@ -0,0 +1,132 @@ +# ADDON curweather +# Copyright (C) +# This file is distributed under the same license as the Friendica curweather addon package. +# +# +# Translators: +# Alberto Díaz Tormo , 2016 +msgid "" +msgstr "" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-25 17:17+0200\n" +"PO-Revision-Date: 2016-10-23 11:30+0000\n" +"Last-Translator: Alberto Díaz Tormo \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: curweather.php:31 +msgid "Error fetching weather data.\\nError was: " +msgstr "Error al traer información del clima.\\nError era: " + +#: curweather.php:111 curweather.php:172 +msgid "Current Weather" +msgstr "Clima actual" + +#: curweather.php:118 +msgid "Relative Humidity" +msgstr "Humedad relativa" + +#: curweather.php:119 +msgid "Pressure" +msgstr "Presión" + +#: curweather.php:120 +msgid "Wind" +msgstr "Viento" + +#: curweather.php:121 +msgid "Last Updated" +msgstr "Última actualización" + +#: curweather.php:122 +msgid "Data by" +msgstr "Información por" + +#: curweather.php:123 +msgid "Show on map" +msgstr "Mostrar en mapa" + +#: curweather.php:128 +msgid "There was a problem accessing the weather data. But have a look" +msgstr "Hubo un problema al acceder a la información del clima. Pero eche un vistazo" + +#: curweather.php:130 +msgid "at OpenWeatherMap" +msgstr "en OpenWeatherMap" + +#: curweather.php:146 +msgid "Current Weather settings updated." +msgstr "Ajustes de clima actual actualizados" + +#: curweather.php:161 +msgid "No APPID found, please contact your admin to obtain one." +msgstr "No se encontró APPID, por favor contacte con su administrador para obtener una." + +#: curweather.php:171 curweather.php:200 +msgid "Save Settings" +msgstr "Guardar ajustes" + +#: curweather.php:172 +msgid "Settings" +msgstr "Ajustes" + +#: curweather.php:174 +msgid "Enter either the name of your location or the zip code." +msgstr "Introduzca el nombre de su ubicación o el código postal." + +#: curweather.php:175 +msgid "Your Location" +msgstr "Su ubicación" + +#: curweather.php:175 +msgid "" +"Identifier of your location (name or zip code), e.g. Berlin,DE or " +"14476,DE." +msgstr "Identificador de su ubicación (nombre o código postal), ej. Berlin,DE o 14476,DE." + +#: curweather.php:176 +msgid "Units" +msgstr "Unidades" + +#: curweather.php:176 +msgid "select if the temperature should be displayed in °C or °F" +msgstr "seleccionar si la temperatura debería ser mostrada en °C o °F" + +#: curweather.php:177 +msgid "Show weather data" +msgstr "Mostrar información de clima" + +#: curweather.php:190 +msgid "Curweather settings saved." +msgstr "Ajustes de clima guardados." + +#: curweather.php:201 +msgid "Caching Interval" +msgstr "Obteniendo intervalo" + +#: curweather.php:201 +msgid "" +"For how long should the weather data be cached? Choose according your " +"OpenWeatherMap account type." +msgstr "¿Durante cuánto tiempo debería ser obtenida la información de clima? Eliga de acuerdo a su tipo de cuenta de OpenWeatherMap." + +#: curweather.php:201 +msgid "no cache" +msgstr "sin almacenamiento" + +#: curweather.php:201 +msgid "minutes" +msgstr "minutos" + +#: curweather.php:202 +msgid "Your APPID" +msgstr "Su APPID" + +#: curweather.php:202 +msgid "Your API key provided by OpenWeatherMap" +msgstr "Su clave API provista por OpenWeatherMap" diff --git a/curweather/lang/es/strings.php b/curweather/lang/es/strings.php index 2394f48b..f968076a 100644 --- a/curweather/lang/es/strings.php +++ b/curweather/lang/es/strings.php @@ -1,3 +1,34 @@ -strings["Submit"] = "Envíar"; +strings["Error fetching weather data.\\nError was: "] = "Error al traer información del clima.\\nError era: "; +$a->strings["Current Weather"] = "Clima actual"; +$a->strings["Relative Humidity"] = "Humedad relativa"; +$a->strings["Pressure"] = "Presión"; +$a->strings["Wind"] = "Viento"; +$a->strings["Last Updated"] = "Última actualización"; +$a->strings["Data by"] = "Información por"; +$a->strings["Show on map"] = "Mostrar en mapa"; +$a->strings["There was a problem accessing the weather data. But have a look"] = "Hubo un problema al acceder a la información del clima. Pero eche un vistazo"; +$a->strings["at OpenWeatherMap"] = "en OpenWeatherMap"; +$a->strings["Current Weather settings updated."] = "Ajustes de clima actual actualizados"; +$a->strings["No APPID found, please contact your admin to obtain one."] = "No se encontró APPID, por favor contacte con su administrador para obtener una."; +$a->strings["Save Settings"] = "Guardar ajustes"; +$a->strings["Settings"] = "Ajustes"; +$a->strings["Enter either the name of your location or the zip code."] = "Introduzca el nombre de su ubicación o el código postal."; +$a->strings["Your Location"] = "Su ubicación"; +$a->strings["Identifier of your location (name or zip code), e.g. Berlin,DE or 14476,DE."] = "Identificador de su ubicación (nombre o código postal), ej. Berlin,DE o 14476,DE."; +$a->strings["Units"] = "Unidades"; +$a->strings["select if the temperature should be displayed in °C or °F"] = "seleccionar si la temperatura debería ser mostrada en °C o °F"; +$a->strings["Show weather data"] = "Mostrar información de clima"; +$a->strings["Curweather settings saved."] = "Ajustes de clima guardados."; +$a->strings["Caching Interval"] = "Obteniendo intervalo"; +$a->strings["For how long should the weather data be cached? Choose according your OpenWeatherMap account type."] = "¿Durante cuánto tiempo debería ser obtenida la información de clima? Eliga de acuerdo a su tipo de cuenta de OpenWeatherMap."; +$a->strings["no cache"] = "sin almacenamiento"; +$a->strings["minutes"] = "minutos"; +$a->strings["Your APPID"] = "Su APPID"; +$a->strings["Your API key provided by OpenWeatherMap"] = "Su clave API provista por OpenWeatherMap"; -- 2.43.4 From 14f4af7f8424b8c0a5bfae32c31ffdaccca094be Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Thu, 10 Nov 2016 10:44:25 +0100 Subject: [PATCH 16/24] ES dwpost --- dwpost/lang/es/messages.po | 48 ++++++++++++++++++++++++++++++++++++++ dwpost/lang/es/strings.php | 23 +++++++++++------- 2 files changed, 62 insertions(+), 9 deletions(-) create mode 100644 dwpost/lang/es/messages.po diff --git a/dwpost/lang/es/messages.po b/dwpost/lang/es/messages.po new file mode 100644 index 00000000..10368bb2 --- /dev/null +++ b/dwpost/lang/es/messages.po @@ -0,0 +1,48 @@ +# ADDON dwpost +# Copyright (C) +# This file is distributed under the same license as the Friendica dwpost addon package. +# +# +# Translators: +# Alberto Díaz Tormo , 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-10-23 11:33+0000\n" +"Last-Translator: Alberto Díaz Tormo \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: dwpost.php:39 +msgid "Post to Dreamwidth" +msgstr "Publicar en Dreamwidth" + +#: dwpost.php:70 +msgid "Dreamwidth Post Settings" +msgstr "Ajustes de publicación de Dreamwidth" + +#: dwpost.php:72 +msgid "Enable dreamwidth Post Plugin" +msgstr "Activar el plugin de publicación dreamwidth" + +#: dwpost.php:77 +msgid "dreamwidth username" +msgstr "Nombre de usuario de dreamwidth" + +#: dwpost.php:82 +msgid "dreamwidth password" +msgstr "Contraseña de dreamwidth" + +#: dwpost.php:87 +msgid "Post to dreamwidth by default" +msgstr "Publicar en dreamwidth por defecto" + +#: dwpost.php:93 +msgid "Submit" +msgstr "Enviar" diff --git a/dwpost/lang/es/strings.php b/dwpost/lang/es/strings.php index 11e6ff59..646b945b 100644 --- a/dwpost/lang/es/strings.php +++ b/dwpost/lang/es/strings.php @@ -1,9 +1,14 @@ -strings["Post to Dreamwidth"] = "Publicar en Dreamwidth"; -$a->strings["Dreamwidth Post Settings"] = "Configuración de las publicaciones en Dreamwidth"; -$a->strings["Enable dreamwidth Post Plugin"] = "Activar el módulo de publicación en Dreamwidth"; -$a->strings["dreamwidth username"] = "Nombre de usuario de Dreamwidth"; -$a->strings["dreamwidth password"] = "Contraseña de Dreamwidth"; -$a->strings["Post to dreamwidth by default"] = "Publicar en Dreamwidth por defecto"; -$a->strings["Submit"] = "Envíar"; +strings["Post to Dreamwidth"] = "Publicar en Dreamwidth"; +$a->strings["Dreamwidth Post Settings"] = "Ajustes de publicación de Dreamwidth"; +$a->strings["Enable dreamwidth Post Plugin"] = "Activar el plugin de publicación dreamwidth"; +$a->strings["dreamwidth username"] = "Nombre de usuario de dreamwidth"; +$a->strings["dreamwidth password"] = "Contraseña de dreamwidth"; +$a->strings["Post to dreamwidth by default"] = "Publicar en dreamwidth por defecto"; +$a->strings["Submit"] = "Enviar"; -- 2.43.4 From 1df8bc583e95e2b582a244bb1b1a57578c9e8740 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Thu, 10 Nov 2016 10:45:36 +0100 Subject: [PATCH 17/24] ES editplain --- editplain/lang/es/messages.po | 36 +++++++++++++++++++++++++++++++++++ editplain/lang/es/strings.php | 17 +++++++++++------ 2 files changed, 47 insertions(+), 6 deletions(-) create mode 100644 editplain/lang/es/messages.po diff --git a/editplain/lang/es/messages.po b/editplain/lang/es/messages.po new file mode 100644 index 00000000..97fd2c02 --- /dev/null +++ b/editplain/lang/es/messages.po @@ -0,0 +1,36 @@ +# ADDON editplain +# Copyright (C) +# This file is distributed under the same license as the Friendica editplain addon package. +# +# +# Translators: +# Alberto Díaz Tormo , 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-10-23 11:35+0000\n" +"Last-Translator: Alberto Díaz Tormo \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: editplain.php:46 +msgid "Editplain settings updated." +msgstr "Ajustes de edición sencillos actualizados." + +#: editplain.php:76 +msgid "Editplain Settings" +msgstr "Ajustes de edición sencillos" + +#: editplain.php:78 +msgid "Disable richtext status editor" +msgstr "Desactivar el editor de texto enriquecido del estatus" + +#: editplain.php:84 +msgid "Submit" +msgstr "Enviar" diff --git a/editplain/lang/es/strings.php b/editplain/lang/es/strings.php index 049b69b3..40caa5b0 100644 --- a/editplain/lang/es/strings.php +++ b/editplain/lang/es/strings.php @@ -1,6 +1,11 @@ -strings["Editplain settings updated."] = "Configuración del Editor de texto plano actualizada."; -$a->strings["Editplain Settings"] = "Configuración del Editor de texto plano"; -$a->strings["Disable richtext status editor"] = "Desactivar el editor de texto enriquecido"; -$a->strings["Submit"] = "Envíar"; +strings["Editplain settings updated."] = "Ajustes de edición sencillos actualizados."; +$a->strings["Editplain Settings"] = "Ajustes de edición sencillos"; +$a->strings["Disable richtext status editor"] = "Desactivar el editor de texto enriquecido del estatus"; +$a->strings["Submit"] = "Enviar"; -- 2.43.4 From e49092619975eaef6146860c1b2319957fde2c23 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Thu, 10 Nov 2016 10:46:54 +0100 Subject: [PATCH 18/24] ES forumdirectory --- forumdirectory/lang/es/messages.po | 80 ++++++++++++++++++++++++++++++ forumdirectory/lang/es/strings.php | 38 ++++++++------ 2 files changed, 102 insertions(+), 16 deletions(-) create mode 100644 forumdirectory/lang/es/messages.po diff --git a/forumdirectory/lang/es/messages.po b/forumdirectory/lang/es/messages.po new file mode 100644 index 00000000..ae1f3a48 --- /dev/null +++ b/forumdirectory/lang/es/messages.po @@ -0,0 +1,80 @@ +# ADDON forumdirectory +# Copyright (C) +# This file is distributed under the same license as the Friendica forumdirectory addon package. +# +# +# Translators: +# Alberto Díaz Tormo , 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-10-23 11:38+0000\n" +"Last-Translator: Alberto Díaz Tormo \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: forumdirectory.php:22 +msgid "Forum Directory" +msgstr "Directorio de foro" + +#: forumdirectory.php:53 +msgid "Public access denied." +msgstr "Acceso público denegado." + +#: forumdirectory.php:71 +msgid "Global Directory" +msgstr "Directorio global" + +#: forumdirectory.php:79 +msgid "Find on this site" +msgstr "Encontrar en esta página" + +#: forumdirectory.php:81 +msgid "Finding: " +msgstr "Conclusión:" + +#: forumdirectory.php:82 +msgid "Site Directory" +msgstr "Directorio de página" + +#: forumdirectory.php:83 +msgid "Find" +msgstr "Encontrar" + +#: forumdirectory.php:133 +msgid "Age: " +msgstr "Edad:" + +#: forumdirectory.php:136 +msgid "Gender: " +msgstr "Género:" + +#: forumdirectory.php:156 +msgid "Location:" +msgstr "Ubicación:" + +#: forumdirectory.php:158 +msgid "Gender:" +msgstr "Género:" + +#: forumdirectory.php:160 +msgid "Status:" +msgstr "Estado:" + +#: forumdirectory.php:162 +msgid "Homepage:" +msgstr "Página inicial:" + +#: forumdirectory.php:164 +msgid "About:" +msgstr "Sobre:" + +#: forumdirectory.php:201 +msgid "No entries (some entries may be hidden)." +msgstr "Sin entradas (algunas entradas pueden estar ocultas)." diff --git a/forumdirectory/lang/es/strings.php b/forumdirectory/lang/es/strings.php index e89e138c..03341780 100644 --- a/forumdirectory/lang/es/strings.php +++ b/forumdirectory/lang/es/strings.php @@ -1,16 +1,22 @@ -strings["Public access denied."] = "Acceso público denegado."; -$a->strings["Global Directory"] = "Directorio global"; -$a->strings["Find on this site"] = "Buscar en este sitio"; -$a->strings["Finding: "] = "Buscando: "; -$a->strings["Site Directory"] = "Directorio del sitio"; -$a->strings["Find"] = "Buscar"; -$a->strings["Age: "] = "Edad: "; -$a->strings["Gender: "] = "Género:"; -$a->strings["Location:"] = "Localización:"; -$a->strings["Gender:"] = "Género:"; -$a->strings["Status:"] = "Estado:"; -$a->strings["Homepage:"] = "Página de inicio:"; -$a->strings["About:"] = "Acerca de:"; -$a->strings["No entries (some entries may be hidden)."] = "Sin entradas (algunas pueden que estén ocultas)."; +strings["Forum Directory"] = "Directorio de foro"; +$a->strings["Public access denied."] = "Acceso público denegado."; +$a->strings["Global Directory"] = "Directorio global"; +$a->strings["Find on this site"] = "Encontrar en esta página"; +$a->strings["Finding: "] = "Conclusión:"; +$a->strings["Site Directory"] = "Directorio de página"; +$a->strings["Find"] = "Encontrar"; +$a->strings["Age: "] = "Edad:"; +$a->strings["Gender: "] = "Género:"; +$a->strings["Location:"] = "Ubicación:"; +$a->strings["Gender:"] = "Género:"; +$a->strings["Status:"] = "Estado:"; +$a->strings["Homepage:"] = "Página inicial:"; +$a->strings["About:"] = "Sobre:"; +$a->strings["No entries (some entries may be hidden)."] = "Sin entradas (algunas entradas pueden estar ocultas)."; -- 2.43.4 From 7f3a1217a3a2d303ab6733013719b2bfc59aadd5 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Thu, 10 Nov 2016 10:48:26 +0100 Subject: [PATCH 19/24] ES forumlist --- forumlist/lang/es/messages.po | 60 +++++++++++++++++++++++++++++++++++ forumlist/lang/es/strings.php | 29 ++++++++++------- 2 files changed, 77 insertions(+), 12 deletions(-) create mode 100644 forumlist/lang/es/messages.po diff --git a/forumlist/lang/es/messages.po b/forumlist/lang/es/messages.po new file mode 100644 index 00000000..5280a1cb --- /dev/null +++ b/forumlist/lang/es/messages.po @@ -0,0 +1,60 @@ +# ADDON forumlist +# Copyright (C) +# This file is distributed under the same license as the Friendica forumlist addon package. +# +# +# Translators: +# Alberto Díaz Tormo , 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-10-23 11:41+0000\n" +"Last-Translator: Alberto Díaz Tormo \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: forumlist.php:64 +msgid "Forums" +msgstr "Foros" + +#: forumlist.php:67 +msgid "show/hide" +msgstr "mostrar/ocultar" + +#: forumlist.php:81 +msgid "No forum subscriptions" +msgstr "Sin subscripciones de foro" + +#: forumlist.php:98 +msgid "Forums:" +msgstr "Foros:" + +#: forumlist.php:134 +msgid "Forumlist settings updated." +msgstr "Ajustes de la lista de foros actualizados." + +#: forumlist.php:162 +msgid "Forumlist Settings" +msgstr "Ajustes de la lista de foros" + +#: forumlist.php:164 +msgid "Randomise forum list" +msgstr "Aleatorizar la lista de foros" + +#: forumlist.php:167 +msgid "Show forums on profile page" +msgstr "Mostrar foros en la página de perfil" + +#: forumlist.php:170 +msgid "Show forums on network page" +msgstr "Mostrar foros en la página de red" + +#: forumlist.php:178 +msgid "Submit" +msgstr "Enviar" diff --git a/forumlist/lang/es/strings.php b/forumlist/lang/es/strings.php index 2d4e2795..6b7d13bb 100644 --- a/forumlist/lang/es/strings.php +++ b/forumlist/lang/es/strings.php @@ -1,12 +1,17 @@ -strings["Forums"] = "Foros"; -$a->strings["show/hide"] = "mostrar/ocultar"; -$a->strings["No forum subscriptions"] = "Foro sin suscrpciones"; -$a->strings["Forums:"] = "Foros:"; -$a->strings["Forumlist settings updated."] = "Ajustes de lista de foros actualizados."; -$a->strings["Forumlist Settings"] = "Ajustes de lista de foros"; -$a->strings["Randomise forum list"] = ""; -$a->strings["Show forums on profile page"] = ""; -$a->strings["Show forums on network page"] = ""; -$a->strings["Submit"] = "Envíar"; +strings["Forums"] = "Foros"; +$a->strings["show/hide"] = "mostrar/ocultar"; +$a->strings["No forum subscriptions"] = "Sin subscripciones de foro"; +$a->strings["Forums:"] = "Foros:"; +$a->strings["Forumlist settings updated."] = "Ajustes de la lista de foros actualizados."; +$a->strings["Forumlist Settings"] = "Ajustes de la lista de foros"; +$a->strings["Randomise forum list"] = "Aleatorizar la lista de foros"; +$a->strings["Show forums on profile page"] = "Mostrar foros en la página de perfil"; +$a->strings["Show forums on network page"] = "Mostrar foros en la página de red"; +$a->strings["Submit"] = "Enviar"; -- 2.43.4 From c296f5e59115f309db6f231d14f6060ea39fe50b Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Thu, 10 Nov 2016 10:52:05 +0100 Subject: [PATCH 20/24] ES fromapp --- fromapp/lang/es/messages.po | 41 +++++++++++++++++++++++++++++++++++++ fromapp/lang/es/strings.php | 19 ++++++++++------- 2 files changed, 53 insertions(+), 7 deletions(-) create mode 100644 fromapp/lang/es/messages.po diff --git a/fromapp/lang/es/messages.po b/fromapp/lang/es/messages.po new file mode 100644 index 00000000..4abce4a8 --- /dev/null +++ b/fromapp/lang/es/messages.po @@ -0,0 +1,41 @@ +# ADDON fromapp +# Copyright (C) +# This file is distributed under the same license as the Friendica fromapp addon package. +# +# +# Translators: +# Alberto Díaz Tormo , 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-10-23 13:48+0000\n" +"Last-Translator: Alberto Díaz Tormo \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: fromapp.php:38 +msgid "Fromapp settings updated." +msgstr "Ajustes de Fromapp actualizados." + +#: fromapp.php:64 +msgid "FromApp Settings" +msgstr "Ajustes de FromApp" + +#: fromapp.php:66 +msgid "" +"The application name you would like to show your posts originating from." +msgstr "El nombre de la aplicación desde la que le gustaría que se mostrasen sus publicaciones." + +#: fromapp.php:70 +msgid "Use this application name even if another application was used." +msgstr "Utilice este nombre de aplicación incluso si otra aplicación fue utilizada." + +#: fromapp.php:77 +msgid "Submit" +msgstr "Enviar" diff --git a/fromapp/lang/es/strings.php b/fromapp/lang/es/strings.php index 8fe518fd..84e1dcf8 100644 --- a/fromapp/lang/es/strings.php +++ b/fromapp/lang/es/strings.php @@ -1,7 +1,12 @@ -strings["Fromapp settings updated."] = ""; -$a->strings["FromApp Settings"] = ""; -$a->strings["The application name you would like to show your posts originating from."] = ""; -$a->strings["Use this application name even if another application was used."] = ""; -$a->strings["Submit"] = "Envíar"; +strings["Fromapp settings updated."] = "Ajustes de Fromapp actualizados."; +$a->strings["FromApp Settings"] = "Ajustes de FromApp"; +$a->strings["The application name you would like to show your posts originating from."] = "El nombre de la aplicación desde la que le gustaría que se mostrasen sus publicaciones."; +$a->strings["Use this application name even if another application was used."] = "Utilice este nombre de aplicación incluso si otra aplicación fue utilizada."; +$a->strings["Submit"] = "Enviar"; -- 2.43.4 From 99b69aaa95d2ec4338b3965319ce57267970368d Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Thu, 10 Nov 2016 10:53:17 +0100 Subject: [PATCH 21/24] ES fromgplus --- fromgplus/lang/es/messages.po | 40 +++++++++++++++++++++++++++++++++++ fromgplus/lang/es/strings.php | 19 +++++++++++------ 2 files changed, 52 insertions(+), 7 deletions(-) create mode 100644 fromgplus/lang/es/messages.po diff --git a/fromgplus/lang/es/messages.po b/fromgplus/lang/es/messages.po new file mode 100644 index 00000000..ac944d6a --- /dev/null +++ b/fromgplus/lang/es/messages.po @@ -0,0 +1,40 @@ +# ADDON fromgplus +# Copyright (C) +# This file is distributed under the same license as the Friendica fromgplus addon package. +# +# +# Translators: +# Alberto Díaz Tormo , 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-10-23 13:49+0000\n" +"Last-Translator: Alberto Díaz Tormo \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: fromgplus.php:33 +msgid "Google+ Import Settings" +msgstr "Ajustes de importación de Google+" + +#: fromgplus.php:36 +msgid "Enable Google+ Import" +msgstr "Habilitar importación de Google+" + +#: fromgplus.php:39 +msgid "Google Account ID" +msgstr "ID de cuenta de Google" + +#: fromgplus.php:44 +msgid "Submit" +msgstr "Enviar" + +#: fromgplus.php:59 +msgid "Google+ Import Settings saved." +msgstr "Ajustes de importación de Google+ guardados." diff --git a/fromgplus/lang/es/strings.php b/fromgplus/lang/es/strings.php index 4ea59f9a..3a96b1ac 100644 --- a/fromgplus/lang/es/strings.php +++ b/fromgplus/lang/es/strings.php @@ -1,7 +1,12 @@ -strings["Google+ Import Settings"] = "Configuración de la importación de Google+"; -$a->strings["Enable Google+ Import"] = "Habilitar la importación de Google+"; -$a->strings["Google Account ID"] = "ID de la cuenta de Google"; -$a->strings["Submit"] = "Envíar"; -$a->strings["Google+ Import Settings saved."] = "Configuración de la importación de Google+ guardada."; +strings["Google+ Import Settings"] = "Ajustes de importación de Google+"; +$a->strings["Enable Google+ Import"] = "Habilitar importación de Google+"; +$a->strings["Google Account ID"] = "ID de cuenta de Google"; +$a->strings["Submit"] = "Enviar"; +$a->strings["Google+ Import Settings saved."] = "Ajustes de importación de Google+ guardados."; -- 2.43.4 From a220c6170d523992e3ba30dca2eedec5d44e3655 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Thu, 10 Nov 2016 10:54:56 +0100 Subject: [PATCH 22/24] ES dav --- dav/lang/es/messages.po | 578 ++++++++++++++++++++++++++++++++++++++++ dav/lang/es/strings.php | 277 +++++++++---------- 2 files changed, 719 insertions(+), 136 deletions(-) create mode 100644 dav/lang/es/messages.po diff --git a/dav/lang/es/messages.po b/dav/lang/es/messages.po new file mode 100644 index 00000000..c5c623ee --- /dev/null +++ b/dav/lang/es/messages.po @@ -0,0 +1,578 @@ +# ADDON dav +# Copyright (C) +# This file is distributed under the same license as the Friendica dav addon package. +# +# +# Translators: +# Alberto Díaz Tormo , 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-08 16:28+0000\n" +"Last-Translator: Alberto Díaz Tormo \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: friendica/dav_caldav_backend_virtual_friendica.inc.php:36 +msgid "Friendica-Native events" +msgstr "Eventos Nativos de Friendica" + +#: friendica/dav_carddav_backend_virtual_friendica.inc.php:36 +#: friendica/dav_carddav_backend_virtual_friendica.inc.php:59 +msgid "Friendica-Contacts" +msgstr "Contactos de Friendica" + +#: friendica/dav_carddav_backend_virtual_friendica.inc.php:60 +msgid "Your Friendica-Contacts" +msgstr "Sus contactos de Friendica" + +#: friendica/layout.fnk.php:99 friendica/layout.fnk.php:136 +msgid "" +"Something went wrong when trying to import the file. Sorry. Maybe some " +"events were imported anyway." +msgstr "Algo fue mal al intentar importar el archivo. Perdón. Quizá algunos eventos fueron importados de todas formas." + +#: friendica/layout.fnk.php:131 +msgid "Something went wrong when trying to import the file. Sorry." +msgstr "Algo fue mal al intentar importar el archivio. Perdón." + +#: friendica/layout.fnk.php:134 +msgid "The ICS-File has been imported." +msgstr "El archivo ICS ha sido importado." + +#: friendica/layout.fnk.php:138 +msgid "No file was uploaded." +msgstr "No se ha cargado en ningún archivo." + +#: friendica/layout.fnk.php:143 friendica/layout.fnk.php:422 +#: common/wdcal_edit.inc.php:140 +msgid "Go back to the calendar" +msgstr "Volver al calendario" + +#: friendica/layout.fnk.php:147 +msgid "Import a ICS-file" +msgstr "Importar un archivo ICS" + +#: friendica/layout.fnk.php:150 +msgid "ICS-File" +msgstr "Archivo ICS" + +#: friendica/layout.fnk.php:151 +msgid "Overwrite all #num# existing events" +msgstr "Sobreescribir todos los eventos #num# existentes" + +#: friendica/layout.fnk.php:152 +msgid "Upload" +msgstr "Cargar" + +#: friendica/layout.fnk.php:225 +msgid "Settings" +msgstr "Ajustes" + +#: friendica/layout.fnk.php:225 +msgid "Help" +msgstr "Ayuda" + +#: friendica/layout.fnk.php:228 +msgid "New event" +msgstr "Nuevo evento" + +#: friendica/layout.fnk.php:232 +msgid "Today" +msgstr "Hoy" + +#: friendica/layout.fnk.php:241 +msgid "Day" +msgstr "Día" + +#: friendica/layout.fnk.php:248 +msgid "Week" +msgstr "Semana" + +#: friendica/layout.fnk.php:255 common/wdcal_edit.inc.php:372 +msgid "Month" +msgstr "Mes" + +#: friendica/layout.fnk.php:260 +msgid "Reload" +msgstr "Recargar" + +#: friendica/layout.fnk.php:263 +msgid "Previous" +msgstr "Anterior" + +#: friendica/layout.fnk.php:266 +msgid "Next" +msgstr "Siguiente" + +#: friendica/layout.fnk.php:271 +msgid "Date" +msgstr "Fecha" + +#: friendica/layout.fnk.php:313 +msgid "Error" +msgstr "Error" + +#: friendica/layout.fnk.php:354 +msgid "Permission denied." +msgstr "Permiso denegado." + +#: friendica/layout.fnk.php:361 +msgid "The new values have been saved." +msgstr "Los nuevos valores se han guardado." + +#: friendica/layout.fnk.php:380 +msgid "The calendar has been updated." +msgstr "El calendario se ha actualizado." + +#: friendica/layout.fnk.php:393 +msgid "The new calendar has been created." +msgstr "El nuevo calendario se ha creado." + +#: friendica/layout.fnk.php:417 +msgid "The calendar has been deleted." +msgstr "El calendario ha sido eliminado." + +#: friendica/layout.fnk.php:424 +msgid "Calendar Settings" +msgstr "Ajustes de calendario" + +#: friendica/layout.fnk.php:430 +msgid "Date format" +msgstr "Formato de fecha" + +#: friendica/layout.fnk.php:439 +msgid "Time zone" +msgstr "Zona horaria" + +#: friendica/layout.fnk.php:441 friendica/layout.fnk.php:488 +msgid "Save" +msgstr "Guardar" + +#: friendica/layout.fnk.php:445 +msgid "Calendars" +msgstr "Calendarios" + +#: friendica/layout.fnk.php:487 +msgid "Create a new calendar" +msgstr "Crear un nuevo calendario" + +#: friendica/layout.fnk.php:496 +msgid "Limitations" +msgstr "Límites" + +#: friendica/layout.fnk.php:500 +msgid "Warning" +msgstr "Advertencia" + +#: friendica/layout.fnk.php:504 +msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)" +msgstr "Sincronización (iPhone, Thunderbird Lightning, Android, ...)" + +#: friendica/layout.fnk.php:511 +msgid "Synchronizing this calendar with the iPhone" +msgstr "Sincronizar este calendario con el iPhone" + +#: friendica/layout.fnk.php:522 +msgid "Synchronizing your Friendica-Contacts with the iPhone" +msgstr "Sincronizar sus contactos de Friendica con el iPhone" + +#: friendica/main.php:202 +msgid "" +"The current version of this plugin 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 plugin no se ha instalado correctamente. Por favor contacte con el administrador del sistema de su instalación de Friendica para resolver esto." + +#: friendica/main.php:239 common/wdcal_edit.inc.php:146 +msgid "Calendar" +msgstr "Calendario" + +#: friendica/main.php:242 +msgid "Extended calendar with CalDAV-support" +msgstr "Estendido el calendario con soporte CalDAV" + +#: friendica/main.php:279 friendica/main.php:280 +msgid "noreply" +msgstr "no responder" + +#: friendica/main.php:282 +msgid "Notification: " +msgstr "" + +#: friendica/main.php:309 +msgid "The database tables have been installed." +msgstr "" + +#: friendica/main.php:310 +msgid "An error occurred during the installation." +msgstr "" + +#: friendica/main.php:316 +msgid "The database tables have been updated." +msgstr "" + +#: friendica/main.php:317 +msgid "An error occurred during the update." +msgstr "" + +#: friendica/main.php:333 +msgid "No system-wide settings yet." +msgstr "" + +#: friendica/main.php:336 +msgid "Database status" +msgstr "" + +#: friendica/main.php:339 +msgid "Installed" +msgstr "" + +#: friendica/main.php:343 +msgid "Upgrade needed" +msgstr "" + +#: friendica/main.php:343 +msgid "" +"Please back up all calendar data (the tables beginning with dav_*) before " +"proceeding. While all calendar events should be converted to the new " +"database structure, it's always safe to have a backup. Below, you can have a" +" look at the database-queries that will be made when pressing the " +"'update'-button." +msgstr "" + +#: friendica/main.php:343 +msgid "Upgrade" +msgstr "" + +#: friendica/main.php:346 +msgid "Not installed" +msgstr "" + +#: friendica/main.php:346 +msgid "Install" +msgstr "" + +#: friendica/main.php:350 +msgid "Unknown" +msgstr "" + +#: friendica/main.php:350 +msgid "" +"Something really went wrong. I cannot recover from this state automatically," +" sorry. Please go to the database backend, back up the data, and delete all " +"tables beginning with 'dav_' manually. Afterwards, this installation routine" +" should be able to reinitialize the tables automatically." +msgstr "" + +#: friendica/main.php:355 +msgid "Troubleshooting" +msgstr "" + +#: friendica/main.php:356 +msgid "Manual creation of the database tables:" +msgstr "" + +#: friendica/main.php:357 +msgid "Show SQL-statements" +msgstr "" + +#: friendica/calendar.friendica.fnk.php:206 +msgid "Private Calendar" +msgstr "" + +#: friendica/calendar.friendica.fnk.php:207 +msgid "Friendica Events: Mine" +msgstr "" + +#: friendica/calendar.friendica.fnk.php:208 +msgid "Friendica Events: Contacts" +msgstr "" + +#: friendica/calendar.friendica.fnk.php:248 +msgid "Private Addresses" +msgstr "" + +#: friendica/calendar.friendica.fnk.php:249 +msgid "Friendica Contacts" +msgstr "" + +#: common/wdcal_edit.inc.php:30 common/wdcal_edit.inc.php:738 +msgid "Could not open component for editing" +msgstr "" + +#: common/wdcal_edit.inc.php:144 +msgid "Event data" +msgstr "" + +#: common/wdcal_edit.inc.php:163 +msgid "Special color" +msgstr "" + +#: common/wdcal_edit.inc.php:169 +msgid "Subject" +msgstr "" + +#: common/wdcal_edit.inc.php:173 +msgid "Starts" +msgstr "" + +#: common/wdcal_edit.inc.php:178 +msgid "Ends" +msgstr "" + +#: common/wdcal_edit.inc.php:183 +msgid "Location" +msgstr "" + +#: common/wdcal_edit.inc.php:185 +msgid "Description" +msgstr "" + +#: common/wdcal_edit.inc.php:188 +msgid "Recurrence" +msgstr "" + +#: common/wdcal_edit.inc.php:190 +msgid "Frequency" +msgstr "" + +#: common/wdcal_edit.inc.php:191 +msgid "None" +msgstr "" + +#: common/wdcal_edit.inc.php:194 +msgid "Daily" +msgstr "" + +#: common/wdcal_edit.inc.php:197 +msgid "Weekly" +msgstr "" + +#: common/wdcal_edit.inc.php:200 +msgid "Monthly" +msgstr "" + +#: common/wdcal_edit.inc.php:203 +msgid "Yearly" +msgstr "" + +#: common/wdcal_edit.inc.php:214 +msgid "days" +msgstr "" + +#: common/wdcal_edit.inc.php:215 +msgid "weeks" +msgstr "" + +#: common/wdcal_edit.inc.php:216 +msgid "months" +msgstr "" + +#: common/wdcal_edit.inc.php:217 +msgid "years" +msgstr "" + +#: common/wdcal_edit.inc.php:218 +msgid "Interval" +msgstr "" + +#: common/wdcal_edit.inc.php:218 +msgid "All %select% %time%" +msgstr "" + +#: common/wdcal_edit.inc.php:222 common/wdcal_edit.inc.php:260 +#: common/wdcal_edit.inc.php:481 +msgid "Days" +msgstr "" + +#: common/wdcal_edit.inc.php:231 common/wdcal_edit.inc.php:254 +#: common/wdcal_edit.inc.php:270 common/wdcal_edit.inc.php:293 +#: common/wdcal_edit.inc.php:305 +msgid "Sunday" +msgstr "" + +#: common/wdcal_edit.inc.php:235 common/wdcal_edit.inc.php:274 +#: common/wdcal_edit.inc.php:308 +msgid "Monday" +msgstr "" + +#: common/wdcal_edit.inc.php:238 common/wdcal_edit.inc.php:277 +msgid "Tuesday" +msgstr "" + +#: common/wdcal_edit.inc.php:241 common/wdcal_edit.inc.php:280 +msgid "Wednesday" +msgstr "" + +#: common/wdcal_edit.inc.php:244 common/wdcal_edit.inc.php:283 +msgid "Thursday" +msgstr "" + +#: common/wdcal_edit.inc.php:247 common/wdcal_edit.inc.php:286 +msgid "Friday" +msgstr "" + +#: common/wdcal_edit.inc.php:250 common/wdcal_edit.inc.php:289 +msgid "Saturday" +msgstr "" + +#: common/wdcal_edit.inc.php:297 +msgid "First day of week:" +msgstr "" + +#: common/wdcal_edit.inc.php:350 common/wdcal_edit.inc.php:373 +msgid "Day of month" +msgstr "" + +#: common/wdcal_edit.inc.php:354 +msgid "#num#th of each month" +msgstr "" + +#: common/wdcal_edit.inc.php:357 +msgid "#num#th-last of each month" +msgstr "" + +#: common/wdcal_edit.inc.php:360 +msgid "#num#th #wkday# of each month" +msgstr "" + +#: common/wdcal_edit.inc.php:363 +msgid "#num#th-last #wkday# of each month" +msgstr "" + +#: common/wdcal_edit.inc.php:377 +msgid "#num#th of the given month" +msgstr "" + +#: common/wdcal_edit.inc.php:380 +msgid "#num#th-last of the given month" +msgstr "" + +#: common/wdcal_edit.inc.php:383 +msgid "#num#th #wkday# of the given month" +msgstr "" + +#: common/wdcal_edit.inc.php:386 +msgid "#num#th-last #wkday# of the given month" +msgstr "" + +#: common/wdcal_edit.inc.php:413 +msgid "Repeat until" +msgstr "" + +#: common/wdcal_edit.inc.php:417 +msgid "Infinite" +msgstr "" + +#: common/wdcal_edit.inc.php:420 +msgid "Until the following date" +msgstr "" + +#: common/wdcal_edit.inc.php:423 +msgid "Number of times" +msgstr "" + +#: common/wdcal_edit.inc.php:429 +msgid "Exceptions" +msgstr "" + +#: common/wdcal_edit.inc.php:432 +msgid "none" +msgstr "" + +#: common/wdcal_edit.inc.php:449 +msgid "Notification" +msgstr "" + +#: common/wdcal_edit.inc.php:466 +msgid "Notify by" +msgstr "" + +#: common/wdcal_edit.inc.php:468 +msgid "Remove" +msgstr "" + +#: common/wdcal_edit.inc.php:469 +msgid "E-Mail" +msgstr "" + +#: common/wdcal_edit.inc.php:470 +msgid "On Friendica / Display" +msgstr "" + +#: common/wdcal_edit.inc.php:474 +msgid "Time" +msgstr "" + +#: common/wdcal_edit.inc.php:478 +msgid "Hours" +msgstr "" + +#: common/wdcal_edit.inc.php:479 +msgid "Minutes" +msgstr "" + +#: common/wdcal_edit.inc.php:480 +msgid "Seconds" +msgstr "" + +#: common/wdcal_edit.inc.php:482 +msgid "Weeks" +msgstr "" + +#: common/wdcal_edit.inc.php:485 +msgid "before the" +msgstr "" + +#: common/wdcal_edit.inc.php:486 +msgid "start of the event" +msgstr "" + +#: common/wdcal_edit.inc.php:487 +msgid "end of the event" +msgstr "" + +#: common/wdcal_edit.inc.php:492 +msgid "Add a notification" +msgstr "" + +#: common/wdcal_edit.inc.php:687 +msgid "The event #name# will start at #date" +msgstr "" + +#: common/wdcal_edit.inc.php:696 +msgid "#name# is about to begin." +msgstr "" + +#: common/wdcal_edit.inc.php:769 +msgid "Saved" +msgstr "" + +#: common/wdcal_configuration.php:148 +msgid "U.S. Time Format (mm/dd/YYYY)" +msgstr "" + +#: common/wdcal_configuration.php:243 +msgid "German Time Format (dd.mm.YYYY)" +msgstr "" + +#: common/dav_caldav_backend_private.inc.php:39 +msgid "Private Events" +msgstr "" + +#: common/wdcal_backend.inc.php:92 common/wdcal_backend.inc.php:166 +#: common/wdcal_backend.inc.php:178 common/wdcal_backend.inc.php:206 +#: common/wdcal_backend.inc.php:214 common/wdcal_backend.inc.php:229 +msgid "No access" +msgstr "" + +#: common/dav_carddav_backend_private.inc.php:46 +msgid "Private Addressbooks" +msgstr "" diff --git a/dav/lang/es/strings.php b/dav/lang/es/strings.php index f28ecdeb..8d60adfe 100644 --- a/dav/lang/es/strings.php +++ b/dav/lang/es/strings.php @@ -1,136 +1,141 @@ -strings["Friendica-Native events"] = "Eventos nativos de Friendica"; -$a->strings["Friendica-Contacts"] = "Contactos de Friendica"; -$a->strings["Your Friendica-Contacts"] = "Tus Contactos de Friendica"; -$a->strings["Something went wrong when trying to import the file. Sorry. Maybe some events were imported anyway."] = "Algo salió mal al importar el archivo. Lo sentimos. Puede que algunos eventos se hayan importado."; -$a->strings["Something went wrong when trying to import the file. Sorry."] = "Algo salió mal al importar el archivo. Lo sentimos."; -$a->strings["The ICS-File has been imported."] = "El archivo ICS ha sido importado."; -$a->strings["No file was uploaded."] = "No se ha importado ningún archivo."; -$a->strings["Go back to the calendar"] = "Volver al calendario"; -$a->strings["Import a ICS-file"] = "Importar archivo ICS"; -$a->strings["ICS-File"] = "Archivo ICS"; -$a->strings["Overwrite all #num# existing events"] = "Sobreescribir los #num# eventos existentes"; -$a->strings["Upload"] = "Subir"; -$a->strings["Settings"] = "Configuración"; -$a->strings["Help"] = "Ayuda"; -$a->strings["New event"] = "Evento nuevo"; -$a->strings["Today"] = "Hoy"; -$a->strings["Day"] = "Día"; -$a->strings["Week"] = "Semana"; -$a->strings["Month"] = "Mes"; -$a->strings["Reload"] = "Recargar"; -$a->strings["Previous"] = "Previo"; -$a->strings["Next"] = "Siguiente"; -$a->strings["Date"] = "Fecha"; -$a->strings["Error"] = "Error"; -$a->strings["Permission denied."] = "Permiso denegado."; -$a->strings["The new values have been saved."] = "Los nuevos valores se han guardado."; -$a->strings["The calendar has been updated."] = "El calendario ha sido actualizado."; -$a->strings["The new calendar has been created."] = "Se ha creado un nuevo calendario."; -$a->strings["The calendar has been deleted."] = "El calendario se ha borrado."; -$a->strings["Calendar Settings"] = "Configuración del Calendario"; -$a->strings["Date format"] = "Formato de fecha"; -$a->strings["Time zone"] = "Zona horaria"; -$a->strings["Save"] = "Guardar"; -$a->strings["Calendars"] = "Calendarios"; -$a->strings["Create a new calendar"] = "Crear un nuevo calendario"; -$a->strings["Limitations"] = "Limitaciones"; -$a->strings["Warning"] = "Aviso"; -$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 iPhone"; -$a->strings["Synchronizing your Friendica-Contacts with the iPhone"] = "Sincronizar tus contactos de Friendica con iPhone"; -$a->strings["The current version of this plugin 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 módulo no se ha ajustado correctamente. Por favor contacta al administrador de sistema de tu instalación de Friendica para arreglarlo."; -$a->strings["Calendar"] = "Calendario"; -$a->strings["Extended calendar with CalDAV-support"] = "Calendario ampliado con soporte CalDAV"; -$a->strings["noreply"] = "no responder"; -$a->strings["Notification: "] = "Notificación:"; -$a->strings["The database tables have been installed."] = "Se han instalado las tablas de la base de datos."; -$a->strings["An error occurred during the installation."] = "Ha ocurrido un error durante la instalación."; -$a->strings["The database tables have been updated."] = "Las tablas de la base de datos han sido actualizadas."; -$a->strings["An error occurred during the update."] = "Ocurrió un error durante la actualización."; -$a->strings["No system-wide settings yet."] = "No se han configurado aún los ajustes del sistema."; -$a->strings["Database status"] = "Estado de la base de datos"; -$a->strings["Installed"] = "Instalada"; -$a->strings["Upgrade needed"] = "Actualización necesaria"; -$a->strings["Please back up all calendar data (the tables beginning with dav_*) before proceeding. While all calendar events should be converted to the new database structure, it's always safe to have a backup. Below, you can have a look at the database-queries that will be made when pressing the 'update'-button."] = "Por favor respalda todos los datos de calendario (las tablas que comienzan con dav_*) antes de continuar. Aunque todos los eventos de calendario deberían convertirse a la nueva estructura de base de datos, siempre es seguro tener un respaldo. Abajo, puedes ver las consultas a la base de datos que se realizarán cuando presiones el botón de 'actualizar'."; -$a->strings["Upgrade"] = "Actualizada"; -$a->strings["Not installed"] = "Sin instalar"; -$a->strings["Install"] = "Instalar"; -$a->strings["Unknown"] = "Desconocido"; -$a->strings["Something really went wrong. I cannot recover from this state automatically, sorry. Please go to the database backend, back up the data, and delete all tables beginning with 'dav_' manually. Afterwards, this installation routine should be able to reinitialize the tables automatically."] = "Ha ocurrido algo muy malo. No puedo recuperarme automáticamente de este estado, lo siento. Por favor ve al manejador de fondo de la base de datos, respalda los datos, y borra todas las tablas que comienzan con 'dav_' manualmente. Después de eso, esta rutina de instalación debería de ser capaz de reinicializar las tablas automáticamente."; -$a->strings["Troubleshooting"] = "Problemas"; -$a->strings["Manual creation of the database tables:"] = "Manual para la creación de las tablas de la base de datos:"; -$a->strings["Show SQL-statements"] = "Mostrar declaraciones SQL"; -$a->strings["Private Calendar"] = "Calendario privado"; -$a->strings["Friendica Events: Mine"] = "Eventos de Friendica: Propios"; -$a->strings["Friendica Events: Contacts"] = "Eventos de Friendica: Contactos"; -$a->strings["Private Addresses"] = "Direcciones privadas"; -$a->strings["Friendica Contacts"] = "Contactos de Friendica"; -$a->strings["Could not open component for editing"] = "No se puede abrir para editar"; -$a->strings["Event data"] = "Datos del evento"; -$a->strings["Special color"] = "Color especial"; -$a->strings["Subject"] = "Asunto"; -$a->strings["Starts"] = "Comienzo"; -$a->strings["Ends"] = "Final"; -$a->strings["Location"] = "Ubicación"; -$a->strings["Description"] = "Descripción"; -$a->strings["Recurrence"] = "Recurrencia"; -$a->strings["Frequency"] = "Frecuencia"; -$a->strings["None"] = "Ninguna"; -$a->strings["Daily"] = "Diariamente"; -$a->strings["Weekly"] = "Semanalmente"; -$a->strings["Monthly"] = "Mensualmente"; -$a->strings["Yearly"] = "Anual"; -$a->strings["days"] = "días"; -$a->strings["weeks"] = "semanas"; -$a->strings["months"] = "meses"; -$a->strings["years"] = "años"; -$a->strings["Interval"] = "Intérvalo"; -$a->strings["All %select% %time%"] = "Todos %select% %time%"; -$a->strings["Days"] = "Días"; -$a->strings["Sunday"] = "Domingo"; -$a->strings["Monday"] = "Lunes"; -$a->strings["Tuesday"] = "Martes"; -$a->strings["Wednesday"] = "Miércoles"; -$a->strings["Thursday"] = "Jueves"; -$a->strings["Friday"] = "Viernes"; -$a->strings["Saturday"] = "Sábado"; -$a->strings["First day of week:"] = "Primer día de la semana:"; -$a->strings["Day of month"] = "Día del mes"; -$a->strings["#num#th of each month"] = "#num#º de cada mes"; -$a->strings["#num#th-last of each month"] = "#num#º antes del último de cada mes"; -$a->strings["#num#th #wkday# of each month"] = "#num#º #wkday# de cada mes"; -$a->strings["#num#th-last #wkday# of each month"] = "#num#º antes del último #wkday# de cada mes"; -$a->strings["#num#th of the given month"] = "#num#º del mes dado"; -$a->strings["#num#th-last of the given month"] = "#num#º antes del último del mes dado"; -$a->strings["#num#th #wkday# of the given month"] = "#num#º #wkday# del mes dado"; -$a->strings["#num#th-last #wkday# of the given month"] = "#num#º antes del último #wkday# del mes dado"; -$a->strings["Repeat until"] = "Repetir hasta"; -$a->strings["Infinite"] = "Infinito"; -$a->strings["Until the following date"] = "Hasta la fecha siguiente"; -$a->strings["Number of times"] = "Número de veces"; -$a->strings["Exceptions"] = "Excepciones"; -$a->strings["none"] = "ninguno"; -$a->strings["Notification"] = "Notificación"; -$a->strings["Notify by"] = "Notificar por"; -$a->strings["Remove"] = "Eliminar"; -$a->strings["E-Mail"] = "Correo electrónico"; -$a->strings["On Friendica / Display"] = "Sobre Friendica / Mostrar"; -$a->strings["Time"] = "Hora"; -$a->strings["Hours"] = "Horas"; -$a->strings["Minutes"] = "Minutos"; -$a->strings["Seconds"] = "Segundos"; -$a->strings["Weeks"] = "Semanas"; -$a->strings["before the"] = "antes de"; -$a->strings["start of the event"] = "inicio del evento"; -$a->strings["end of the event"] = "final del evento"; -$a->strings["Add a notification"] = "Añadir una notificación"; -$a->strings["The event #name# will start at #date"] = "El evento #name# comenzará el #date"; -$a->strings["#name# is about to begin."] = "#name# está a punto de comenzar."; -$a->strings["Saved"] = "Guardado"; -$a->strings["U.S. Time Format (mm/dd/YYYY)"] = "Hora, formato anglosajón (mm/dd/aaaa)"; -$a->strings["German Time Format (dd.mm.YYYY)"] = "Hora, formato europeo (dd.mm.aaaa)"; -$a->strings["Private Events"] = "Eventos privados"; -$a->strings["No access"] = "Sin acceso"; -$a->strings["Private Addressbooks"] = "Libretas de direcciones privada"; +strings["Friendica-Native events"] = "Eventos Nativos de Friendica"; +$a->strings["Friendica-Contacts"] = "Contactos de Friendica"; +$a->strings["Your Friendica-Contacts"] = "Sus contactos de Friendica"; +$a->strings["Something went wrong when trying to import the file. Sorry. Maybe some events were imported anyway."] = "Algo fue mal al intentar importar el archivo. Perdón. Quizá algunos eventos fueron importados de todas formas."; +$a->strings["Something went wrong when trying to import the file. Sorry."] = "Algo fue mal al intentar importar el archivio. Perdón."; +$a->strings["The ICS-File has been imported."] = "El archivo ICS ha sido importado."; +$a->strings["No file was uploaded."] = "No se ha cargado en ningún archivo."; +$a->strings["Go back to the calendar"] = "Volver al calendario"; +$a->strings["Import a ICS-file"] = "Importar un archivo ICS"; +$a->strings["ICS-File"] = "Archivo ICS"; +$a->strings["Overwrite all #num# existing events"] = "Sobreescribir todos los eventos #num# existentes"; +$a->strings["Upload"] = "Cargar"; +$a->strings["Settings"] = "Ajustes"; +$a->strings["Help"] = "Ayuda"; +$a->strings["New event"] = "Nuevo evento"; +$a->strings["Today"] = "Hoy"; +$a->strings["Day"] = "Día"; +$a->strings["Week"] = "Semana"; +$a->strings["Month"] = "Mes"; +$a->strings["Reload"] = "Recargar"; +$a->strings["Previous"] = "Anterior"; +$a->strings["Next"] = "Siguiente"; +$a->strings["Date"] = "Fecha"; +$a->strings["Error"] = "Error"; +$a->strings["Permission denied."] = "Permiso denegado."; +$a->strings["The new values have been saved."] = "Los nuevos valores se han guardado."; +$a->strings["The calendar has been updated."] = "El calendario se ha actualizado."; +$a->strings["The new calendar has been created."] = "El nuevo calendario se ha creado."; +$a->strings["The calendar has been deleted."] = "El calendario ha sido eliminado."; +$a->strings["Calendar Settings"] = "Ajustes de calendario"; +$a->strings["Date format"] = "Formato de fecha"; +$a->strings["Time zone"] = "Zona horaria"; +$a->strings["Save"] = "Guardar"; +$a->strings["Calendars"] = "Calendarios"; +$a->strings["Create a new calendar"] = "Crear un nuevo calendario"; +$a->strings["Limitations"] = "Límites"; +$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 plugin 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 plugin no se ha instalado correctamente. Por favor contacte con el administrador del sistema de su instalación de Friendica para resolver esto."; +$a->strings["Calendar"] = "Calendario"; +$a->strings["Extended calendar with CalDAV-support"] = "Estendido el calendario con soporte CalDAV"; +$a->strings["noreply"] = "no responder"; +$a->strings["Notification: "] = ""; +$a->strings["The database tables have been installed."] = ""; +$a->strings["An error occurred during the installation."] = ""; +$a->strings["The database tables have been updated."] = ""; +$a->strings["An error occurred during the update."] = ""; +$a->strings["No system-wide settings yet."] = ""; +$a->strings["Database status"] = ""; +$a->strings["Installed"] = ""; +$a->strings["Upgrade needed"] = ""; +$a->strings["Please back up all calendar data (the tables beginning with dav_*) before proceeding. While all calendar events should be converted to the new database structure, it's always safe to have a backup. Below, you can have a look at the database-queries that will be made when pressing the 'update'-button."] = ""; +$a->strings["Upgrade"] = ""; +$a->strings["Not installed"] = ""; +$a->strings["Install"] = ""; +$a->strings["Unknown"] = ""; +$a->strings["Something really went wrong. I cannot recover from this state automatically, sorry. Please go to the database backend, back up the data, and delete all tables beginning with 'dav_' manually. Afterwards, this installation routine should be able to reinitialize the tables automatically."] = ""; +$a->strings["Troubleshooting"] = ""; +$a->strings["Manual creation of the database tables:"] = ""; +$a->strings["Show SQL-statements"] = ""; +$a->strings["Private Calendar"] = ""; +$a->strings["Friendica Events: Mine"] = ""; +$a->strings["Friendica Events: Contacts"] = ""; +$a->strings["Private Addresses"] = ""; +$a->strings["Friendica Contacts"] = ""; +$a->strings["Could not open component for editing"] = ""; +$a->strings["Event data"] = ""; +$a->strings["Special color"] = ""; +$a->strings["Subject"] = ""; +$a->strings["Starts"] = ""; +$a->strings["Ends"] = ""; +$a->strings["Location"] = ""; +$a->strings["Description"] = ""; +$a->strings["Recurrence"] = ""; +$a->strings["Frequency"] = ""; +$a->strings["None"] = ""; +$a->strings["Daily"] = ""; +$a->strings["Weekly"] = ""; +$a->strings["Monthly"] = ""; +$a->strings["Yearly"] = ""; +$a->strings["days"] = ""; +$a->strings["weeks"] = ""; +$a->strings["months"] = ""; +$a->strings["years"] = ""; +$a->strings["Interval"] = ""; +$a->strings["All %select% %time%"] = ""; +$a->strings["Days"] = ""; +$a->strings["Sunday"] = ""; +$a->strings["Monday"] = ""; +$a->strings["Tuesday"] = ""; +$a->strings["Wednesday"] = ""; +$a->strings["Thursday"] = ""; +$a->strings["Friday"] = ""; +$a->strings["Saturday"] = ""; +$a->strings["First day of week:"] = ""; +$a->strings["Day of month"] = ""; +$a->strings["#num#th of each month"] = ""; +$a->strings["#num#th-last of each month"] = ""; +$a->strings["#num#th #wkday# of each month"] = ""; +$a->strings["#num#th-last #wkday# of each month"] = ""; +$a->strings["#num#th of the given month"] = ""; +$a->strings["#num#th-last of the given month"] = ""; +$a->strings["#num#th #wkday# of the given month"] = ""; +$a->strings["#num#th-last #wkday# of the given month"] = ""; +$a->strings["Repeat until"] = ""; +$a->strings["Infinite"] = ""; +$a->strings["Until the following date"] = ""; +$a->strings["Number of times"] = ""; +$a->strings["Exceptions"] = ""; +$a->strings["none"] = ""; +$a->strings["Notification"] = ""; +$a->strings["Notify by"] = ""; +$a->strings["Remove"] = ""; +$a->strings["E-Mail"] = ""; +$a->strings["On Friendica / Display"] = ""; +$a->strings["Time"] = ""; +$a->strings["Hours"] = ""; +$a->strings["Minutes"] = ""; +$a->strings["Seconds"] = ""; +$a->strings["Weeks"] = ""; +$a->strings["before the"] = ""; +$a->strings["start of the event"] = ""; +$a->strings["end of the event"] = ""; +$a->strings["Add a notification"] = ""; +$a->strings["The event #name# will start at #date"] = ""; +$a->strings["#name# is about to begin."] = ""; +$a->strings["Saved"] = ""; +$a->strings["U.S. Time Format (mm/dd/YYYY)"] = ""; +$a->strings["German Time Format (dd.mm.YYYY)"] = ""; +$a->strings["Private Events"] = ""; +$a->strings["No access"] = ""; +$a->strings["Private Addressbooks"] = ""; -- 2.43.4 From 64806e92fb682a3dfe88d6a9d56f3150813a53d4 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Thu, 10 Nov 2016 10:56:36 +0100 Subject: [PATCH 23/24] ES notifyall --- notifyall/lang/es/messages.po | 57 +++++++++++++++++++++++++++++++++++ notifyall/lang/es/strings.php | 16 ++++++++++ 2 files changed, 73 insertions(+) create mode 100644 notifyall/lang/es/messages.po create mode 100644 notifyall/lang/es/strings.php diff --git a/notifyall/lang/es/messages.po b/notifyall/lang/es/messages.po new file mode 100644 index 00000000..5d2536fe --- /dev/null +++ b/notifyall/lang/es/messages.po @@ -0,0 +1,57 @@ +# ADDON notifyall +# Copyright (C) +# This file is distributed under the same license as the Friendica notifyall addon package. +# +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-14 16:41+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Alberto Díaz Tormo , 2016\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" + +#: notifyall.php:26 +msgid "Send email to all members" +msgstr "Enviar email a todos los miembros" + +#: notifyall.php:42 +#, php-format +msgid "%s Administrator" +msgstr "%s Administrador" + +#: notifyall.php:44 +#, php-format +msgid "%1$s, %2$s Administrator" +msgstr "%1$s, %2$s Administrador" + +#: notifyall.php:60 +msgid "No recipients found." +msgstr "No se encontraron destinatarios." + +#: notifyall.php:78 +msgid "Emails sent" +msgstr "Emails enviados" + +#: notifyall.php:86 +msgid "Send email to all members of this Friendica instance." +msgstr "Enviar email a todos los miembros de esta instancia de Friendica." + +#: notifyall.php:91 +msgid "Message subject" +msgstr "Tema del mensaje" + +#: notifyall.php:92 +msgid "Test mode (only send to administrator)" +msgstr "Modo de prueba (sólo envíar al administrador)" + +#: notifyall.php:93 +msgid "Submit" +msgstr "Enviar" diff --git a/notifyall/lang/es/strings.php b/notifyall/lang/es/strings.php new file mode 100644 index 00000000..312a6acd --- /dev/null +++ b/notifyall/lang/es/strings.php @@ -0,0 +1,16 @@ +strings["Send email to all members"] = "Enviar email a todos los miembros"; +$a->strings["%s Administrator"] = "%s Administrador"; +$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Administrador"; +$a->strings["No recipients found."] = "No se encontraron destinatarios."; +$a->strings["Emails sent"] = "Emails enviados"; +$a->strings["Send email to all members of this Friendica instance."] = "Enviar email a todos los miembros de esta instancia de Friendica."; +$a->strings["Message subject"] = "Tema del mensaje"; +$a->strings["Test mode (only send to administrator)"] = "Modo de prueba (sólo envíar al administrador)"; +$a->strings["Submit"] = "Enviar"; -- 2.43.4 From d1a498ed38230bb2ccd2a422080dab37c3aee03b Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 12 Nov 2016 16:54:08 +0000 Subject: [PATCH 24/24] Some language stuff. --- fromgplus/lang/C/messages.po | 28 ++++++++++++++++++++-------- gpluspost/lang/C/messages.po | 26 +++++++++++++------------- 2 files changed, 33 insertions(+), 21 deletions(-) diff --git a/fromgplus/lang/C/messages.po b/fromgplus/lang/C/messages.po index f9b40662..d78fb5af 100644 --- a/fromgplus/lang/C/messages.po +++ b/fromgplus/lang/C/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-27 05:01-0500\n" +"POT-Creation-Date: 2016-11-12 16:52+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,22 +17,34 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: fromgplus.php:33 -msgid "Google+ Import Settings" +#: fromgplus.php:46 fromgplus.php:50 +msgid "Google+ Mirror" msgstr "" -#: fromgplus.php:36 +#: fromgplus.php:55 msgid "Enable Google+ Import" msgstr "" -#: fromgplus.php:39 +#: fromgplus.php:58 msgid "Google Account ID" msgstr "" -#: fromgplus.php:44 -msgid "Submit" +#: fromgplus.php:61 +msgid "Add keywords to post" msgstr "" -#: fromgplus.php:59 +#: fromgplus.php:66 fromgplus.php:95 +msgid "Save Settings" +msgstr "" + +#: fromgplus.php:87 msgid "Google+ Import Settings saved." msgstr "" + +#: fromgplus.php:96 +msgid "Key" +msgstr "" + +#: fromgplus.php:103 +msgid "Settings updated." +msgstr "" diff --git a/gpluspost/lang/C/messages.po b/gpluspost/lang/C/messages.po index cedf6cbb..117b72e5 100644 --- a/gpluspost/lang/C/messages.po +++ b/gpluspost/lang/C/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-23 14:44+0200\n" +"POT-Creation-Date: 2016-11-12 16:50+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,50 +17,50 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: gpluspost.php:38 +#: gpluspost.php:39 msgid "Post to Google+" msgstr "" -#: gpluspost.php:93 +#: gpluspost.php:94 msgid "Enable Google+ Post Plugin" msgstr "" -#: gpluspost.php:108 +#: gpluspost.php:109 msgid "Google+ username" msgstr "" -#: gpluspost.php:113 +#: gpluspost.php:114 msgid "Google+ password" msgstr "" -#: gpluspost.php:118 +#: gpluspost.php:119 msgid "Google+ page number" msgstr "" -#: gpluspost.php:124 +#: gpluspost.php:125 msgid "Post to Google+ by default" msgstr "" -#: gpluspost.php:129 +#: gpluspost.php:130 msgid "Do not prevent posting loops" msgstr "" -#: gpluspost.php:135 +#: gpluspost.php:136 msgid "Skip messages without links" msgstr "" -#: gpluspost.php:142 +#: gpluspost.php:143 msgid "Mirror all public posts" msgstr "" -#: gpluspost.php:146 +#: gpluspost.php:147 msgid "Mirror Google Account ID" msgstr "" -#: gpluspost.php:153 +#: gpluspost.php:154 msgid "Save Settings" msgstr "" -#: gpluspost.php:308 +#: gpluspost.php:310 msgid "Google+ post failed. Queued for retry." msgstr "" -- 2.43.4