forked from friendica/friendica-addons
fromapp addon updated CA translation THX Joan Bar
This commit is contained in:
parent
8fcd3e03da
commit
d70054d40c
43
fromapp/lang/ca/messages.po
Normal file
43
fromapp/lang/ca/messages.po
Normal file
|
@ -0,0 +1,43 @@
|
|||
# ADDON fromapp
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica fromapp addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Joan Bar <friendica@tutanota.com>, 2019
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-02-19 16:42+0100\n"
|
||||
"PO-Revision-Date: 2019-10-18 18:50+0000\n"
|
||||
"Last-Translator: Joan Bar <friendica@tutanota.com>\n"
|
||||
"Language-Team: Catalan (http://www.transifex.com/Friendica/friendica/language/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: fromapp.php:40
|
||||
msgid "Fromapp settings updated."
|
||||
msgstr "S'ha actualitzat la configuració de Fromapp"
|
||||
|
||||
#: fromapp.php:65 fromapp.php:69
|
||||
msgid "FromApp Settings"
|
||||
msgstr "Configuració de FromApp"
|
||||
|
||||
#: fromapp.php:72
|
||||
msgid ""
|
||||
"The application name you would like to show your posts originating from. "
|
||||
"Separate different app names with a comma. A random one will then be "
|
||||
"selected for every posting."
|
||||
msgstr "El nom de l'aplicació que voleu mostrar de les vostres publicacions originàries. Separeu diferents noms d'aplicacions amb una coma. A continuació, se seleccionarà un aleatori per a cada publicació."
|
||||
|
||||
#: fromapp.php:76
|
||||
msgid "Use this application name even if another application was used."
|
||||
msgstr "Utilitzeu aquest nom d’aplicació encara que s’hagi utilitzat una altra aplicació."
|
||||
|
||||
#: fromapp.php:83
|
||||
msgid "Save Settings"
|
||||
msgstr "Desa la Configuració"
|
|
@ -1,7 +1,13 @@
|
|||
<?php
|
||||
|
||||
$a->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"] = "Enviar";
|
||||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_ca")) {
|
||||
function string_plural_select_ca($n){
|
||||
$n = intval($n);
|
||||
return ($n != 1);;
|
||||
}}
|
||||
;
|
||||
$a->strings["Fromapp settings updated."] = "S'ha actualitzat la configuració de Fromapp";
|
||||
$a->strings["FromApp Settings"] = "Configuració de FromApp";
|
||||
$a->strings["The application name you would like to show your posts originating from. Separate different app names with a comma. A random one will then be selected for every posting."] = "El nom de l'aplicació que voleu mostrar de les vostres publicacions originàries. Separeu diferents noms d'aplicacions amb una coma. A continuació, se seleccionarà un aleatori per a cada publicació.";
|
||||
$a->strings["Use this application name even if another application was used."] = "Utilitzeu aquest nom d’aplicació encara que s’hagi utilitzat una altra aplicació.";
|
||||
$a->strings["Save Settings"] = "Desa la Configuració";
|
||||
|
|
Loading…
Reference in a new issue