forked from friendica/deprecated-addons
Removed many deprecated addons
This commit is contained in:
parent
8ea198a97e
commit
1b7283c72b
247 changed files with 28554 additions and 0 deletions
14
editplain/editplain.css
Executable file
14
editplain/editplain.css
Executable file
|
@ -0,0 +1,14 @@
|
|||
|
||||
|
||||
|
||||
#editplain-enable-label {
|
||||
float: left;
|
||||
width: 200px;
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
|
||||
#editplain-checkbox {
|
||||
float: left;
|
||||
}
|
||||
|
||||
|
86
editplain/editplain.php
Executable file
86
editplain/editplain.php
Executable file
|
@ -0,0 +1,86 @@
|
|||
<?php
|
||||
/**
|
||||
* Name: Editplain
|
||||
* Description: This addon is deprecated and has been replaced with the "Advanced Features" setting. Admins should remove this addon when their core code is updated to include advanced feature settings.
|
||||
* Version: 1.0
|
||||
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
|
||||
* Status: Unsupported
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
function editplain_install() {
|
||||
|
||||
register_hook('plugin_settings', 'addon/editplain/editplain.php', 'editplain_settings');
|
||||
register_hook('plugin_settings_post', 'addon/editplain/editplain.php', 'editplain_settings_post');
|
||||
|
||||
logger("installed editplain");
|
||||
}
|
||||
|
||||
|
||||
function editplain_uninstall() {
|
||||
|
||||
unregister_hook('plugin_settings', 'addon/editplain/editplain.php', 'editplain_settings');
|
||||
unregister_hook('plugin_settings_post', 'addon/editplain/editplain.php', 'editplain_settings_post');
|
||||
|
||||
|
||||
logger("removed editplain");
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
* Callback from the settings post function.
|
||||
* $post contains the $_POST array.
|
||||
* We will make sure we've got a valid user account
|
||||
* and if so set our configuration setting for this person.
|
||||
*
|
||||
*/
|
||||
|
||||
function editplain_settings_post($a,$post) {
|
||||
if(! local_user() || (! x($_POST,'editplain-submit')))
|
||||
return;
|
||||
set_pconfig(local_user(),'system','plaintext',intval($_POST['editplain']));
|
||||
|
||||
info( t('Editplain settings updated.') . EOL);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
* Called from the Plugin Setting form.
|
||||
* Add our own settings info to the page.
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
|
||||
function editplain_settings(&$a,&$s) {
|
||||
|
||||
if(! local_user())
|
||||
return;
|
||||
|
||||
/* Add our stylesheet to the page so we can make our settings look nice */
|
||||
|
||||
$a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . $a->get_baseurl() . '/addon/editplain/editplain.css' . '" media="all" />' . "\r\n";
|
||||
|
||||
/* Get the current state of our config variable */
|
||||
|
||||
$enabled = get_pconfig(local_user(),'system','plaintext');
|
||||
$checked = (($enabled) ? ' checked="checked" ' : '');
|
||||
|
||||
/* Add some HTML to the existing form */
|
||||
|
||||
$s .= '<div class="settings-block">';
|
||||
$s .= '<h3>' . t('Editplain Settings') . '</h3>';
|
||||
$s .= '<div id="editplain-enable-wrapper">';
|
||||
$s .= '<label id="editplain-enable-label" for="editplain-checkbox">' . t('Disable richtext status editor') . '</label>';
|
||||
$s .= '<input id="editplain-checkbox" type="checkbox" name="editplain" value="1" ' . $checked . '/>';
|
||||
$s .= '</div><div class="clear"></div>';
|
||||
|
||||
/* provide a submit button */
|
||||
|
||||
$s .= '<div class="settings-submit-wrapper" ><input type="submit" name="editplain-submit" class="settings-submit" value="' . t('Save Settings') . '" /></div></div>';
|
||||
|
||||
}
|
34
editplain/lang/C/messages.po
Normal file
34
editplain/lang/C/messages.po
Normal file
|
@ -0,0 +1,34 @@
|
|||
# ADDON editplain
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica editplain addon package.
|
||||
#
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: editplain.php:46
|
||||
msgid "Editplain settings updated."
|
||||
msgstr ""
|
||||
|
||||
#: editplain.php:76
|
||||
msgid "Editplain Settings"
|
||||
msgstr ""
|
||||
|
||||
#: editplain.php:78
|
||||
msgid "Disable richtext status editor"
|
||||
msgstr ""
|
||||
|
||||
#: editplain.php:84
|
||||
msgid "Submit"
|
||||
msgstr ""
|
6
editplain/lang/ca/strings.php
Normal file
6
editplain/lang/ca/strings.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
$a->strings["Editplain settings updated."] = "Actualitzar la configuració de Editplain.";
|
||||
$a->strings["Editplain Settings"] = "Configuració de Editplain";
|
||||
$a->strings["Disable richtext status editor"] = "Deshabilitar l'editor d'estatus de texte enriquit";
|
||||
$a->strings["Submit"] = "Enviar";
|
36
editplain/lang/cs/messages.po
Normal file
36
editplain/lang/cs/messages.po
Normal file
|
@ -0,0 +1,36 @@
|
|||
# ADDON editplain
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica editplain addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Michal Šupler <msupler@gmail.com>, 2014-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: 2015-02-11 19:40+0000\n"
|
||||
"Last-Translator: Michal Šupler <msupler@gmail.com>\n"
|
||||
"Language-Team: Czech (http://www.transifex.com/projects/p/friendica/language/cs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: cs\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#: editplain.php:46
|
||||
msgid "Editplain settings updated."
|
||||
msgstr "Editplain nastavení aktualizováno"
|
||||
|
||||
#: editplain.php:76
|
||||
msgid "Editplain Settings"
|
||||
msgstr "Editplain nastavení"
|
||||
|
||||
#: editplain.php:78
|
||||
msgid "Disable richtext status editor"
|
||||
msgstr "Zakázat richtext status editor"
|
||||
|
||||
#: editplain.php:84
|
||||
msgid "Submit"
|
||||
msgstr "Odeslat"
|
11
editplain/lang/cs/strings.php
Normal file
11
editplain/lang/cs/strings.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_cs")) {
|
||||
function string_plural_select_cs($n){
|
||||
return ($n==1) ? 0 : ($n>=2 && $n<=4) ? 1 : 2;;
|
||||
}}
|
||||
;
|
||||
$a->strings["Editplain settings updated."] = "Editplain nastavení aktualizováno";
|
||||
$a->strings["Editplain Settings"] = "Editplain nastavení";
|
||||
$a->strings["Disable richtext status editor"] = "Zakázat richtext status editor";
|
||||
$a->strings["Submit"] = "Odeslat";
|
37
editplain/lang/de/messages.po
Normal file
37
editplain/lang/de/messages.po
Normal file
|
@ -0,0 +1,37 @@
|
|||
# ADDON editplain
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica editplain addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Abrax <webmaster@a-zwenkau.de>, 2014
|
||||
# bavatar <tobias.diekershoff@gmx.net>, 2014
|
||||
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: 2014-10-15 12:19+0000\n"
|
||||
"Last-Translator: Abrax <webmaster@a-zwenkau.de>\n"
|
||||
"Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: editplain.php:46
|
||||
msgid "Editplain settings updated."
|
||||
msgstr "Editplain Einstellungen gespeichert."
|
||||
|
||||
#: editplain.php:76
|
||||
msgid "Editplain Settings"
|
||||
msgstr "Editplain Einstellungen"
|
||||
|
||||
#: editplain.php:78
|
||||
msgid "Disable richtext status editor"
|
||||
msgstr "Web-Editor für Beiträge deakivieren"
|
||||
|
||||
#: editplain.php:84
|
||||
msgid "Submit"
|
||||
msgstr "Senden"
|
11
editplain/lang/de/strings.php
Normal file
11
editplain/lang/de/strings.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_de")) {
|
||||
function string_plural_select_de($n){
|
||||
return ($n != 1);;
|
||||
}}
|
||||
;
|
||||
$a->strings["Editplain settings updated."] = "Editplain Einstellungen gespeichert.";
|
||||
$a->strings["Editplain Settings"] = "Editplain Einstellungen";
|
||||
$a->strings["Disable richtext status editor"] = "Web-Editor für Beiträge deakivieren";
|
||||
$a->strings["Submit"] = "Senden";
|
6
editplain/lang/eo/strings.php
Normal file
6
editplain/lang/eo/strings.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
$a->strings["Editplain settings updated."] = "Ĝisdatigis la Editplain agordojn.";
|
||||
$a->strings["Editplain Settings"] = "Agordoj por Editplain";
|
||||
$a->strings["Disable richtext status editor"] = "Malŝalti la riĉteksto-redaktilon";
|
||||
$a->strings["Submit"] = "Sendi";
|
36
editplain/lang/es/messages.po
Normal file
36
editplain/lang/es/messages.po
Normal file
|
@ -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 <albertodiaztormo@gmail.com>, 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 <albertodiaztormo@gmail.com>\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"
|
11
editplain/lang/es/strings.php
Normal file
11
editplain/lang/es/strings.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_es")) {
|
||||
function string_plural_select_es($n){
|
||||
return ($n != 1);;
|
||||
}}
|
||||
;
|
||||
$a->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";
|
36
editplain/lang/fr/messages.po
Normal file
36
editplain/lang/fr/messages.po
Normal file
|
@ -0,0 +1,36 @@
|
|||
# ADDON editplain
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica editplain addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Nicola Spanti <translations@nicola-spanti.info>, 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: 2015-07-27 18:13+0000\n"
|
||||
"Last-Translator: Nicola Spanti <translations@nicola-spanti.info>\n"
|
||||
"Language-Team: French (http://www.transifex.com/projects/p/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"
|
||||
|
||||
#: editplain.php:46
|
||||
msgid "Editplain settings updated."
|
||||
msgstr ""
|
||||
|
||||
#: editplain.php:76
|
||||
msgid "Editplain Settings"
|
||||
msgstr ""
|
||||
|
||||
#: editplain.php:78
|
||||
msgid "Disable richtext status editor"
|
||||
msgstr "Désactiver l'éditeur avancé de statut"
|
||||
|
||||
#: editplain.php:84
|
||||
msgid "Submit"
|
||||
msgstr "Soumettre"
|
11
editplain/lang/fr/strings.php
Normal file
11
editplain/lang/fr/strings.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_fr")) {
|
||||
function string_plural_select_fr($n){
|
||||
return ($n > 1);;
|
||||
}}
|
||||
;
|
||||
$a->strings["Editplain settings updated."] = "";
|
||||
$a->strings["Editplain Settings"] = "";
|
||||
$a->strings["Disable richtext status editor"] = "Désactiver l'éditeur avancé de statut";
|
||||
$a->strings["Submit"] = "Soumettre";
|
6
editplain/lang/is/strings.php
Normal file
6
editplain/lang/is/strings.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
$a->strings["Editplain settings updated."] = "";
|
||||
$a->strings["Editplain Settings"] = "";
|
||||
$a->strings["Disable richtext status editor"] = "";
|
||||
$a->strings["Submit"] = "Senda inn";
|
36
editplain/lang/it/messages.po
Normal file
36
editplain/lang/it/messages.po
Normal file
|
@ -0,0 +1,36 @@
|
|||
# ADDON editplain
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica editplain addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# fabrixxm <fabrix.xm@gmail.com>, 2014
|
||||
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: 2014-10-22 07:54+0000\n"
|
||||
"Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n"
|
||||
"Language-Team: Italian (http://www.transifex.com/Friendica/friendica/language/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: editplain.php:46
|
||||
msgid "Editplain settings updated."
|
||||
msgstr "Impostazioni 'Editplain' aggiornate."
|
||||
|
||||
#: editplain.php:76
|
||||
msgid "Editplain Settings"
|
||||
msgstr "Impostazioni Editplain"
|
||||
|
||||
#: editplain.php:78
|
||||
msgid "Disable richtext status editor"
|
||||
msgstr "Disabilita l'editor di testo visuale"
|
||||
|
||||
#: editplain.php:84
|
||||
msgid "Submit"
|
||||
msgstr "Invia"
|
11
editplain/lang/it/strings.php
Normal file
11
editplain/lang/it/strings.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_it")) {
|
||||
function string_plural_select_it($n){
|
||||
return ($n != 1);;
|
||||
}}
|
||||
;
|
||||
$a->strings["Editplain settings updated."] = "Impostazioni 'Editplain' aggiornate.";
|
||||
$a->strings["Editplain Settings"] = "Impostazioni Editplain";
|
||||
$a->strings["Disable richtext status editor"] = "Disabilita l'editor di testo visuale";
|
||||
$a->strings["Submit"] = "Invia";
|
6
editplain/lang/nb-no/strings.php
Normal file
6
editplain/lang/nb-no/strings.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
$a->strings["Editplain settings updated."] = "";
|
||||
$a->strings["Editplain Settings"] = "";
|
||||
$a->strings["Disable richtext status editor"] = "";
|
||||
$a->strings["Submit"] = "Lagre";
|
6
editplain/lang/pl/strings.php
Normal file
6
editplain/lang/pl/strings.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
$a->strings["Editplain settings updated."] = "";
|
||||
$a->strings["Editplain Settings"] = "";
|
||||
$a->strings["Disable richtext status editor"] = "";
|
||||
$a->strings["Submit"] = "Potwierdź";
|
6
editplain/lang/pt-br/strings.php
Normal file
6
editplain/lang/pt-br/strings.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
$a->strings["Editplain settings updated."] = "Configurações Editplain atualizadas.";
|
||||
$a->strings["Editplain Settings"] = "Configurações Editplain";
|
||||
$a->strings["Disable richtext status editor"] = "Disabilite o modo de edição richtext";
|
||||
$a->strings["Submit"] = "Enviar";
|
36
editplain/lang/ro/messages.po
Normal file
36
editplain/lang/ro/messages.po
Normal file
|
@ -0,0 +1,36 @@
|
|||
# ADDON editplain
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica editplain addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Doru DEACONU <dumitrudeaconu@yahoo.com>, 2014
|
||||
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: 2014-11-27 14:13+0000\n"
|
||||
"Last-Translator: Doru DEACONU <dumitrudeaconu@yahoo.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"
|
||||
|
||||
#: editplain.php:46
|
||||
msgid "Editplain settings updated."
|
||||
msgstr "Configurările Editplain au fost actualizate."
|
||||
|
||||
#: editplain.php:76
|
||||
msgid "Editplain Settings"
|
||||
msgstr "Configurări Editplain"
|
||||
|
||||
#: editplain.php:78
|
||||
msgid "Disable richtext status editor"
|
||||
msgstr "Dezactivare editorul status de text îmbogățit"
|
||||
|
||||
#: editplain.php:84
|
||||
msgid "Submit"
|
||||
msgstr "Trimite"
|
11
editplain/lang/ro/strings.php
Normal file
11
editplain/lang/ro/strings.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?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["Editplain settings updated."] = "Configurările Editplain au fost actualizate.";
|
||||
$a->strings["Editplain Settings"] = "Configurări Editplain";
|
||||
$a->strings["Disable richtext status editor"] = "Dezactivare editorul status de text îmbogățit";
|
||||
$a->strings["Submit"] = "Trimite";
|
36
editplain/lang/ru/messages.po
Normal file
36
editplain/lang/ru/messages.po
Normal file
|
@ -0,0 +1,36 @@
|
|||
# ADDON editplain
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica editplain addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Stanislav N. <pztrn@pztrn.name>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
|
||||
"PO-Revision-Date: 2017-04-08 17:10+0000\n"
|
||||
"Last-Translator: Stanislav N. <pztrn@pztrn.name>\n"
|
||||
"Language-Team: Russian (http://www.transifex.com/Friendica/friendica/language/ru/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ru\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#: editplain.php:46
|
||||
msgid "Editplain settings updated."
|
||||
msgstr "Настройки Editplain обновлены"
|
||||
|
||||
#: editplain.php:76
|
||||
msgid "Editplain Settings"
|
||||
msgstr "Настройки Editplain"
|
||||
|
||||
#: editplain.php:78
|
||||
msgid "Disable richtext status editor"
|
||||
msgstr "Отключить richtext status editor"
|
||||
|
||||
#: editplain.php:84
|
||||
msgid "Submit"
|
||||
msgstr "Добавить"
|
11
editplain/lang/ru/strings.php
Normal file
11
editplain/lang/ru/strings.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_ru")) {
|
||||
function string_plural_select_ru($n){
|
||||
return ($n%10==1 && $n%100!=11 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<12 || $n%100>14) ? 1 : $n%10==0 || ($n%10>=5 && $n%10<=9) || ($n%100>=11 && $n%100<=14)? 2 : 3);;
|
||||
}}
|
||||
;
|
||||
$a->strings["Editplain settings updated."] = "Настройки Editplain обновлены";
|
||||
$a->strings["Editplain Settings"] = "Настройки Editplain";
|
||||
$a->strings["Disable richtext status editor"] = "Отключить richtext status editor";
|
||||
$a->strings["Submit"] = "Добавить";
|
3
editplain/lang/sv/strings.php
Normal file
3
editplain/lang/sv/strings.php
Normal file
|
@ -0,0 +1,3 @@
|
|||
<?php
|
||||
|
||||
$a->strings["Submit"] = "Spara";
|
6
editplain/lang/zh-cn/strings.php
Normal file
6
editplain/lang/zh-cn/strings.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
$a->strings["Editplain settings updated."] = "Editplain设置更新了";
|
||||
$a->strings["Editplain Settings"] = "Editplain设置";
|
||||
$a->strings["Disable richtext status editor"] = "使richtext现状编辑 不能用";
|
||||
$a->strings["Submit"] = "提交";
|
Loading…
Add table
Add a link
Reference in a new issue