RO: added translation for the addons from transifex

This commit is contained in:
Tobias Diekershoff 2014-09-06 17:58:41 +02:00
parent f6460497e3
commit 951f9dc006
128 changed files with 5387 additions and 0 deletions

View file

@ -0,0 +1,67 @@
# ADDON gpluspost
# Copyright (C)
# This file is distributed under the same license as the Friendica gpluspost 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: 2014-07-08 11:52+0000\n"
"Last-Translator: Arian - Cazare Muncitori <arianserv@gmail.com>\n"
"Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/friendica/language/ro_RO/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ro_RO\n"
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
#: gpluspost.php:38
msgid "Post to Google+"
msgstr "Postați pe Google+"
#: gpluspost.php:93
msgid "Enable Google+ Post Plugin"
msgstr "Activare Modul Postare Google+"
#: gpluspost.php:108
msgid "Google+ username"
msgstr "Utilizator Google+ "
#: gpluspost.php:113
msgid "Google+ password"
msgstr "Parola Google+"
#: gpluspost.php:118
msgid "Google+ page number"
msgstr "Numărul paginii Google+ "
#: gpluspost.php:124
msgid "Post to Google+ by default"
msgstr "Postați implicit pe Google+"
#: gpluspost.php:129
msgid "Do not prevent posting loops"
msgstr "Nu se previn înlănțuirile postării"
#: gpluspost.php:135
msgid "Skip messages without links"
msgstr "Se omit mesajele fără legături"
#: gpluspost.php:142
msgid "Mirror all public posts"
msgstr "Reproducere pentru toate postările publice"
#: gpluspost.php:146
msgid "Mirror Google Account ID"
msgstr "Reproducere ID Cont Google"
#: gpluspost.php:153
msgid "Save Settings"
msgstr "Salvare Configurări"
#: gpluspost.php:308
msgid "Google+ post failed. Queued for retry."
msgstr "Postarea pe Google+ a eșuat. S-a pus în așteptare pentru reîncercare."

View file

@ -0,0 +1,19 @@
<?php
if(! function_exists("string_plural_select_ro")) {
function string_plural_select_ro($n){
return ($n==1?0:((($n%100>19)||(($n%100==0)&&($n!=0)))?2:1));;
}}
;
$a->strings["Post to Google+"] = "Postați pe Google+";
$a->strings["Enable Google+ Post Plugin"] = "Activare Modul Postare Google+";
$a->strings["Google+ username"] = "Utilizator Google+ ";
$a->strings["Google+ password"] = "Parola Google+";
$a->strings["Google+ page number"] = "Numărul paginii Google+ ";
$a->strings["Post to Google+ by default"] = "Postați implicit pe Google+";
$a->strings["Do not prevent posting loops"] = "Nu se previn înlănțuirile postării";
$a->strings["Skip messages without links"] = "Se omit mesajele fără legături";
$a->strings["Mirror all public posts"] = "Reproducere pentru toate postările publice";
$a->strings["Mirror Google Account ID"] = "Reproducere ID Cont Google";
$a->strings["Save Settings"] = "Salvare Configurări";
$a->strings["Google+ post failed. Queued for retry."] = "Postarea pe Google+ a eșuat. S-a pus în așteptare pentru reîncercare.";