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 wppost
# Copyright (C)
# This file is distributed under the same license as the Friendica wppost addon package.
#
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-23 14:45+0200\n"
"PO-Revision-Date: 2014-07-08 12:12+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"
#: wppost.php:42
msgid "Post to Wordpress"
msgstr "Postați pe Wordpress"
#: wppost.php:79 wppost.php:83
msgid "Wordpress Export"
msgstr "Export pe Wordpress"
#: wppost.php:86
msgid "Enable WordPress Post Plugin"
msgstr "Activare Modul Postare pe Wordpress"
#: wppost.php:91
msgid "WordPress username"
msgstr "Utilizator WordPress "
#: wppost.php:96
msgid "WordPress password"
msgstr "Parolă WordPress "
#: wppost.php:101
msgid "WordPress API URL"
msgstr "URL Cheie API WordPress"
#: wppost.php:106
msgid "Post to WordPress by default"
msgstr "Postați implicit pe Wordpress"
#: wppost.php:111
msgid "Provide a backlink to the Friendica post"
msgstr "Oferiți un backlink către postarea de pe Friendica"
#: wppost.php:116
msgid "Don't post messages that are too short"
msgstr "Nu publica mesajele prea scurte"
#: wppost.php:122
msgid "Save Settings"
msgstr "Salvare Configurări"
#: wppost.php:243
msgid "Post from Friendica"
msgstr "Postați din Friendica"
#: wppost.php:255
msgid "Read the original post and comment stream on Friendica"
msgstr "Citiți publicația originală și fluxul de comentarii, pe Friendica"

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 Wordpress"] = "Postați pe Wordpress";
$a->strings["Wordpress Export"] = "Export pe Wordpress";
$a->strings["Enable WordPress Post Plugin"] = "Activare Modul Postare pe Wordpress";
$a->strings["WordPress username"] = "Utilizator WordPress ";
$a->strings["WordPress password"] = "Parolă WordPress ";
$a->strings["WordPress API URL"] = "URL Cheie API WordPress";
$a->strings["Post to WordPress by default"] = "Postați implicit pe Wordpress";
$a->strings["Provide a backlink to the Friendica post"] = "Oferiți un backlink către postarea de pe Friendica";
$a->strings["Don't post messages that are too short"] = "Nu publica mesajele prea scurte";
$a->strings["Save Settings"] = "Salvare Configurări";
$a->strings["Post from Friendica"] = "Postați din Friendica";
$a->strings["Read the original post and comment stream on Friendica"] = "Citiți publicația originală și fluxul de comentarii, pe Friendica";