diff --git a/plugins/GNUsocialPhoto/GNUsocialPhotoPlugin.php b/plugins/GNUsocialPhoto/GNUsocialPhotoPlugin.php deleted file mode 100644 index ae2e136664..0000000000 --- a/plugins/GNUsocialPhoto/GNUsocialPhotoPlugin.php +++ /dev/null @@ -1,144 +0,0 @@ -. - * - * @category Widget - * @package GNU Social - * @author Ian Denhardt - * @copyright 2011 Free Software Foundation, Inc. - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 - */ - -if (!defined('STATUSNET')) { - exit(1); -} - -class GNUsocialPhotoPlugin extends MicroAppPlugin -{ - - var $oldSaveNew = true; - - function onCheckSchema() - { - $schema = Schema::get(); - - $schema->ensureTable('photo', Photo::schemaDef()); - - return true; - } - - function onRouterInitialized($m) - { - $m->connect('main/photo/new', ['action' => 'newphoto']); - $m->connect('main/photo/:id', ['action' => 'showphoto']); - return true; - } - - function entryForm($out) - { - return new NewPhotoForm($out); - } - - function appTitle() - { - return _('Photo'); - } - - function tag() - { - return 'Photo'; - } - - function types() - { - return array(Photo::OBJECT_TYPE); - } - - function saveNoticeFromActivity(Activity $activity, Profile $actor, array $options=array()) - { - - if(count($activity->objects) != 1) { - throw new Exception('Too many activity objects.'); - } - - $photoObj = $activity->objects[0]; - - if ($photoObj->type != Photo::OBJECT_TYPE) { - throw new Exception('Wrong type for object.'); - } - - $photo_uri = $photoObj->largerImage; - $thumb_uri = $photo_uri; - if(!empty($photoObj->thumbnail)){ - $thumb_uri = $photoObj->thumbnail; - } - - $description = $photoObj->description; - $title = $photoObj->title; - - $options['object_type'] = Photo::OBJECT_TYPE; - - Photo::saveNew($actor, $photo_uri, $thumb_uri, $title, $description, $options); - - } - - function activityObjectFromNotice(Notice $notice) - { - - $photo = Photo::getByNotice($notice); - - $object = new ActivityObject(); - $object->id = $notice->uri; - $object->type = Photo::OBJECT_TYPE; - $object->title = $photo->title; - $object->summary = $notice->content; - $object->link = $notice->getUrl(); - - $object->largerImage = $photo->photo_uri; - $object->thumbnail = $photo->thumb_uri; - $object->description = $photo->description; - - return $object; - - } - - function showNoticeContent(Notice $notice, HTMLOutputter $out) - { - $photo = Photo::getByNotice($notice); - if ($photo) { - if($photo->title){ - // TODO: ugly. feel like we should have a more abstract way - // of choosing the h-level. - $out->element('h3', array(), $title); - } - $out->element('img', array('src' => $photo->photo_uri, - 'width' => '100%')); - // TODO: add description - } - } - - function deleteRelated(Notice $notice) - { - $photo = Photo::getByNotice($notice); - if ($photo) { - $photo->delete(); - } - } -} diff --git a/plugins/GNUsocialPhoto/README b/plugins/GNUsocialPhoto/README deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/plugins/GNUsocialPhoto/actions/newphoto.php b/plugins/GNUsocialPhoto/actions/newphoto.php deleted file mode 100644 index e92a64b3dd..0000000000 --- a/plugins/GNUsocialPhoto/actions/newphoto.php +++ /dev/null @@ -1,130 +0,0 @@ -. - * - * @package GNU Social - * @author Ian Denhardt - * @copyright 2011 Free Software Foundation, Inc. - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 - */ - -if(!defined('STATUSNET')){ - exit(1); -} - -class NewphotoAction extends Action -{ - var $user = null; - - function prepare(array $args = array()) - { - parent::prepare($args); - $this->user = common_current_user(); - - if(empty($this->user)){ - throw new ClientException(_('Must be logged in to post a photo'), - 403); - } - - if($this->isPost()){ - $this->checkSessionToken(); - } - - return true; - } - - function handle() - { - parent::handle(); - - if ($this->isPost()) { - $this->handlePost($args); - } else { - $this->showPage(); - } - } - - function handlePost($args) - { - - /* - // Workaround for PHP returning empty $_POST and $_FILES when POST - // length > post_max_size in php.ini - if (empty($_FILES) - && empty($_POST) - && ($_SERVER['CONTENT_LENGTH'] > 0) - ) { - $msg = _('The server was unable to handle that much POST ' . - 'data (%s bytes) due to its current configuration.'); - $this->showForm(sprintf($msg, $_SERVER['CONTENT_LENGTH'])); - return; - } */ - - $profile = $this->user->getProfile(); - - $options = array(); - - ToSelector::fillOptions($this, $options); - - try { - $this->handleUpload(); - } catch (Exception $e) { - $this->showForm($e->getMessage()); - return; - } - - - common_redirect($photo->uri, 303); - } - - function getUpload() - { - $imagefile = ImageFile::fromUpload('photo_upload'); - - if($imagefile === null) { - throw new Exception(_('No file uploaded')); - } - - $title = $this->trimmed('title'); - $description = $this->trimmed('description'); - - $new_filename = UUID::gen() . image_type_to_extension($imagefile->type); - move_uploaded_file($imagefile->filepath, INSTALLDIR . '/file/' . $new_filename); - - // XXX: we should be using https where we can. TODO: detect whether the server - // supports this. - $photo_uri = 'http://' . common_config('site', 'server') . '/file/' - . $new_filename; - $thumb_uri = $photo_uri; - - - $photo = Photo::saveNew($profile, $photo_uri, $thumb_uri, $title, - $description, $options); - - } - - function showContent() - { - $form = new NewPhotoForm(); - $form->show(); - } -} - - diff --git a/plugins/GNUsocialPhoto/actions/showphoto.php b/plugins/GNUsocialPhoto/actions/showphoto.php deleted file mode 100644 index b97a0565f9..0000000000 --- a/plugins/GNUsocialPhoto/actions/showphoto.php +++ /dev/null @@ -1,32 +0,0 @@ -. - * - * @package GNU Social - * @author Ian Denhardt - * @copyright 2011 Free Software Foundation, Inc. - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 - */ - -if(!defined('STATUSNET')){ - exit(1); -} - - diff --git a/plugins/GNUsocialPhoto/classes/Photo.php b/plugins/GNUsocialPhoto/classes/Photo.php deleted file mode 100644 index 4e4ee69c97..0000000000 --- a/plugins/GNUsocialPhoto/classes/Photo.php +++ /dev/null @@ -1,115 +0,0 @@ -. - * - * @package GNU Social - * @author Ian Denhardt - * @copyright 2011 Free Software Foundation, Inc. - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 - */ - -if(!defined('STATUSNET')){ - exit(1); -} - -/** - * Data class for photos. - */ - -class Photo extends Managed_DataObject -{ - const OBJECT_TYPE = 'http://activitystrea.ms/schema/1.0/photo'; - - public $__table = 'photo'; // table name - public $id; // char (36) // UUID - public $uri; // varchar (191) // This is the corresponding notice's uri. not 255 because utf8mb4 takes more space - public $photo_uri; // varchar (191) not 255 because utf8mb4 takes more space - public $thumb_uri; // varchar (191) not 255 because utf8mb4 takes more space - public $title; // varchar (191) not 255 because utf8mb4 takes more space - public $description; // text - public $profile_id; // int - - public static function getByNotice($notice) - { - return self::getKV('uri', $notice->uri); - } - - public function getNotice() - { - return Notice::getKV('uri', $this->uri); - } - - public static function schemaDef() - { - return array( - 'description' => 'A photograph', - 'fields' => array( - 'id' => array('type' => 'char', - 'length' => 36, - 'not null' => true, - 'description' => 'UUID'), - 'uri' => array('type' => 'varchar', - 'length' => 191, - 'not null' => true), - 'photo_uri' => array('type' => 'varchar', - 'length' => 191, - 'not null' => true), - 'photo_uri' => array('type' => 'varchar', - 'length' => 191, - 'not null' => true), - 'profile_id' => array('type' => 'int', 'not null' => true), - ), - 'primary key' => array('id'), - 'foreign keys' => array('photo_profile_id__key' => array('profile' => array('profile_id' => 'id'))), - ); - } - - static function saveNew(Profile $profile, $photo_uri, $thumb_uri, $title, $description, $options=array()) - { - $photo = new Photo(); - - $photo->id = UUID::gen(); - $photo->profile_id = $profile->id; - $photo->photo_uri = $photo_uri; - $photo->thumb_uri = $thumb_uri; - - - $options['object_type'] = Photo::OBJECT_TYPE; - - if (!array_key_exists('uri', $options)) { - $options['uri'] = common_local_url('showphoto', array('id' => $photo->id)); - } - - if (!array_key_exists('rendered', $options)) { - $options['rendered'] = sprintf("\"%s\"", $photo_uri, - $title); - } - - $photo->uri = $options['uri']; - - $photo->insert(); - - return Notice::saveNew($profile->id, - '', - 'web', - $options); - - } -} diff --git a/plugins/GNUsocialPhoto/forms/newphoto.php b/plugins/GNUsocialPhoto/forms/newphoto.php deleted file mode 100644 index 4ef51ca097..0000000000 --- a/plugins/GNUsocialPhoto/forms/newphoto.php +++ /dev/null @@ -1,82 +0,0 @@ -. - * - * @package GNU Social - * @author Ian Denhardt - * @copyright 2011 Free Software Foundation, Inc. - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 - */ - -if(!defined('STATUSNET')){ - exit(1); -} - -class NewPhotoForm extends Form -{ - function id() - { - return "form_new_photo"; - } - - function action() - { - return common_local_url('newphoto'); - } - - function formClass() - { - return 'form_settings ajax-notice'; - } - - function formData() - { - $this->out->elementStart('fieldset', array('id' => 'new_photo_data')); - $this->out->elementStart('ul', 'form_data'); - - $this->li(); - $this->out->input('title', _('Title'), null, _('Photo title (optional).')); - $this->unli(); - - $this->li(); - $this->out->element('input', array('name' => 'photo_upload', - 'type' => 'file', - 'id' => 'photo_upload')); - $this->unli(); - - $this->li(); - $this->textarea('description', _('Description'), null, _('Description of the photo (optional).')); - $this->unli(); - - $this->out->elementEnd('ul'); - - $toWidget = new ToSelector($this->out, - common_current_user(), - null); - $toWidget->show(); - - $this->out->elementEnd('fieldset'); - } - - function formActions() - { - $this->out->submit('photo-submit', _m('BUTTON', 'Save')); - } -} diff --git a/plugins/GNUsocialPhoto/locale/GNUsocialPhoto.pot b/plugins/GNUsocialPhoto/locale/GNUsocialPhoto.pot deleted file mode 100644 index b6f9e5c801..0000000000 --- a/plugins/GNUsocialPhoto/locale/GNUsocialPhoto.pot +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-14 14:51+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: 8bit\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "" diff --git a/plugins/GNUsocialPhoto/locale/af/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/af/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index e7c1f2c3d1..0000000000 --- a/plugins/GNUsocialPhoto/locale/af/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Afrikaans (http://www.transifex.com/gnu-social/gnu-social/language/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Stoor" diff --git a/plugins/GNUsocialPhoto/locale/ar/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/ar/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index d57d002d17..0000000000 --- a/plugins/GNUsocialPhoto/locale/ar/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Arabic (http://www.transifex.com/gnu-social/gnu-social/language/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "احفظ" diff --git a/plugins/GNUsocialPhoto/locale/arz/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/arz/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 05cfabfd65..0000000000 --- a/plugins/GNUsocialPhoto/locale/arz/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Arabic (Egypt) (http://www.transifex.com/gnu-social/gnu-social/language/ar_EG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_EG\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "أرسل" diff --git a/plugins/GNUsocialPhoto/locale/ast/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/ast/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index c4e4e13391..0000000000 --- a/plugins/GNUsocialPhoto/locale/ast/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Asturian (http://www.transifex.com/gnu-social/gnu-social/language/ast/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ast\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "" diff --git a/plugins/GNUsocialPhoto/locale/be-tarask/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/be-tarask/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 8adb6f8662..0000000000 --- a/plugins/GNUsocialPhoto/locale/be-tarask/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Belarusian (Tarask) (http://www.transifex.com/gnu-social/gnu-social/language/be@tarask/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be@tarask\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" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Захаваць" diff --git a/plugins/GNUsocialPhoto/locale/bg/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/bg/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index bac502e304..0000000000 --- a/plugins/GNUsocialPhoto/locale/bg/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Bulgarian (http://www.transifex.com/gnu-social/gnu-social/language/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Запазване" diff --git a/plugins/GNUsocialPhoto/locale/bn_IN/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/bn_IN/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index a3833fa1a5..0000000000 --- a/plugins/GNUsocialPhoto/locale/bn_IN/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Bengali (India) (http://www.transifex.com/gnu-social/gnu-social/language/bn_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bn_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "" diff --git a/plugins/GNUsocialPhoto/locale/br/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/br/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index ebec2710a1..0000000000 --- a/plugins/GNUsocialPhoto/locale/br/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Breton (http://www.transifex.com/gnu-social/gnu-social/language/br/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: br\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Enrollañ" diff --git a/plugins/GNUsocialPhoto/locale/ca/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/ca/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 37ea52f6c8..0000000000 --- a/plugins/GNUsocialPhoto/locale/ca/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Catalan (http://www.transifex.com/gnu-social/gnu-social/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" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Desa" diff --git a/plugins/GNUsocialPhoto/locale/cs/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/cs/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 5863986d95..0000000000 --- a/plugins/GNUsocialPhoto/locale/cs/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Czech (http://www.transifex.com/gnu-social/gnu-social/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" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Uložit" diff --git a/plugins/GNUsocialPhoto/locale/da/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/da/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index ef208d220a..0000000000 --- a/plugins/GNUsocialPhoto/locale/da/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Danish (http://www.transifex.com/gnu-social/gnu-social/language/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Gem" diff --git a/plugins/GNUsocialPhoto/locale/de/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/de/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 3a5b9182d5..0000000000 --- a/plugins/GNUsocialPhoto/locale/de/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: German (http://www.transifex.com/gnu-social/gnu-social/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" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Speichern" diff --git a/plugins/GNUsocialPhoto/locale/el/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/el/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 2a42a297de..0000000000 --- a/plugins/GNUsocialPhoto/locale/el/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Greek (http://www.transifex.com/gnu-social/gnu-social/language/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Αποθήκευση" diff --git a/plugins/GNUsocialPhoto/locale/en_GB/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/en_GB/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 3948026feb..0000000000 --- a/plugins/GNUsocialPhoto/locale/en_GB/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: English (United Kingdom) (http://www.transifex.com/gnu-social/gnu-social/language/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Save" diff --git a/plugins/GNUsocialPhoto/locale/eo/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/eo/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 7c11ccdd79..0000000000 --- a/plugins/GNUsocialPhoto/locale/eo/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Esperanto (http://www.transifex.com/gnu-social/gnu-social/language/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Konservi" diff --git a/plugins/GNUsocialPhoto/locale/es/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/es/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 0fef653905..0000000000 --- a/plugins/GNUsocialPhoto/locale/es/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Spanish (http://www.transifex.com/gnu-social/gnu-social/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" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Guardar" diff --git a/plugins/GNUsocialPhoto/locale/eu/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/eu/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index b06a8faada..0000000000 --- a/plugins/GNUsocialPhoto/locale/eu/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Basque (http://www.transifex.com/gnu-social/gnu-social/language/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Gorde" diff --git a/plugins/GNUsocialPhoto/locale/fa/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/fa/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 8cac13fd30..0000000000 --- a/plugins/GNUsocialPhoto/locale/fa/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Persian (http://www.transifex.com/gnu-social/gnu-social/language/fa/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "ذخیره‌کردن" diff --git a/plugins/GNUsocialPhoto/locale/fi/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/fi/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 366b99501a..0000000000 --- a/plugins/GNUsocialPhoto/locale/fi/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Finnish (http://www.transifex.com/gnu-social/gnu-social/language/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Tallenna" diff --git a/plugins/GNUsocialPhoto/locale/fr/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/fr/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 122f07024a..0000000000 --- a/plugins/GNUsocialPhoto/locale/fr/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/gnu-social/gnu-social/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" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Enregistrer" diff --git a/plugins/GNUsocialPhoto/locale/fur/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/fur/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index b87a62c07e..0000000000 --- a/plugins/GNUsocialPhoto/locale/fur/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Friulian (http://www.transifex.com/gnu-social/gnu-social/language/fur/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fur\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Salve" diff --git a/plugins/GNUsocialPhoto/locale/gl/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/gl/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 2d1473dd2e..0000000000 --- a/plugins/GNUsocialPhoto/locale/gl/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Galician (http://www.transifex.com/gnu-social/gnu-social/language/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Gardar" diff --git a/plugins/GNUsocialPhoto/locale/he/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/he/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index c501537645..0000000000 --- a/plugins/GNUsocialPhoto/locale/he/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Hebrew (http://www.transifex.com/gnu-social/gnu-social/language/he/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "שמור" diff --git a/plugins/GNUsocialPhoto/locale/hsb/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/hsb/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 37d2503a49..0000000000 --- a/plugins/GNUsocialPhoto/locale/hsb/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Upper Sorbian (http://www.transifex.com/gnu-social/gnu-social/language/hsb/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hsb\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Składować" diff --git a/plugins/GNUsocialPhoto/locale/hu/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/hu/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 764a01ba12..0000000000 --- a/plugins/GNUsocialPhoto/locale/hu/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Hungarian (http://www.transifex.com/gnu-social/gnu-social/language/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Mentés" diff --git a/plugins/GNUsocialPhoto/locale/hy_AM/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/hy_AM/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 8383c5110d..0000000000 --- a/plugins/GNUsocialPhoto/locale/hy_AM/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Armenian (Armenia) (http://www.transifex.com/gnu-social/gnu-social/language/hy_AM/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy_AM\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "" diff --git a/plugins/GNUsocialPhoto/locale/ia/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/ia/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index e7cb701ef7..0000000000 --- a/plugins/GNUsocialPhoto/locale/ia/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Interlingua (http://www.transifex.com/gnu-social/gnu-social/language/ia/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ia\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Salveguardar" diff --git a/plugins/GNUsocialPhoto/locale/id/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/id/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 3c1dde7479..0000000000 --- a/plugins/GNUsocialPhoto/locale/id/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,24 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -# zk , 2015 -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-05-28 15:50+0000\n" -"Last-Translator: zk \n" -"Language-Team: Indonesian (http://www.transifex.com/gnu-social/gnu-social/language/id/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Simpan" diff --git a/plugins/GNUsocialPhoto/locale/io/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/io/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 388a050266..0000000000 --- a/plugins/GNUsocialPhoto/locale/io/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-06-15 03:05+0000\n" -"Last-Translator: Ciencisto Dementa \n" -"Language-Team: Ido (http://www.transifex.com/gnu-social/gnu-social/language/io/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: io\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Konservar" diff --git a/plugins/GNUsocialPhoto/locale/is/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/is/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 956e8a7ef3..0000000000 --- a/plugins/GNUsocialPhoto/locale/is/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Icelandic (http://www.transifex.com/gnu-social/gnu-social/language/is/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: is\n" -"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Vista" diff --git a/plugins/GNUsocialPhoto/locale/it/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/it/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 33248a0b1b..0000000000 --- a/plugins/GNUsocialPhoto/locale/it/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Italian (http://www.transifex.com/gnu-social/gnu-social/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" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Salva" diff --git a/plugins/GNUsocialPhoto/locale/ja/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/ja/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index fd55587ba8..0000000000 --- a/plugins/GNUsocialPhoto/locale/ja/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Japanese (http://www.transifex.com/gnu-social/gnu-social/language/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "保存" diff --git a/plugins/GNUsocialPhoto/locale/ka/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/ka/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index c992535c1f..0000000000 --- a/plugins/GNUsocialPhoto/locale/ka/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Georgian (http://www.transifex.com/gnu-social/gnu-social/language/ka/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ka\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "შენახვა" diff --git a/plugins/GNUsocialPhoto/locale/ko/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/ko/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 14de5ded92..0000000000 --- a/plugins/GNUsocialPhoto/locale/ko/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Korean (http://www.transifex.com/gnu-social/gnu-social/language/ko/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "저장" diff --git a/plugins/GNUsocialPhoto/locale/ksh/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/ksh/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 229cc527d0..0000000000 --- a/plugins/GNUsocialPhoto/locale/ksh/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Colognian (http://www.transifex.com/gnu-social/gnu-social/language/ksh/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ksh\n" -"Plural-Forms: nplurals=3; plural=(n==0) ? 0 : (n==1) ? 1 : 2;\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "" diff --git a/plugins/GNUsocialPhoto/locale/lb/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/lb/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 7880201c52..0000000000 --- a/plugins/GNUsocialPhoto/locale/lb/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Luxembourgish (http://www.transifex.com/gnu-social/gnu-social/language/lb/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lb\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Späicheren" diff --git a/plugins/GNUsocialPhoto/locale/lt/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/lt/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 2e20e46ad3..0000000000 --- a/plugins/GNUsocialPhoto/locale/lt/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Lithuanian (http://www.transifex.com/gnu-social/gnu-social/language/lt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Išsaugoti" diff --git a/plugins/GNUsocialPhoto/locale/lv/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/lv/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 66f73f61cd..0000000000 --- a/plugins/GNUsocialPhoto/locale/lv/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-07 09:39+0000\n" -"Last-Translator: digitaldreamer \n" -"Language-Team: Latvian (http://www.transifex.com/gnu-social/gnu-social/language/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "" diff --git a/plugins/GNUsocialPhoto/locale/mg/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/mg/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 75311d5f54..0000000000 --- a/plugins/GNUsocialPhoto/locale/mg/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Malagasy (http://www.transifex.com/gnu-social/gnu-social/language/mg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mg\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Tehirizina" diff --git a/plugins/GNUsocialPhoto/locale/mk/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/mk/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index a58be575a8..0000000000 --- a/plugins/GNUsocialPhoto/locale/mk/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Macedonian (http://www.transifex.com/gnu-social/gnu-social/language/mk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Зачувај" diff --git a/plugins/GNUsocialPhoto/locale/ml/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/ml/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 9ee22bd5b2..0000000000 --- a/plugins/GNUsocialPhoto/locale/ml/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Malayalam (http://www.transifex.com/gnu-social/gnu-social/language/ml/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ml\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "സേവ് ചെയ്യുക" diff --git a/plugins/GNUsocialPhoto/locale/ms/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/ms/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index cb5f1a2c47..0000000000 --- a/plugins/GNUsocialPhoto/locale/ms/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Malay (http://www.transifex.com/gnu-social/gnu-social/language/ms/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ms\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Simpan" diff --git a/plugins/GNUsocialPhoto/locale/my/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/my/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 6db8ee60e8..0000000000 --- a/plugins/GNUsocialPhoto/locale/my/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Burmese (http://www.transifex.com/gnu-social/gnu-social/language/my/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: my\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "သိမ်းရန်" diff --git a/plugins/GNUsocialPhoto/locale/nb/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/nb/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index b8792bfe92..0000000000 --- a/plugins/GNUsocialPhoto/locale/nb/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Norwegian Bokmål (http://www.transifex.com/gnu-social/gnu-social/language/nb/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Lagre" diff --git a/plugins/GNUsocialPhoto/locale/ne/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/ne/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 201360fe74..0000000000 --- a/plugins/GNUsocialPhoto/locale/ne/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-07 09:30+0000\n" -"Last-Translator: digitaldreamer \n" -"Language-Team: Nepali (http://www.transifex.com/gnu-social/gnu-social/language/ne/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ne\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "" diff --git a/plugins/GNUsocialPhoto/locale/nl/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/nl/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 928ab1b300..0000000000 --- a/plugins/GNUsocialPhoto/locale/nl/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Dutch (http://www.transifex.com/gnu-social/gnu-social/language/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Opslaan" diff --git a/plugins/GNUsocialPhoto/locale/nn/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/nn/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 98bdc89734..0000000000 --- a/plugins/GNUsocialPhoto/locale/nn/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Norwegian Nynorsk (http://www.transifex.com/gnu-social/gnu-social/language/nn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nn\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Lagra" diff --git a/plugins/GNUsocialPhoto/locale/pl/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/pl/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index dfcc95e24a..0000000000 --- a/plugins/GNUsocialPhoto/locale/pl/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Polish (http://www.transifex.com/gnu-social/gnu-social/language/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Zapisz" diff --git a/plugins/GNUsocialPhoto/locale/pt/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/pt/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 237a0bb976..0000000000 --- a/plugins/GNUsocialPhoto/locale/pt/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (http://www.transifex.com/gnu-social/gnu-social/language/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Gravar" diff --git a/plugins/GNUsocialPhoto/locale/pt_BR/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/pt_BR/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index f320cab330..0000000000 --- a/plugins/GNUsocialPhoto/locale/pt_BR/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/gnu-social/gnu-social/language/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Salvar" diff --git a/plugins/GNUsocialPhoto/locale/ro_RO/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/ro_RO/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index a3872b4294..0000000000 --- a/plugins/GNUsocialPhoto/locale/ro_RO/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/gnu-social/gnu-social/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" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "" diff --git a/plugins/GNUsocialPhoto/locale/ru/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/ru/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 697d3cc1e7..0000000000 --- a/plugins/GNUsocialPhoto/locale/ru/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Russian (http://www.transifex.com/gnu-social/gnu-social/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" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Сохранить" diff --git a/plugins/GNUsocialPhoto/locale/sl/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/sl/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 450d7b2b99..0000000000 --- a/plugins/GNUsocialPhoto/locale/sl/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Slovenian (http://www.transifex.com/gnu-social/gnu-social/language/sl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "" diff --git a/plugins/GNUsocialPhoto/locale/sr-ec/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/sr-ec/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 61d6cd7599..0000000000 --- a/plugins/GNUsocialPhoto/locale/sr-ec/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Serbian (http://www.transifex.com/gnu-social/gnu-social/language/sr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Сачувај" diff --git a/plugins/GNUsocialPhoto/locale/sv/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/sv/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index f6a33212c2..0000000000 --- a/plugins/GNUsocialPhoto/locale/sv/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Swedish (http://www.transifex.com/gnu-social/gnu-social/language/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Spara" diff --git a/plugins/GNUsocialPhoto/locale/ta/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/ta/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 270d46e3ef..0000000000 --- a/plugins/GNUsocialPhoto/locale/ta/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-07 08:48+0000\n" -"Last-Translator: digitaldreamer \n" -"Language-Team: Tamil (http://www.transifex.com/gnu-social/gnu-social/language/ta/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ta\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "" diff --git a/plugins/GNUsocialPhoto/locale/te/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/te/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 1b85a7a527..0000000000 --- a/plugins/GNUsocialPhoto/locale/te/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Telugu (http://www.transifex.com/gnu-social/gnu-social/language/te/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: te\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "భద్రపరచు" diff --git a/plugins/GNUsocialPhoto/locale/tl/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/tl/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index a334a8d18e..0000000000 --- a/plugins/GNUsocialPhoto/locale/tl/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Tagalog (http://www.transifex.com/gnu-social/gnu-social/language/tl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tl\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Sagipin" diff --git a/plugins/GNUsocialPhoto/locale/tr/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/tr/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 0e205117a7..0000000000 --- a/plugins/GNUsocialPhoto/locale/tr/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Turkish (http://www.transifex.com/gnu-social/gnu-social/language/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Kaydet" diff --git a/plugins/GNUsocialPhoto/locale/uk/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/uk/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 09168cb8c5..0000000000 --- a/plugins/GNUsocialPhoto/locale/uk/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Ukrainian (http://www.transifex.com/gnu-social/gnu-social/language/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Зберегти" diff --git a/plugins/GNUsocialPhoto/locale/ur_PK/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/ur_PK/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index db1fe664a6..0000000000 --- a/plugins/GNUsocialPhoto/locale/ur_PK/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Urdu (Pakistan) (http://www.transifex.com/gnu-social/gnu-social/language/ur_PK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ur_PK\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "تبدیلیاں محفوظ کریں" diff --git a/plugins/GNUsocialPhoto/locale/vi/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/vi/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 4a86080418..0000000000 --- a/plugins/GNUsocialPhoto/locale/vi/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Vietnamese (http://www.transifex.com/gnu-social/gnu-social/language/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "Lưu" diff --git a/plugins/GNUsocialPhoto/locale/zh/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/zh/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 745b71c712..0000000000 --- a/plugins/GNUsocialPhoto/locale/zh/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Chinese (http://www.transifex.com/gnu-social/gnu-social/language/zh/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "" diff --git a/plugins/GNUsocialPhoto/locale/zh_CN/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/zh_CN/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 895385bafa..0000000000 --- a/plugins/GNUsocialPhoto/locale/zh_CN/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Chinese (China) (http://www.transifex.com/gnu-social/gnu-social/language/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "保存" diff --git a/plugins/GNUsocialPhoto/locale/zh_TW/LC_MESSAGES/GNUsocialPhoto.po b/plugins/GNUsocialPhoto/locale/zh_TW/LC_MESSAGES/GNUsocialPhoto.po deleted file mode 100644 index 8da31a6087..0000000000 --- a/plugins/GNUsocialPhoto/locale/zh_TW/LC_MESSAGES/GNUsocialPhoto.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Chinese (Taiwan) (http://www.transifex.com/gnu-social/gnu-social/language/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: forms/newphoto.php:80 -msgctxt "BUTTON" -msgid "Save" -msgstr "" diff --git a/plugins/GNUsocialPhotos/GNUsocialPhotosPlugin.php b/plugins/GNUsocialPhotos/GNUsocialPhotosPlugin.php deleted file mode 100644 index fce0fb4f1b..0000000000 --- a/plugins/GNUsocialPhotos/GNUsocialPhotosPlugin.php +++ /dev/null @@ -1,170 +0,0 @@ -. - * - * @category Widget - * @package GNU Social - * @author Ian Denhardt - * @author Max Shinn - * @copyright 2010 Free Software Foundation, Inc. - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 - */ - -/* Photo sharing plugin */ - -if (!defined('STATUSNET')) { - exit(1); -} - -include_once $dir . '/lib/photolib.php'; - -class GNUsocialPhotosPlugin extends Plugin -{ - function onCheckSchema() - { - $schema = Schema::get(); - $schema->ensureTable('GNUsocialPhoto', GNUsocialPhoto::schemaDef()); - $schema->ensureTable('GNUsocialPhotoAlbum', GNUsocialPhotoAlbum::schemaDef()); - } - - function onRouterInitialized($m) - { - $m->connect(':nickname/photos', ['action' => 'photos']); - $m->connect(':nickname/photos/:albumid', ['action' => 'photos']); - $m->connect('main/uploadphoto', ['action' => 'photoupload']); - $m->connect('photo/:photoid', ['action' => 'photo']); - $m->connect('editphoto/:photoid', ['action' => 'editphoto']); - return true; - } - - function onStartNoticeDistribute($notice) - { - common_log(LOG_INFO, "event: StartNoticeDistribute"); - if (GNUsocialPhotoTemp::$tmp) { - GNUsocialPhotoTemp::$tmp->notice_id = $notice->id; - $photo_id = GNUsocialPhotoTemp::$tmp->insert(); - if (!$photo_id) { - common_log_db_error($photo, 'INSERT', __FILE__); - throw new ServerException(_m('Problem saving photo.')); - } - } - return true; - } - - function onEndNoticeAsActivity(Notice $stored, Activity $act, Profile $scoped=null) - { - common_log(LOG_INFO, 'photo plugin: EndNoticeAsActivity'); - $photo = GNUsocialPhoto::getKV('notice_id', $stored->id); - if(!$photo) { - common_log(LOG_INFO, 'not a photo.'); - return true; - } - - $act->objects[0]->type = ActivityObject::PHOTO; - $act->objects[0]->thumbnail = $photo->thumb_uri; - $act->objects[0]->largerImage = $photo->uri; - return false; - } - - - function onStartHandleFeedEntry($activity) - { - common_log(LOG_INFO, 'photo plugin: onEndAtomPubNewActivity'); - $oprofile = Ostatus_profile::ensureActorProfile($activity); - foreach ($activity->objects as $object) { - if($object->type == ActivityObject::PHOTO) { - $uri = $object->largerImage; - $thumb_uri = $object->thumbnail; - $profile_id = $oprofile->profile_id; - $source = 'unknown'; // TODO: put something better here. - - common_log(LOG_INFO, 'uri : ' . $uri); - common_log(LOG_INFO, 'thumb_uri : ' . $thumb_uri); - - // It's possible this is validated elsewhere, but I'm not sure and - // would rather be safe. - $uri = filter_var($uri, FILTER_SANITIZE_URL); - $thumb_uri = filter_var($thumb_uri, FILTER_SANITIZE_URL); - $uri = filter_var($uri, FILTER_VALIDATE_URL); - $thumb_uri = filter_var($thumb_uri, FILTER_VALIDATE_URL); - - if(empty($thumb_uri)) { - // We need a thumbnail, so if we aren't given one, use the actual picture for now. - $thumb_uri = $uri; - } - - if (!empty($uri) && !empty($thumb_uri)) { - GNUsocialPhoto::saveNew($profile_id, $thumb_uri, $uri, $source, false); - } else { - common_log(LOG_INFO, 'bad URI for photo'); - } - return false; - } - } - return true; - } - - function onStartShowNoticeItem($action) - { - $photo = GNUsocialPhoto::getKV('notice_id', $action->notice->id); - if($photo) { - $action->out->elementStart('div', 'entry-title'); - $action->showAuthor(); - $action->out->elementStart('a', array('href' => $photo->getPageLink())); - $action->out->element('img', array('src' => $photo->thumb_uri, - 'width' => 256, 'height' => 192)); - $action->out->elementEnd('a'); - $action->out->elementEnd('div'); - $action->showNoticeInfo(); - $action->showNoticeOptions(); - return false; - } - return true; - } - - /* function onEndShowNoticeFormData($action) - { - $link = "/main/uploadphoto"; - $action->out->element('label', array('for' => 'photofile'),_('Attach')); - $action->out->element('input', array('id' => 'photofile', - 'type' => 'file', - 'name' => 'photofile', - 'title' => _('Upload a photo'))); - } - */ - function onEndPersonalGroupNav(Menu $nav, Profile $target, Profile $scoped=null) - { - - $nav->out->menuItem(common_local_url('photos', - array('nickname' => $nav->action->trimmed('nickname'))), _('Photos'), - _('Photo gallery'), $nav->action->trimmed('action') == 'photos', 'nav_photos'); - } - - function onEndShowStyles($action) - { - $action->cssLink('/plugins/GNUsocialPhotos/res/style.css'); - } - - function onEndShowScripts($action) - { - $action->script('plugins/GNUsocialPhotos/res/gnusocialphotos.js'); - } -} - diff --git a/plugins/GNUsocialPhotos/README b/plugins/GNUsocialPhotos/README deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/plugins/GNUsocialPhotos/actions/editphoto.php b/plugins/GNUsocialPhotos/actions/editphoto.php deleted file mode 100644 index 30bd64b2ca..0000000000 --- a/plugins/GNUsocialPhotos/actions/editphoto.php +++ /dev/null @@ -1,202 +0,0 @@ -. - * - * @category Widget - * @package GNU Social - * @author Ian Denhardt - * @author Sean Corbett - * @author Max Shinn - * @copyright 2010 Free Software Foundation, Inc. - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 - */ - -if (!defined('STATUSNET')) { - exit(1); -} - -class EditphotoAction extends Action -{ - var $user = null; - - function prepare(array $args = array()) - { - parent::prepare($args); - $args = $this->returnToArgs(); - $this->user = common_current_user(); - $this->photoid = $args[1]['photoid']; - $this->photo = GNUsocialPhoto::getKV('id', $this->photoid); - return true; - } - - function handle() - { - parent::handle(); - if($_SERVER['REQUEST_METHOD'] == 'POST') { - $this->handlePost(); - } - $this->showPage(); - } - - function title() - { - if ($this->photo->title) - return _m('Edit photo - ' . $this->photo->title); - else - return _m('Edit photo'); - } - - function showContent() - { - - if ($this->photo->album_id == 0) { - $this->element('p', array(), _('This photo does not exist or was deleted.')); - return; - } - - if ($this->user->profile_id != $this->photo->profile_id) { - $this->element('p', array(), _('You are not authorized to edit this photo.')); - return; - } - - //showForm() data - if(!empty($this->msg)) { - $class = ($this->success) ? 'success' : 'error'; - $this->element('p', array('class' => $class), $this->msg); - } - - $this->element('img', array('src' => $this->photo->uri)); - $this->elementStart('form', array('method' => 'post', - 'action' => '/editphoto/' . $this->photo->id)); - $this->elementStart('ul', 'form_data'); - $this->elementStart('li'); - $this->input('phototitle', _("Title"), $this->photo->title, _("The title of the photo. (Optional)")); - $this->elementEnd('li'); - $this->elementStart('li'); - $this->textarea('photo_description', _("Description"), $this->photo->photo_description, _("A description of the photo. (Optional)")); - $this->elementEnd('li'); - $this->elementStart('li'); - $this->dropdown('album', _("Album"), $this->albumList(), _("The album in which to place this photo"), false, $this->photo->album_id); - $this->elementEnd('li'); - $this->elementEnd('ul'); - $this->submit('update', _('Update')); - $this->elementEnd('form'); - $this->element('br'); - $this->elementStart('form', array('method' => 'post', - 'action' => '/editphoto/' . $this->photo->id)); - $this->element('input', array('type' => 'submit', - 'name' => 'delete', - 'value' => _('Delete Photo'), - 'id' => 'delete', - 'class' => 'submit', - 'onclick' => 'return confirm(\'Are you sure you would like to delete this photo?\')')); - $this->elementEnd('form'); - - } - - function handlePost() - { - - common_log(LOG_INFO, 'handlPost()!'); - - if ($this->photo->album_id == 0) { - $this->element('p', array(), _('This photo does not exist or was deleted.')); - return; - } - - if ($this->user->profile_id != $this->photo->profile_id) { - $this->element('p', array(), _('You are not authorized to edit this photo.')); - return; - } - - if ($this->arg('update')) { - $this->updatePhoto(); - } - if ($this->arg('delete')) { - $this->deletePhoto(); - } - } - - function showForm($msg, $success=false) - { - $this->msg = $msg; - $this->success = $success; - -// $this->showPage(); - } - - function albumList() - { - $cur = common_current_user(); - $album = new GNUsocialPhotoAlbum(); - $album->user_id = $cur->id; - - $albumlist = array(); - if (!$album->find()) { - GNUsocialPhotoAlbum::newAlbum($cur->id, 'Default'); - } - while ($album->fetch()) { - $albumlist[$album->album_id] = $album->album_name; - } - return $albumlist; - } - - function updatePhoto() - { - $cur = common_current_user(); - $this->photo->title = $this->trimmed('phototitle'); - $this->photo->photo_description = $this->trimmed('photo_description'); - - $profile_id = $cur->id; - - $album = GNUsocialPhotoAlbum::getKV('album_id', $this->trimmed('album')); - if ($album->profile_id != $profile_id) { - $this->showForm(_('Error: This is not your album!')); - return; - } - $this->photo->album_id = $album->album_id; - if ($this->photo->validate()) - $this->photo->update(); - else { - $this->showForm(_('Error: The photo data is not valid.')); - return; - } - common_redirect('/photo/' . $this->photo->id, '303'); - // common_redirect exits - } - - function deletePhoto() - { - //For redirection - $oldalbum = $this->album_id; - - $notice = Notice::getKV('id', $this->photo->notice_id); - - $this->photo->delete(); - - if (Event::handle('StartDeleteOwnNotice', array($this->user, $notice))) { - $notice->deleteAs($this->scoped); - Event::handle('EndDeleteOwnNotice', array($this->user, $notice)); - } - $this->showForm(_('Success!')); - common_redirect('/' . $this->user->nickname . '/photos/' . $oldalbum, '303'); - } - -} diff --git a/plugins/GNUsocialPhotos/actions/photo.php b/plugins/GNUsocialPhotos/actions/photo.php deleted file mode 100644 index ecd64919c5..0000000000 --- a/plugins/GNUsocialPhotos/actions/photo.php +++ /dev/null @@ -1,101 +0,0 @@ -. - * - * @category Widget - * @package GNU Social - * @author Ian Denhardt - * @author Sean Corbett - * @author Max Shinn - * @copyright 2010 Free Software Foundation, Inc. - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 - */ - -if (!defined('GNUSOCIAL')) { exit(1); } - -class PhotoAction extends ManagedAction -{ - var $user = null; - var $conv = null; // Conversation dataobject - - protected function prepare(array $args=array()) - { - parent::prepare($args); - - $args = $this->returnToArgs(); - $this->photoid = $args[1]['photoid']; - $this->photo = GNUsocialPhoto::getKV('id', $this->photoid); - $this->notice = Notice::getKV('id', $this->photo->notice_id); - - $this->user = Profile::getKV('id', $this->notice->profile_id); - $this->conv = $this->notice->getConversation(); - - return true; - } - - function title() - { - if (empty($this->user)) { - return _m('No such user.'); - } else if (empty($this->photo)) { - return _m('No such photo.'); - } else if (!empty($this->photo->title)) { - return $this->photo->title; - } else { - return sprintf(_m("%s's Photo."), $this->user->nickname); - } - } - - function showLocalNav() - { - $nav = new GNUsocialPhotoNav($this, $this->user->nickname); - $nav->show(); - } - - function showContent() - { - if(empty($this->user)) { - return; - } - - $this->elementStart('a', array('href' => $this->photo->uri)); - $this->element('img', array('src' => $this->photo->uri)); - $this->elementEnd('a'); - - //Image "toolbar" - $cur = common_current_user(); - if($this->photo->profile_id == $cur->profile_id) { - $this->elementStart('div', array('id' => 'image_toolbar')); - $this->element('a', array('href' => '/editphoto/' . $this->photo->id), 'Edit'); - $this->elementEnd('div'); - } - - $this->element('p', array('class' => 'photodescription'), $this->photo->photo_description); - //This is a hack to hide the top-level comment - $this->element('style', array(), "#notice-{$this->photo->notice_id} div { display: none } #notice-{$this->photo->notice_id} ol li div { display: inline }"); - - if (Event::handle('StartShowConversation', array($this, $this->conv, $this->scoped))) { - $notices = $this->conv->getNotices($this->scoped); - $nl = new FullThreadedNoticeList($notices, $this, $this->scoped); - $cnt = $nl->show(); - } - Event::handle('EndShowConversation', array($this, $this->conv, $this->scoped)); - } -} diff --git a/plugins/GNUsocialPhotos/actions/photos.php b/plugins/GNUsocialPhotos/actions/photos.php deleted file mode 100644 index 95d5e12b36..0000000000 --- a/plugins/GNUsocialPhotos/actions/photos.php +++ /dev/null @@ -1,174 +0,0 @@ -. - * - * @category Widget - * @package GNU Social - * @author Ian Denhardt - * @author Sean Corbett - * @author Max Shinn - * @copyright 2010 Free Software Foundation, Inc. - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 - */ - -if (!defined('STATUSNET')) { - exit(1); -} - -require_once INSTALLDIR.'/lib/personalgroupnav.php'; - -class PhotosAction extends Action -{ - var $user = null; - - function prepare(array $args = array()) - { - parent::prepare($args); - - $args = $this->returnToArgs(); - $username = $args[1]['nickname']; - $this->albumid = $args[1]['albumid']; - if (common_valid_profile_tag($username) == 0) { - $this->user = null; - } else { - $this->user = Profile::getKV('nickname', $username); - } - return true; - } - - function handle() - { - parent::handle(); - $this->showPage(); - } - - function title() - { - if (empty($this->user)) { - return _m('No such user.'); - } else { - return sprintf(_m("%s's Photos."), $this->user->nickname); - } - } - - function showLocalNav() - { - $nav = new PersonalGroupNav($this); - $nav->show(); - } - - function showResizeImagesBox() - { - $this->elementStart('select', array('onchange' => 'return scalePhotosToSize(this.value)')); - $this->element('option', array('value' => ''), ""); - $this->element('option', array('value' => '60'), _("Thumbnail")); - $this->element('option', array('value' => '120'), _("Medium")); - $this->element('option', array('value' => '400'), _("Normal")); - $this->elementEnd('select'); - } - - function showAlbums() - { - $album = new GNUsocialPhotoAlbum(); - $album->profile_id = $this->user->id; - - $albums = array(); - if (!$album->find()) { - GNUsocialPhotoAlbum::newAlbum($this->user->id, 'Default'); - } - - $this->elementStart('div', array('class' => 'galleryheader')); - //$this->element('a', array('href' => '#', - // 'onclick' => 'return increasePhotoSize()'), '+'); - //$this->raw(' | '); - //$this->element('a', array('href' => '#', - // 'onclick' => 'return decreasePhotoSize()'), '-'); - - $this->showResizeImagesBox(); - $this->elementEnd('div'); - - - - while ($album->fetch()) { - $this->elementStart('div', array('class' => 'photocontainer')); - $this->elementStart('a', array('href' => $album->getPageLink())); - $this->element('img', array('src' => $album->getThumbUri(), - 'class' => 'albumingallery')); - $this->elementEnd('a'); - $this->element('h3', array(), $album->album_name); - $this->elementEnd('div'); - } - - } - - function showAlbum($album_id) - { - $album = GNUsocialPhotoAlbum::getKV('album_id', $album_id); - if (!$album) { - return; - } - - $page = $_GET['pageid']; - if (!filter_var($page, FILTER_VALIDATE_INT)){ - $page = 1; - } - - $photos = GNUsocialPhoto::getGalleryPage($page, $album->album_id, 9); - $this->elementStart('div', array('class' => 'galleryheader')); - if ($page > 1) { - $this->element('a', array('href' => $album->getPageLink() . '?pageid=' . ($page-1)), 'Previous page'); - $this->raw(' | '); - } - if (GNUsocialPhoto::getGalleryPage($page+1, $album->album_id, 9)) { - $this->element('a', array('href' => $album->getPageLink() . '?pageid=' . ($page+1) ), 'Next page'); - $this->raw(' | '); - } - - //$this->element('a', array('href' => '#', - // 'onclick' => 'return increasePhotoSize()'), '+'); - //$this->raw(' | '); - //$this->element('a', array('href' => '#', - // 'onclick' => 'return decreasePhotoSize()'), '-'); - //$this->raw(' | '); - - $this->showResizeImagesBox(); - $this->elementEnd('div'); - - foreach ($photos as $photo) { - $this->elementStart('a', array('href' => $photo->getPageLink())); - $this->elementStart('div', array('class' => 'photocontainer')); - $this->element('img', array('src' => $photo->thumb_uri, - 'class' => 'photoingallery')); - $this->element('div', array('class' => 'phototitle'), $photo->title); - $this->elementEnd('div'); - $this->elementEnd('a'); - } - - } - - - function showContent() - { - if (!empty($this->albumid)) - $this->showAlbum($this->albumid); - else - $this->showAlbums(); - } -} diff --git a/plugins/GNUsocialPhotos/actions/photoupload.php b/plugins/GNUsocialPhotos/actions/photoupload.php deleted file mode 100644 index 3fea9f492b..0000000000 --- a/plugins/GNUsocialPhotos/actions/photoupload.php +++ /dev/null @@ -1,259 +0,0 @@ -. - * - * @category Widget - * @package GNU Social - * @author Ian Denhardt - * @author Sean Corbett - * @author Max Shinn - * @copyright 2010 Free Software Foundation, Inc. - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 - */ - -if (!defined('STATUSNET')) { - exit(1); -} - -class PhotouploadAction extends Action -{ - var $user = null; - - function prepare(array $args = array()) - { - parent::prepare($args); - $this->user = common_current_user(); - return true; - } - - function handle() - { - parent::handle(); - if($_SERVER['REQUEST_METHOD'] == 'POST') { - $this->handlePost(); - } - $this->showPage(); - } - - function title() - { - return _m('Upload Photos'); - } - - function showContent() - { - //Upload a photo - if(empty($this->user)) { - $this->element('p', array(), 'You are not logged in.'); - } else { - //showForm() data - if(!empty($this->msg)) { - $class = ($this->success) ? 'success' : 'error'; - $this->element('p', array('class' => $class), $this->msg); - } - - $this->elementStart('form', array('enctype' => 'multipart/form-data', - 'method' => 'post', - 'action' => common_local_url('photoupload'))); - $this->elementStart('ul', 'form_data'); - $this->elementStart('li'); - $this->element('input', array('name' => 'photofile', - 'type' => 'file', - 'id' => 'photofile')); - $this->elementEnd('li'); - //$this->element('br'); - $this->elementStart('li'); - $this->input('phototitle', _("Title"), null, _("The title of the photo. (Optional)")); - $this->elementEnd('li'); - $this->elementStart('li'); - $this->textarea('photo_description', _("Description"), null, _("A description of the photo. (Optional)")); - $this->elementEnd('li'); - $this->elementStart('li'); - $this->dropdown('album', _("Album"), $this->albumList(), _("The album in which to place this photo"), false); - $this->elementEnd('li'); - $this->elementEnd('ul'); - $this->submit('upload', _('Upload')); - $this->elementEnd('form'); - $this->element('br'); - - //Create a new album - $this->element('h3', array(), _("Create a new album")); - $this->elementStart('form', array('method' => 'post', - 'action' =>common_local_url('photoupload'))); - $this->elementStart('ul', 'form_data'); - $this->elementStart('li'); - $this->input('album_name', _("Title"), null, _("The title of the album.")); - $this->elementEnd('li'); - $this->elementStart('li'); - $this->textarea('album_description', _("Description"), null, _("A description of the album. (Optional)")); - $this->elementEnd('li'); - $this->elementEnd('ul'); - $this->submit('create', _('Create')); - $this->elementEnd('form'); - - //Delete an album - $this->element('h3', array(), _("Delete an album")); - $this->elementStart('form', array('method' => 'post', - 'action' =>common_local_url('photoupload'))); - $this->elementStart('ul', 'form_data'); - $this->elementStart('li'); - $this->dropdown('album', _("Album"), $this->albumList(), _("The album in which to place this photo"), false); - $this->elementEnd('li'); - $this->elementEnd('ul'); - $this->submit('deletealbum', _('Delete')); - $this->elementEnd('form'); - - } - } - - function handlePost() - { - - common_log(LOG_INFO, 'handlPost()!'); - // Workaround for PHP returning empty $_POST and $_FILES when POST - // length > post_max_size in php.ini - - if (empty($_FILES) - && empty($_POST) - && ($_SERVER['CONTENT_LENGTH'] > 0) - ) { - $msg = _('The server was unable to handle that much POST ' . - 'data (%s bytes) due to its current configuration.'); - - $this->showForm(sprintf($msg, $_SERVER['CONTENT_LENGTH'])); - return; - } - - // CSRF protection - -/* $token = $this->trimmed('token'); - if (!$token || $token != common_session_token()) { - $this->showForm(_('There was a problem with your session token. '. - 'Try again, please.')); - return; - } */ - - if ($this->arg('upload')) { - $this->uploadPhoto(); - } - if ($this->arg('create')) { - $this->createAlbum(); - } - if ($this->arg('deletealbum')) { - $this->deleteAlbum(); - } - } - - function showForm($msg, $success=false) - { - $this->msg = $msg; - $this->success = $success; - -// $this->showPage(); - } - - function albumList() - { - $cur = common_current_user(); - $album = new GNUsocialPhotoAlbum(); - $album->user_id = $cur->id; - - $albumlist = array(); - if (!$album->find()) { - GNUsocialPhotoAlbum::newAlbum($cur->id, 'Default'); - } - while ($album->fetch()) { - $albumlist[$album->album_id] = $album->album_name; - } - return $albumlist; - } - - function uploadPhoto() - { - $cur = common_current_user(); - if(empty($cur)) { - return; - } - try { - $imagefile = ImageFile::fromUpload('photofile'); - } catch (Exception $e) { - $this->showForm($e->getMessage()); - return; - } - if ($imagefile === null) { - $this->showForm(_('No file uploaded.')); - return; - } - - $title = $this->trimmed('phototitle'); - $photo_description = $this->trimmed('photo_description'); - - common_log(LOG_INFO, 'upload path : ' . $imagefile->filepath); - - $filename = $cur->nickname . '-' . common_timestamp() . sha1_file($imagefile->filepath) . image_type_to_extension($imagefile->type); - move_uploaded_file($imagefile->filepath, INSTALLDIR . '/file/' . $filename); - photo_make_thumbnail($filename); - $uri = 'http://' . common_config('site', 'server') . '/file/' . $filename; - $thumb_uri = 'http://' . common_config('site', 'server') . '/file/thumb.' . $filename; - $profile_id = $cur->id; - - $album = GNUsocialPhotoAlbum::getKV('album_id', $this->trimmed('album')); - if ($album->profile_id != $profile_id) { - $this->showForm(_('Error: This is not your album!')); - return; - } - GNUsocialPhoto::saveNew($profile_id, $album->album_id, $thumb_uri, $uri, 'web', false, $title, $photo_description); - } - - function createAlbum() - { - $cur = common_current_user(); - if(empty($cur)) { - return; - } - - $album_name = $this->trimmed('album_name'); - $album_description = $this->trimmed('album_description'); - - GNUsocialPhotoAlbum::newAlbum($cur->id, $album_name, $album_description); - } - - function deleteAlbum() - { - $cur = common_current_user(); - if(empty($cur)) return; - - $album_id = $this->trimmed('album'); - $album = GNUsocialPhotoAlbum::getKV('album_id', $album_id); - if (empty($album)) { - $this->showForm(_('This album does not exist or has been deleted.')); - return; - } - //Check if the album has any photos in it before deleting - $photos = GNUsocialPhoto::getKV('album_id', $album_id); - if(empty($photos)) { - $album->delete(); - $this->showForm(_('Album deleted'), true); - } - else { - $this->showForm(_('Cannot delete album when there are photos in it!'), false); - } - } -} diff --git a/plugins/GNUsocialPhotos/classes/gnusocialphoto.php b/plugins/GNUsocialPhotos/classes/gnusocialphoto.php deleted file mode 100644 index 5b14e006da..0000000000 --- a/plugins/GNUsocialPhotos/classes/gnusocialphoto.php +++ /dev/null @@ -1,138 +0,0 @@ -. - * - * @category Widget - * @package GNU Social - * @author Ian Denhardt - * @copyright 2010 Free Software Foundation, Inc. - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 - */ - -if (!defined('STATUSNET')) { - exit(1); -} - -require_once INSTALLDIR . '/classes/Memcached_DataObject.php'; - -class GNUsocialPhoto extends Managed_DataObject -{ - public $__table = 'GNUsocialPhoto'; - public $id; // int(11) - public $notice_id; // int(11) - public $album_id; // int(11) - public $uri; // varchar(191) not 255 because utf8mb4 takes more space - public $thumb_uri; // varchar(191) not 255 because utf8mb4 takes more space - public $title; // varchar(191) not 255 because utf8mb4 takes more space - public $photo_description; // text - public $created; // datetime() not_null - public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP - -/* function delete() - { - if(!unlink(INSTALLDIR . $this->thumb_uri)) { - return false; - } - if(!unlink(INSTALLDIR . $this->path)) { - return false; - } - return parent::delete(); - } */ - - public static function schemaDef() - { - return array( - 'fields' => array( - 'id' => array('type' => 'serial', 'not null' => true, 'description' => 'Unique ID for Photo'), - 'notice_id' => array('type' => 'int', 'not null' => true, 'description' => 'Notice ID for the related notice'), - 'album_id' => array('type' => 'int', 'not null' => true, 'description' => 'The parent album ID'), - 'uri' => array('type' => 'varchar', 'not null' => true, 'length' => 191, 'description' => 'unique address for this photo'), - 'thumb_uri' => array('type' => 'varchar', 'not null' => true, 'length' => 191, 'description' => 'unique address for this photo thumbnail'), - 'title' => array('type' => 'varchar', 'not null' => true, 'length' => 191, 'description' => 'The Photo title'), - 'photo_description' => array('type' => 'text', 'not null' => true, 'description' => 'A description for this photo'), - 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'), - 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'), - ), - 'primary key' => array('id'), - 'unique keys' => array( - 'gnusocialphoto_id_key' => array('notice_id'), - 'gnusocialphoto_uri_key' => array('uri'), - ), - 'foreign keys' => array( - 'gnusocialphoto_notice_id_fkey' => array('notice', array('notice_id' => 'id')), - 'gnusocialphoto_album_id_fkey' => array('GNUsocialPhotoAlbum', array('album_id' => 'id')), - ), - 'indexes' => array( - 'gnusocialphoto_title_idx' => array('title'), - ), - ); - } - - static function saveNew($profile_id, $album_id, $thumb_uri, $uri, $source, $insert_now, $title = null, $photo_description = null) - { - $photo = new GNUsocialPhoto(); - $photo->thumb_uri = $thumb_uri; - $photo->uri = $uri; - $photo->album_id = $album_id; - if(!empty($title)) $photo->title = $title; - if(!empty($photo_description)) $photo->photo_description = (string)$photo_description; - - if($insert_now) { - $notice = Notice::saveNew($profile_id, $uri, $source); - $photo->notice_id = $notice->id; - $photo_id = $photo->insert(); - if (!$photo_id) { - common_log_db_error($photo, 'INSERT', __FILE__); - throw new ServerException(_m('Problem Saving Photo.')); - } - } else { - GNUsocialPhotoTemp::$tmp = $photo; - Notice::saveNew($profile_id, $uri, $source); - } - } - - function getPageLink() - { - return '/photo/' . $this->id; - } - - /* - * TODO: -Sanitize input - * @param int page_id The desired page of the gallery to show. - * @param int album_id The id of the album to get photos from. - * @param int gallery_size The number of thumbnails to show per page in the gallery. - * @return array Array of GNUsocialPhotos for this gallery page. - */ - static function getGalleryPage($page_id, $album_id, $gallery_size) - { - $page_offset = ($page_id-1) * $gallery_size; - $sql = 'SELECT * FROM GNUsocialPhoto WHERE album_id = ' . $album_id . - ' ORDER BY notice_id LIMIT ' . $page_offset . ',' . $gallery_size; - $photo = new GNUsocialPhoto(); - $photo->query($sql); - $photos = array(); - - while ($photo->fetch()) { - $photos[] = clone($photo); - } - - return $photos; - } -} diff --git a/plugins/GNUsocialPhotos/classes/gnusocialphotoalbum.php b/plugins/GNUsocialPhotos/classes/gnusocialphotoalbum.php deleted file mode 100644 index acf509a22a..0000000000 --- a/plugins/GNUsocialPhotos/classes/gnusocialphotoalbum.php +++ /dev/null @@ -1,104 +0,0 @@ -. - * - * @category Widget - * @package GNU Social - * @author Ian Denhardt - * @author Sean Corbett - * @copyright 2010 Free Software Foundation, Inc. - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 - */ - -if (!defined('STATUSNET')) { - exit(1); -} - -require_once INSTALLDIR . '/classes/Memcached_DataObject.php'; - -class GNUsocialPhotoAlbum extends Managed_DataObject -{ - public $__table = 'GNUsocialPhotoAlbum'; - public $album_id; // int(11) -- Unique identifier for the album - public $profile_id; // int(11) -- Profile ID for the owner of the album - public $album_name; // varchar(191) -- Title for this album not 255 because utf8mb4 takes more space - public $album_description; // text -- A description of the album - public $created; // datetime() not_null - public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP - - /* TODO: Primary key on both album_id, profile_id / foriegn key on profile_id */ - public static function schemaDef() - { - return array( - 'fields' => array( - 'album_id' => array('type' => 'serial', 'not null' => true, 'description' => 'Unique identifier for the album'), - 'profile_id' => array('type' => 'int', 'not null' => true, 'description' => 'Profile ID for the owner of the album'), - 'album_name' => array('type' => 'varchar', 'not null' => true, 'length' => 191, 'description' => 'Title for this album'), - 'album_description' => array('type' => 'text', 'not null' => true, 'description' => 'A description for this album'), - 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'), - 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'), - ), - 'primary key' => array('user_id'), - 'foreign keys' => array( - 'gnusocialphotoalbum_profile_id_fkey' => array('profile', array('profile_id' => 'id')), - ), - 'indexes' => array( - 'gnusocialphotoalbum_album_name_idx' => array('album_name'), - ), - ); - } - - function getPageLink() - { - $profile = Profile::getKV('id', $this->profile_id); - return '/' . $profile->nickname . '/photos/' . $this->album_id; - } - - function getThumbUri() - { - $photo = GNUsocialPhoto::getKV('album_id', $this->album_id); - if (empty($photo)) - return '/theme/default/default-avatar-profile.png'; //For now... - return $photo->thumb_uri; - } - - static function newAlbum($profile_id, $album_name, $album_description) - { - //TODO: Should use foreign key instead... - if (!Profile::getKV('id', $profile_id)){ - //Is this a bit extreme? - throw new ServerException(_m('No such user exists with id ' . $profile_id . ', couldn\'t create album.')); - } - - $album = new GNUsocialPhotoAlbum(); - $album->profile_id = $profile_id; - $album->album_name = $album_name; - $album->album_description = $album_description; - - $album->album_id = $album->insert(); - if (!$album->album_id){ - common_log_db_error($album, 'INSERT', __FILE__); - throw new ServerException(_m('Error creating new album.')); - } - common_log(LOG_INFO, 'album_id : ' . $album->album_id); - return $album; - } - -} diff --git a/plugins/GNUsocialPhotos/lib/gnusocialphotonav.php b/plugins/GNUsocialPhotos/lib/gnusocialphotonav.php deleted file mode 100644 index 180f0ad20f..0000000000 --- a/plugins/GNUsocialPhotos/lib/gnusocialphotonav.php +++ /dev/null @@ -1,63 +0,0 @@ -. - * - * @package GNU Social - * @author Ian Denhardt - * @author Max Shinn - * @copyright 2010 Free Software Foundation, Inc. - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 - */ - -if(!defined('STATUSNET')) { - exit(1); -} - -class GNUsocialPhotoNav extends Widget { - var $action = null; - - function __construct($action = null, $nickname = null) - { - parent::__construct($action); - $this->action = $action; - $this->nickname = $nickname; - } - - function show() - { - if (empty($this->nickname)) - $this->nickname = $this->action->trimmed('nickname'); - - $this->out->elementStart('ul', array('class' => 'nav')); - - $this->out->menuItem(common_local_url('showstream', array('nickname' => $this->nickname)), _('Profile')); - - $this->out->menuItem(common_local_url('photos', array('nickname' => $this->nickname)), - _('Photos')); - - $user = common_current_user(); - if (!empty($user)) { - $this->out->menuItem(common_local_url('photoupload', array()), - _('Upload Photos')); - } - - $this->out->elementEnd('ul'); - } -} diff --git a/plugins/GNUsocialPhotos/lib/gnusocialphototemp.php b/plugins/GNUsocialPhotos/lib/gnusocialphototemp.php deleted file mode 100644 index 119c301083..0000000000 --- a/plugins/GNUsocialPhotos/lib/gnusocialphototemp.php +++ /dev/null @@ -1,37 +0,0 @@ -. - * - * @package GNU Social - * @author Ian Denhardt - * @copyright 2010 Free Software Foundation, Inc. - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 - */ - -if (!defined('STATUSNET')) { - exit(1); -} - -// XXX: This entire file is an ugly hack and needs to be replaced. It is essentially a global variable -// used to store information about a photo we want to insert in onStartNoticeDistribute(), which we -// can't actually pass to that function. -class GNUsocialPhotoTemp { - public static $tmp = null; -} diff --git a/plugins/GNUsocialPhotos/lib/photolib.php b/plugins/GNUsocialPhotos/lib/photolib.php deleted file mode 100644 index 9e5ff61fab..0000000000 --- a/plugins/GNUsocialPhotos/lib/photolib.php +++ /dev/null @@ -1,87 +0,0 @@ -. - * - * @category Widget - * @package GNU Social - * @author Ian Denhardt - * @copyright 2010 Free Software Foundation, Inc. - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 - */ - - -function photo_make_thumbnail($filename) -{ - $height_dest = 192; - $width_dest = 256; - - $size_src = getimagesize(INSTALLDIR . '/file/' . $filename); - $image_type = $size_src[2]; - - switch($image_type) { - case IMAGETYPE_JPEG: - $image_src = imagecreatefromjpeg(INSTALLDIR . '/file/' . $filename); - break; - case IMAGETYPE_PNG: - $image_src = imagecreatefrompng(INSTALLDIR . '/file/' . $filename); - break; - case IMAGETYPE_GIF: - $image_src = imagecreatefromgif(INSTALLDIR . '/file/' . $filename); - break; - default: - return false; - } - - $width_src = $size_src[0]; - $height_src = $size_src[1]; - - $ratio_src = (float) $width_src / (float) $height_src; - $ratio_dest = (float) $width_dest / (float) $height_dest; - - if ($ratio_src > $ratio_dest) { - $height_crop = $height_src; - $width_crop = (int)($height_crop * $ratio_dest); - $x_crop = ($width_src - $width_crop) / 2; - } else { - $width_crop = $width_src; - $height_crop = (int)($width_crop / $ratio_dest); - $x_crop = 0; - } - - $image_dest = imagecreatetruecolor($width_dest, $height_dest); - - imagecopyresampled($image_dest, $image_src, 0, 0, $x_crop, 0, $width_dest, $height_dest, $width_crop, $height_crop); - switch ($image_type) { - case IMAGETYPE_JPEG: - imagejpeg($image_dest, INSTALLDIR . '/file/' . 'thumb.' . $filename, 100); - break; - case IMAGETYPE_PNG: - imagepng($image_dest, INSTALLDIR . '/file/thumb.' . $filename); - break; - case IMAGETYPE_GIF: - imagegif($image_dest, INSTALLDIR . '/file/thumb.' . $filename); - break; - } - - imagedestroy($image_src); - imagedestroy($image_dest); - - return true; -} diff --git a/plugins/GNUsocialPhotos/locale/GNUsocialPhotos.pot b/plugins/GNUsocialPhotos/locale/GNUsocialPhotos.pot deleted file mode 100644 index 8eaf30fab1..0000000000 --- a/plugins/GNUsocialPhotos/locale/GNUsocialPhotos.pot +++ /dev/null @@ -1,64 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-14 14:51+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: 8bit\n" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "" - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/af/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/af/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 2650e9fdbb..0000000000 --- a/plugins/GNUsocialPhotos/locale/af/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Afrikaans (http://www.transifex.com/gnu-social/gnu-social/language/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "Onbekende gebruiker." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/ar/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/ar/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 219bec084a..0000000000 --- a/plugins/GNUsocialPhotos/locale/ar/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Arabic (http://www.transifex.com/gnu-social/gnu-social/language/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "لا يوجد مستخدم بهذا الاسم." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/arz/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/arz/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 0789faca0e..0000000000 --- a/plugins/GNUsocialPhotos/locale/arz/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Arabic (Egypt) (http://www.transifex.com/gnu-social/gnu-social/language/ar_EG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_EG\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "لا مستخدم كهذا." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/ast/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/ast/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 6ed57b3333..0000000000 --- a/plugins/GNUsocialPhotos/locale/ast/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Asturian (http://www.transifex.com/gnu-social/gnu-social/language/ast/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ast\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "" - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/be-tarask/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/be-tarask/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index c86c404ab6..0000000000 --- a/plugins/GNUsocialPhotos/locale/be-tarask/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Belarusian (Tarask) (http://www.transifex.com/gnu-social/gnu-social/language/be@tarask/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be@tarask\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" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "Няма такога карыстальніка." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/bg/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/bg/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 413cb1a4dd..0000000000 --- a/plugins/GNUsocialPhotos/locale/bg/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Bulgarian (http://www.transifex.com/gnu-social/gnu-social/language/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "Няма такъв потребител" - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/bn_IN/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/bn_IN/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index aba9ce8e9f..0000000000 --- a/plugins/GNUsocialPhotos/locale/bn_IN/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Bengali (India) (http://www.transifex.com/gnu-social/gnu-social/language/bn_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bn_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "" - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/br/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/br/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index a8c4b994d9..0000000000 --- a/plugins/GNUsocialPhotos/locale/br/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Breton (http://www.transifex.com/gnu-social/gnu-social/language/br/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: br\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "N'eus ket eus an implijer-se." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/ca/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/ca/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index b338ca87c3..0000000000 --- a/plugins/GNUsocialPhotos/locale/ca/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Catalan (http://www.transifex.com/gnu-social/gnu-social/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" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "No existeix l'usuari." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/cs/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/cs/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 2ada423977..0000000000 --- a/plugins/GNUsocialPhotos/locale/cs/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Czech (http://www.transifex.com/gnu-social/gnu-social/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" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "Uživatel neexistuje." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/da/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/da/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index df61f14749..0000000000 --- a/plugins/GNUsocialPhotos/locale/da/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Danish (http://www.transifex.com/gnu-social/gnu-social/language/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "Ingen bruger fundet." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/de/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/de/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index ccf4b52925..0000000000 --- a/plugins/GNUsocialPhotos/locale/de/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,65 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -# D P, 2015 -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-18 23:33+0000\n" -"Last-Translator: D P\n" -"Language-Team: German (http://www.transifex.com/gnu-social/gnu-social/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" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "Fotos hochladen" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "Kein solcher Benutzer." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "Fotos von %s" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "Foto bearbeiten -" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "Foto bearbeiten" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "Fehler beim Erstellen eines neuen Albums" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "Problem beim Speichern des Fotos." diff --git a/plugins/GNUsocialPhotos/locale/el/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/el/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index d1b7cadc72..0000000000 --- a/plugins/GNUsocialPhotos/locale/el/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Greek (http://www.transifex.com/gnu-social/gnu-social/language/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "Κανένας τέτοιος χρήστης." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/en_GB/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/en_GB/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index bbc1d46a2e..0000000000 --- a/plugins/GNUsocialPhotos/locale/en_GB/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,65 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -# Luke Hollins , 2015 -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-03-07 19:41+0000\n" -"Last-Translator: Luke Hollins \n" -"Language-Team: English (United Kingdom) (http://www.transifex.com/gnu-social/gnu-social/language/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "Upload Photos" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "No such user." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "No such photo." - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "%s's Photo." - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "%s's Photos." - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "Edit photo - " - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "Edit photo" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "No such user exists with id " - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "Error creating new album." - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "Problem Saving Photo." - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "Problem saving photo." diff --git a/plugins/GNUsocialPhotos/locale/eo/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/eo/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index a64b1a2956..0000000000 --- a/plugins/GNUsocialPhotos/locale/eo/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Esperanto (http://www.transifex.com/gnu-social/gnu-social/language/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "Ne ekzistas tiu uzanto." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/es/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/es/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 6c0d7f672d..0000000000 --- a/plugins/GNUsocialPhotos/locale/es/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,66 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -# Ismael Moral , 2015 -# Juan Riquelme González , 2015 -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-27 12:21+0000\n" -"Last-Translator: Juan Riquelme González \n" -"Language-Team: Spanish (http://www.transifex.com/gnu-social/gnu-social/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" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "Subir fotos" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "No existe ese usuario." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "Foto no encontrada. " - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "Foto de %s. " - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "Fotos de %s. " - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "Editar foto -" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "Editar foto" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "No existe un usuario con ese identificador" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "Ocurrió un error cuando se intentaba crear el álbum. " - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "Hubo un problema guardando la foto. " - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "Hubo un problema guardando la foto. " diff --git a/plugins/GNUsocialPhotos/locale/eu/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/eu/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 2a30ab2e3a..0000000000 --- a/plugins/GNUsocialPhotos/locale/eu/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Basque (http://www.transifex.com/gnu-social/gnu-social/language/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "Ez dago erabiltzaile hori." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/fa/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/fa/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 8570603f83..0000000000 --- a/plugins/GNUsocialPhotos/locale/fa/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Persian (http://www.transifex.com/gnu-social/gnu-social/language/fa/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "چنین کاربری وجود ندارد." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/fi/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/fi/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 08470fe9e8..0000000000 --- a/plugins/GNUsocialPhotos/locale/fi/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Finnish (http://www.transifex.com/gnu-social/gnu-social/language/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "Käyttäjää ei ole." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/fr/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/fr/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index cc2938ad31..0000000000 --- a/plugins/GNUsocialPhotos/locale/fr/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,65 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -# Vinilox , 2015 -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-05-09 18:23+0000\n" -"Last-Translator: Vinilox \n" -"Language-Team: French (http://www.transifex.com/gnu-social/gnu-social/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" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "Téléverser des photos" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "Utilisateur inexistant." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/fur/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/fur/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index cb06866351..0000000000 --- a/plugins/GNUsocialPhotos/locale/fur/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Friulian (http://www.transifex.com/gnu-social/gnu-social/language/fur/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fur\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "Utent no cjatât." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/gl/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/gl/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 065e922abf..0000000000 --- a/plugins/GNUsocialPhotos/locale/gl/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Galician (http://www.transifex.com/gnu-social/gnu-social/language/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "Non existe tal usuario." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/he/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/he/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 2112c9144d..0000000000 --- a/plugins/GNUsocialPhotos/locale/he/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Hebrew (http://www.transifex.com/gnu-social/gnu-social/language/he/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "אין משתמש כזה." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/hsb/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/hsb/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 4549ea4b2e..0000000000 --- a/plugins/GNUsocialPhotos/locale/hsb/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Upper Sorbian (http://www.transifex.com/gnu-social/gnu-social/language/hsb/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hsb\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "Wužiwar njeeksistuje" - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/hu/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/hu/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index e58ef822d7..0000000000 --- a/plugins/GNUsocialPhotos/locale/hu/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Hungarian (http://www.transifex.com/gnu-social/gnu-social/language/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "Nincs ilyen felhasználó." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/hy_AM/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/hy_AM/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 3c921bb163..0000000000 --- a/plugins/GNUsocialPhotos/locale/hy_AM/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Armenian (Armenia) (http://www.transifex.com/gnu-social/gnu-social/language/hy_AM/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy_AM\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "" - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/ia/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/ia/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 6852185a2f..0000000000 --- a/plugins/GNUsocialPhotos/locale/ia/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Interlingua (http://www.transifex.com/gnu-social/gnu-social/language/ia/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ia\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "Iste usator non existe." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/id/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/id/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index f139a132e3..0000000000 --- a/plugins/GNUsocialPhotos/locale/id/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,65 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -# zk , 2015 -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-06-04 15:21+0000\n" -"Last-Translator: zk \n" -"Language-Team: Indonesian (http://www.transifex.com/gnu-social/gnu-social/language/id/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "Unggah Foto" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "Pengguna tersebut tidak ada." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/io/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/io/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 5f1664d935..0000000000 --- a/plugins/GNUsocialPhotos/locale/io/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,65 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -# Ciencisto Dementa , 2015 -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-06-15 03:15+0000\n" -"Last-Translator: Ciencisto Dementa \n" -"Language-Team: Ido (http://www.transifex.com/gnu-social/gnu-social/language/io/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: io\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "Kargar fotografuri" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "Nula tala uzanto." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "Nula tala fotografuro." - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "La fotografuro di %s." - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "La fotografuri di %s." - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "Modifikar la fotografuro -" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "Modifikar la fotografuro" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "Nula tala uzanto existas kun l'identifikilo" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "Eroro dum la kreo dil nova albumo." - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "Problemo dum la konservo dil fotografuro." - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "Problem dum la konservo dil fotografuro." diff --git a/plugins/GNUsocialPhotos/locale/is/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/is/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 1cf4ff9204..0000000000 --- a/plugins/GNUsocialPhotos/locale/is/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Icelandic (http://www.transifex.com/gnu-social/gnu-social/language/is/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: is\n" -"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "Enginn svoleiðis notandi." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/it/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/it/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 7874790f39..0000000000 --- a/plugins/GNUsocialPhotos/locale/it/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,65 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -# Giuseppe Pignataro , 2015 -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-05-30 01:10+0000\n" -"Last-Translator: Giuseppe Pignataro \n" -"Language-Team: Italian (http://www.transifex.com/gnu-social/gnu-social/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" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "Carica foto" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "Utente inesistente." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "Nessuna foto." - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "Modifica foto -" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "Modifica foto" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/ja/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/ja/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index fd83e05f25..0000000000 --- a/plugins/GNUsocialPhotos/locale/ja/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Japanese (http://www.transifex.com/gnu-social/gnu-social/language/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "そのようなユーザーはいません。" - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/ka/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/ka/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 4e6c458e5c..0000000000 --- a/plugins/GNUsocialPhotos/locale/ka/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Georgian (http://www.transifex.com/gnu-social/gnu-social/language/ka/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ka\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "ასეთი მომხმარებელი არ არსებობს." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/ko/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/ko/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 092d2ae6e9..0000000000 --- a/plugins/GNUsocialPhotos/locale/ko/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Korean (http://www.transifex.com/gnu-social/gnu-social/language/ko/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "그런 사용자가 없습니다." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/ksh/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/ksh/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 9f4b9ed23b..0000000000 --- a/plugins/GNUsocialPhotos/locale/ksh/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Colognian (http://www.transifex.com/gnu-social/gnu-social/language/ksh/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ksh\n" -"Plural-Forms: nplurals=3; plural=(n==0) ? 0 : (n==1) ? 1 : 2;\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "" - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/lb/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/lb/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 7a9a00f811..0000000000 --- a/plugins/GNUsocialPhotos/locale/lb/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Luxembourgish (http://www.transifex.com/gnu-social/gnu-social/language/lb/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lb\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "Esou e Benotzer gëtt et net." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/lt/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/lt/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index e86ed308ea..0000000000 --- a/plugins/GNUsocialPhotos/locale/lt/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Lithuanian (http://www.transifex.com/gnu-social/gnu-social/language/lt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "" - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/lv/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/lv/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 299b27e22c..0000000000 --- a/plugins/GNUsocialPhotos/locale/lv/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-07 09:39+0000\n" -"Last-Translator: digitaldreamer \n" -"Language-Team: Latvian (http://www.transifex.com/gnu-social/gnu-social/language/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "" - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/mg/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/mg/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index a2134e51bc..0000000000 --- a/plugins/GNUsocialPhotos/locale/mg/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Malagasy (http://www.transifex.com/gnu-social/gnu-social/language/mg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mg\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "" - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/mk/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/mk/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index a6b495dd6b..0000000000 --- a/plugins/GNUsocialPhotos/locale/mk/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Macedonian (http://www.transifex.com/gnu-social/gnu-social/language/mk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "Нема таков корисник." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/ml/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/ml/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 5b06e57b32..0000000000 --- a/plugins/GNUsocialPhotos/locale/ml/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Malayalam (http://www.transifex.com/gnu-social/gnu-social/language/ml/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ml\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "അങ്ങനെ ഒരു ഉപയോക്താവില്ല." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/ms/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/ms/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 338bb5c65e..0000000000 --- a/plugins/GNUsocialPhotos/locale/ms/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Malay (http://www.transifex.com/gnu-social/gnu-social/language/ms/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ms\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "" - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/my/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/my/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 24c8d7d97a..0000000000 --- a/plugins/GNUsocialPhotos/locale/my/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Burmese (http://www.transifex.com/gnu-social/gnu-social/language/my/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: my\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "" - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/nb/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/nb/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index dc92f5249d..0000000000 --- a/plugins/GNUsocialPhotos/locale/nb/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Norwegian Bokmål (http://www.transifex.com/gnu-social/gnu-social/language/nb/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "Ingen slik bruker." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/ne/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/ne/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 8d70ac61f6..0000000000 --- a/plugins/GNUsocialPhotos/locale/ne/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-07 09:30+0000\n" -"Last-Translator: digitaldreamer \n" -"Language-Team: Nepali (http://www.transifex.com/gnu-social/gnu-social/language/ne/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ne\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "" - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/nl/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/nl/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index fb798ec234..0000000000 --- a/plugins/GNUsocialPhotos/locale/nl/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Dutch (http://www.transifex.com/gnu-social/gnu-social/language/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "Deze gebruiker bestaat niet." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/nn/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/nn/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index f11260afe9..0000000000 --- a/plugins/GNUsocialPhotos/locale/nn/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Norwegian Nynorsk (http://www.transifex.com/gnu-social/gnu-social/language/nn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nn\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "Brukaren finst ikkje." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/pl/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/pl/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 68f47a526f..0000000000 --- a/plugins/GNUsocialPhotos/locale/pl/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,65 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -# Mateusz Zimniak , 2015 -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-08-02 15:21+0000\n" -"Last-Translator: Mateusz Zimniak \n" -"Language-Team: Polish (http://www.transifex.com/gnu-social/gnu-social/language/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "Załaduj zdjęcia" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "Brak takiego użytkownika." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "Brak takiego zdjęcia." - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "Edytuj zdjęcie -" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "Edytuj zdjęcie" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "Brak użytkownika o identyfikatorze" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "Błąd przy tworzeniu nowego albumu." - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "Problem z zapisem zdjęcia." - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "Problem z zapisem zdjęcia." diff --git a/plugins/GNUsocialPhotos/locale/pt/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/pt/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 923e318a27..0000000000 --- a/plugins/GNUsocialPhotos/locale/pt/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (http://www.transifex.com/gnu-social/gnu-social/language/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "Utilizador não foi encontrado." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/pt_BR/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/pt_BR/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index f244f5d276..0000000000 --- a/plugins/GNUsocialPhotos/locale/pt_BR/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/gnu-social/gnu-social/language/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "Este usuário não existe." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/ro_RO/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/ro_RO/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 0d335e3382..0000000000 --- a/plugins/GNUsocialPhotos/locale/ro_RO/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/gnu-social/gnu-social/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" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "" - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/ru/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/ru/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 53fa5d567a..0000000000 --- a/plugins/GNUsocialPhotos/locale/ru/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Russian (http://www.transifex.com/gnu-social/gnu-social/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" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "Нет такого пользователя." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/sl/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/sl/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 882bcdeea9..0000000000 --- a/plugins/GNUsocialPhotos/locale/sl/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Slovenian (http://www.transifex.com/gnu-social/gnu-social/language/sl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "" - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/sr-ec/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/sr-ec/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 32e4864489..0000000000 --- a/plugins/GNUsocialPhotos/locale/sr-ec/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Serbian (http://www.transifex.com/gnu-social/gnu-social/language/sr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "Нема таквог корисника." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/sv/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/sv/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 9a38712ea1..0000000000 --- a/plugins/GNUsocialPhotos/locale/sv/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,65 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -# Kristoffer Grundström , 2015 -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-09-16 02:18+0000\n" -"Last-Translator: Kristoffer Grundström \n" -"Language-Team: Swedish (http://www.transifex.com/gnu-social/gnu-social/language/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "Ladda upp foton" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "Ingen sådan användare." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "Inget sådant foto." - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "%s's Foto." - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "%s's Foton." - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "Redigera foto -" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "Redigera foto" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "Ingen sådan användare existera med id" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/ta/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/ta/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index dc0b7cdea8..0000000000 --- a/plugins/GNUsocialPhotos/locale/ta/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-07 09:12+0000\n" -"Last-Translator: digitaldreamer \n" -"Language-Team: Tamil (http://www.transifex.com/gnu-social/gnu-social/language/ta/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ta\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "அப்படியொரு பயனர் இல்லை." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/te/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/te/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index c831bf735a..0000000000 --- a/plugins/GNUsocialPhotos/locale/te/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Telugu (http://www.transifex.com/gnu-social/gnu-social/language/te/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: te\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "అటువంటి వాడుకరి లేరు." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/tl/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/tl/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 435bff0cd1..0000000000 --- a/plugins/GNUsocialPhotos/locale/tl/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Tagalog (http://www.transifex.com/gnu-social/gnu-social/language/tl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tl\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "Walang ganyang tagagamit." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/tr/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/tr/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 70a70cf09a..0000000000 --- a/plugins/GNUsocialPhotos/locale/tr/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,65 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -# Uğur KUYU , 2015 -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-03-02 11:31+0000\n" -"Last-Translator: Uğur KUYU \n" -"Language-Team: Turkish (http://www.transifex.com/gnu-social/gnu-social/language/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "Fotoğrafları yükle" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "Böyle bir kullanıcı yok." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "Bu tür bir fotoğraf yok." - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "%s kullanıcısının fotoğrafı." - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "%s kullanıcısının fotğrafları." - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "Fotoğrafı düzenle -" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "Fotoğrafı düzenle " - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "Böyle bir kullanıcı kimliğine sahip kimse yok." - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "Yeni albüm oluşturma hatası." - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "Fotoğraf Kaydetme Sorunu" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "Fotoğraf kaydetme sorunu" diff --git a/plugins/GNUsocialPhotos/locale/uk/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/uk/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 80fd39531c..0000000000 --- a/plugins/GNUsocialPhotos/locale/uk/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,65 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -# Петро Романчук , 2015 -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-03-31 12:01+0000\n" -"Last-Translator: Петро Романчук \n" -"Language-Team: Ukrainian (http://www.transifex.com/gnu-social/gnu-social/language/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "Завантажити фотографії" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "Такого користувача немає." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "Немає такого фото." - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "Фото %s" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "Фотографії %s." - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "Редагувати фото -" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "Редагувати фото" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "Немає користувача з таким ідентифікатором" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "Помилка створення нового альбому." - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/ur_PK/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/ur_PK/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 8e39d35b03..0000000000 --- a/plugins/GNUsocialPhotos/locale/ur_PK/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Urdu (Pakistan) (http://www.transifex.com/gnu-social/gnu-social/language/ur_PK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ur_PK\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "ایسا کوئی صارف نہیں۔" - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/vi/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/vi/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 495bc5caa4..0000000000 --- a/plugins/GNUsocialPhotos/locale/vi/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Vietnamese (http://www.transifex.com/gnu-social/gnu-social/language/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "Không có user nào." - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/zh/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/zh/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index e5dff52818..0000000000 --- a/plugins/GNUsocialPhotos/locale/zh/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Chinese (http://www.transifex.com/gnu-social/gnu-social/language/zh/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "" - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/zh_CN/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/zh_CN/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index 0776ea9d8c..0000000000 --- a/plugins/GNUsocialPhotos/locale/zh_CN/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Chinese (China) (http://www.transifex.com/gnu-social/gnu-social/language/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "没有这个用户。" - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialPhotos/locale/zh_TW/LC_MESSAGES/GNUsocialPhotos.po b/plugins/GNUsocialPhotos/locale/zh_TW/LC_MESSAGES/GNUsocialPhotos.po deleted file mode 100644 index facdbdd27b..0000000000 --- a/plugins/GNUsocialPhotos/locale/zh_TW/LC_MESSAGES/GNUsocialPhotos.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:24+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Chinese (Taiwan) (http://www.transifex.com/gnu-social/gnu-social/language/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: actions/photoupload.php:57 -msgid "Upload Photos" -msgstr "" - -#: actions/photo.php:56 actions/photos.php:65 -msgid "No such user." -msgstr "無此使用者" - -#: actions/photo.php:58 -msgid "No such photo." -msgstr "" - -#: actions/photo.php:62 -#, php-format -msgid "%s's Photo." -msgstr "" - -#: actions/photos.php:67 -#, php-format -msgid "%s's Photos." -msgstr "" - -#: actions/editphoto.php:61 -msgid "Edit photo - " -msgstr "" - -#: actions/editphoto.php:63 -msgid "Edit photo" -msgstr "" - -#: classes/gnusocialphotoalbum.php:87 -msgid "No such user exists with id " -msgstr "" - -#: classes/gnusocialphotoalbum.php:98 -msgid "Error creating new album." -msgstr "" - -#: classes/gnusocialphoto.php:103 -msgid "Problem Saving Photo." -msgstr "" - -#: GNUsocialPhotosPlugin.php:65 -msgid "Problem saving photo." -msgstr "" diff --git a/plugins/GNUsocialVideo/GNUsocialVideoPlugin.php b/plugins/GNUsocialVideo/GNUsocialVideoPlugin.php deleted file mode 100644 index 91a7c980aa..0000000000 --- a/plugins/GNUsocialVideo/GNUsocialVideoPlugin.php +++ /dev/null @@ -1,132 +0,0 @@ -. - * - * @category Widget - * @package GNU Social - * @author Ian Denhardt - * @copyright 2011 Free Software Foundation, Inc. - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 - */ - -if (!defined('STATUSNET')) { - exit(1); -} - -class GNUsocialVideoPlugin extends MicroAppPlugin -{ - - var $oldSaveNew = true; - - function onCheckSchema() - { - $schema = Schema::get(); - - $schema->ensureTable('video', Video::schemaDef()); - - return true; - } - - function onRouterInitialized($m) - { - $m->connect('main/postvideo', ['action' => 'postvideo']); - $m->connect('showvideo/:id', ['action' => 'showvideo']); - return true; - } - - function entryForm($out) - { - return new VideoForm($out); - } - - function appTitle() - { - return _('Video'); - } - - function tag() - { - return 'GNUsocialVideo'; - } - - function types() - { - return array(Video::OBJECT_TYPE); - } - - function saveNoticeFromActivity(Activity $activity, Profile $actor, array $options=array()) - { - if(count($activity->objects) != 1) { - throw new Exception('Too many activity objects.'); - } - - $videoObj = $activity->objects[0]; - - if ($videoObj->type != Video::OBJECT_TYPE) { - throw new Exception('Wrong type for object.'); - } - - // For now we read straight from the xml tree, no other way to get this information. - // When there's a better API for this, we should change to it. - $uri = ActivityUtils::getLink($activity->entry, 'enclosure'); - - $options['object_type'] = Video::OBJECT_TYPE; - - Video::saveNew($actor, $uri, $options); - - } - - function activityObjectFromNotice(Notice $notice) - { - $object = new ActivityObject(); - $object->id = $notice->uri; - $object->type = Video::OBJECT_TYPE; - $object->title = $notice->content; - $object->summary = $notice->content; - $object->link = $notice->getUrl(); - - $vid = Video::getByNotice($notice); - - if ($vid) { - $object->extra[] = array('link', array('rel' => 'enclosure', 'href' => $vid->url), array()); - } - - return $object; - - } - - function showNotice(Notice $notice, HTMLOutputter $out) - { - $vid = Video::getByNotice($notice); - if ($vid) { - $out->element('video', array('src' => $vid->url, - 'width' => '100%', - 'controls' => 'controls')); - } - } - - function deleteRelated(Notice $notice) - { - $vid = Video::getByNotice($notice); - if ($vid) { - $vid->delete(); - } - } -} diff --git a/plugins/GNUsocialVideo/README b/plugins/GNUsocialVideo/README deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/plugins/GNUsocialVideo/actions/postvideo.php b/plugins/GNUsocialVideo/actions/postvideo.php deleted file mode 100644 index 1be201d00f..0000000000 --- a/plugins/GNUsocialVideo/actions/postvideo.php +++ /dev/null @@ -1,90 +0,0 @@ -. - * - * @category Widget - * @package GNU Social - * @author Ian Denhardt - * @copyright 2011 Free Software Foundation, Inc. - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 - */ - -if (!defined('STATUSNET')) { - exit(1); -} - -class PostvideoAction extends Action { - var $user = null; - var $url = null; - - function prepare(array $args = array()) - { - parent::prepare($args); - $this->user = common_current_user(); - - if(empty($this->user)){ - throw new ClientException(_('Must be logged in to post a video'), - 403); - } - - if($this->isPost()){ - $this->checkSessionToken(); - } - - $this->url = filter_var($this->trimmed('url'), FILTER_SANITIZE_URL); - $this->url = filter_var($this->url, FILTER_VALIDATE_URL); - - return true; - } - - function handle() - { - parent::handle(); - - if ($this->isPost()) { - $this->handlePost($args); - } else { - $this->showPage(); - } - } - - function handlePost($args) - { - if (empty($this->url)) { - throw new ClientException(_('Bad URL.')); - } - - $profile = $this->user->getProfile(); - - $options = array(); - - ToSelector::fillOptions($this, $options); - - $vid = Video::saveNew($profile, $this->url, $options); - - common_redirect($vid->uri, 303); - } - - function showContent() - { - $form = new VideoForm(); - $form->show(); - } -} diff --git a/plugins/GNUsocialVideo/actions/showvideo.php b/plugins/GNUsocialVideo/actions/showvideo.php deleted file mode 100644 index 06c80b8abf..0000000000 --- a/plugins/GNUsocialVideo/actions/showvideo.php +++ /dev/null @@ -1,67 +0,0 @@ -. - * - * @package GNU Social - * @author Ian Denhardt - * @copyright 2011 Free Software Foundation, Inc. - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 - */ - -if(!defined('STATUSNET')){ - exit(1); -} - -class ShowvideoAction extends ShownoticeAction -{ - protected $id = null; - protected $vid = null; - - function prepare(array $args = array()) - { - OwnerDesignAction::prepare($args); - $this->id = $this->trimmed('id'); - $this->vid = Video::getKV('id', $this->id); - - if (empty($this->vid)) { - throw new ClientException(_('No such video.'), 404); - } - - $this->notice = $this->vid->getNotice(); - - if (empty($this->notice)) { - throw new ClientException(_('No such video'), 404); - } - - $this->user = User::getKV('id', $this->vid->profile_id); - - if (empty($this->user)) { - throw new ClientException(_('No such user.'), 404); - } - - $this->profile = $this->user->getProfile(); - - if (empty($this->profile)) { - throw new ServerException(_('User without a profile.')); - } - - return true; - } -} diff --git a/plugins/GNUsocialVideo/classes/Video.php b/plugins/GNUsocialVideo/classes/Video.php deleted file mode 100644 index 09c1f6b844..0000000000 --- a/plugins/GNUsocialVideo/classes/Video.php +++ /dev/null @@ -1,107 +0,0 @@ -. - * - * @package GNU Social - * @author Ian Denhardt - * @copyright 2011 Free Software Foundation, Inc. - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 - */ - -if(!defined('STATUSNET')){ - exit(1); -} - -/** - * Data class for videos. - */ - -class Video extends Managed_DataObject -{ - const OBJECT_TYPE = 'http://activitystrea.ms/schema/1.0/video'; - - public $__table = 'video'; // table name - public $id; // char (36) // UUID - public $uri; // varchar (191) This is the corresponding notice's uri. not 255 because utf8mb4 takes more space - public $url; // varchar (191) not 255 because utf8mb4 takes more space - public $profile_id; // int - - public static function getByNotice($notice) - { - return self::getKV('uri', $notice->uri); - } - - public function getNotice() - { - return Notice::getKV('uri', $this->uri); - } - - public static function schemaDef() - { - return array( - 'description' => 'A video clip', - 'fields' => array( - 'id' => array('type' => 'char', - 'length' => 36, - 'not null' => true, - 'description' => 'UUID'), - 'uri' => array('type' => 'varchar', - 'length' => 191, - 'not null' => true), - 'url' => array('type' => 'varchar', - 'length' => 191, - 'not null' => true), - 'profile_id' => array('type' => 'int', 'not null' => true), - ), - 'primary key' => array('id'), - 'foreign keys' => array('video_profile_id__key' => array('profile' => array('profile_id' => 'id'))), - ); - } - - static function saveNew(Profile $profile, $url, $options=array()) - { - $vid = new Video(); - - $vid->id = UUID::gen(); - $vid->profile_id = $profile->id; - $vid->url = $url; - - - $options['object_type'] = Video::OBJECT_TYPE; - - if (!array_key_exists('uri', $options)) { - $options['uri'] = common_local_url('showvideo', array('id' => $vid->id)); - } - - if (!array_key_exists('rendered', $options)) { - $options['rendered'] = sprintf("", $url); - } - - $vid->uri = $options['uri']; - - $vid->insert(); - - return Notice::saveNew($profile->id, - '', - 'web', - $options); - - } -} diff --git a/plugins/GNUsocialVideo/forms/video.php b/plugins/GNUsocialVideo/forms/video.php deleted file mode 100644 index 12f4563720..0000000000 --- a/plugins/GNUsocialVideo/forms/video.php +++ /dev/null @@ -1,72 +0,0 @@ -. - * - * @package GNU Social - * @author Ian Denhardt - * @copyright 2011 Free Software Foundation, Inc. - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 - */ - -if(!defined('STATUSNET')){ - exit(1); -} - -class VideoForm extends Form -{ - function id() - { - return "form_new_video"; - } - - function action() - { - return common_local_url('postvideo'); - } - - function formClass() - { - return 'form_settings ajax-notice'; - } - - function formData() - { - $this->out->elementStart('fieldset', array('id' => 'new_video_data')); - $this->out->elementStart('ul', 'form_data'); - - $this->li(); - $this->out->input('url', _('URL'), null, _('URL of the video')); - $this->unli(); - - $this->out->elementEnd('ul'); - - $toWidget = new ToSelector($this->out, - common_current_user(), - null); - $toWidget->show(); - - $this->out->elementEnd('fieldset'); - } - - function formActions() - { - $this->out->submit('submit', _m('BUTTON', 'Save')); - } -} diff --git a/plugins/GNUsocialVideo/locale/GNUsocialVideo.pot b/plugins/GNUsocialVideo/locale/GNUsocialVideo.pot deleted file mode 100644 index aab08d83c9..0000000000 --- a/plugins/GNUsocialVideo/locale/GNUsocialVideo.pot +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-14 14:51+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: 8bit\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "" diff --git a/plugins/GNUsocialVideo/locale/af/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/af/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 40ca01428b..0000000000 --- a/plugins/GNUsocialVideo/locale/af/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Afrikaans (http://www.transifex.com/gnu-social/gnu-social/language/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Stoor" diff --git a/plugins/GNUsocialVideo/locale/ar/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/ar/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index e91ca85935..0000000000 --- a/plugins/GNUsocialVideo/locale/ar/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Arabic (http://www.transifex.com/gnu-social/gnu-social/language/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "احفظ" diff --git a/plugins/GNUsocialVideo/locale/arz/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/arz/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 64f3c77d05..0000000000 --- a/plugins/GNUsocialVideo/locale/arz/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Arabic (Egypt) (http://www.transifex.com/gnu-social/gnu-social/language/ar_EG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_EG\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "أرسل" diff --git a/plugins/GNUsocialVideo/locale/ast/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/ast/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index fa37aa18b4..0000000000 --- a/plugins/GNUsocialVideo/locale/ast/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Asturian (http://www.transifex.com/gnu-social/gnu-social/language/ast/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ast\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "" diff --git a/plugins/GNUsocialVideo/locale/be-tarask/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/be-tarask/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index d07cf8803b..0000000000 --- a/plugins/GNUsocialVideo/locale/be-tarask/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Belarusian (Tarask) (http://www.transifex.com/gnu-social/gnu-social/language/be@tarask/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be@tarask\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" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Захаваць" diff --git a/plugins/GNUsocialVideo/locale/bg/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/bg/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 7919455a70..0000000000 --- a/plugins/GNUsocialVideo/locale/bg/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Bulgarian (http://www.transifex.com/gnu-social/gnu-social/language/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Запазване" diff --git a/plugins/GNUsocialVideo/locale/bn_IN/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/bn_IN/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index e3cab30928..0000000000 --- a/plugins/GNUsocialVideo/locale/bn_IN/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Bengali (India) (http://www.transifex.com/gnu-social/gnu-social/language/bn_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bn_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "" diff --git a/plugins/GNUsocialVideo/locale/br/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/br/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 451ce1756f..0000000000 --- a/plugins/GNUsocialVideo/locale/br/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Breton (http://www.transifex.com/gnu-social/gnu-social/language/br/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: br\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Enrollañ" diff --git a/plugins/GNUsocialVideo/locale/ca/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/ca/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index ebd292e71d..0000000000 --- a/plugins/GNUsocialVideo/locale/ca/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Catalan (http://www.transifex.com/gnu-social/gnu-social/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" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Desa" diff --git a/plugins/GNUsocialVideo/locale/cs/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/cs/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 03aee45f17..0000000000 --- a/plugins/GNUsocialVideo/locale/cs/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Czech (http://www.transifex.com/gnu-social/gnu-social/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" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Uložit" diff --git a/plugins/GNUsocialVideo/locale/da/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/da/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index f547c2a0e0..0000000000 --- a/plugins/GNUsocialVideo/locale/da/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Danish (http://www.transifex.com/gnu-social/gnu-social/language/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Gem" diff --git a/plugins/GNUsocialVideo/locale/de/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/de/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index d96e0fd26f..0000000000 --- a/plugins/GNUsocialVideo/locale/de/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: German (http://www.transifex.com/gnu-social/gnu-social/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" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Speichern" diff --git a/plugins/GNUsocialVideo/locale/el/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/el/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index b3fb117873..0000000000 --- a/plugins/GNUsocialVideo/locale/el/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Greek (http://www.transifex.com/gnu-social/gnu-social/language/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Αποθήκευση" diff --git a/plugins/GNUsocialVideo/locale/en_GB/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/en_GB/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 5036ed1b21..0000000000 --- a/plugins/GNUsocialVideo/locale/en_GB/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: English (United Kingdom) (http://www.transifex.com/gnu-social/gnu-social/language/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Save" diff --git a/plugins/GNUsocialVideo/locale/eo/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/eo/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 605d0bc19a..0000000000 --- a/plugins/GNUsocialVideo/locale/eo/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Esperanto (http://www.transifex.com/gnu-social/gnu-social/language/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Konservi" diff --git a/plugins/GNUsocialVideo/locale/es/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/es/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 8c803e0a06..0000000000 --- a/plugins/GNUsocialVideo/locale/es/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Spanish (http://www.transifex.com/gnu-social/gnu-social/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" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Guardar" diff --git a/plugins/GNUsocialVideo/locale/eu/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/eu/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index f7e85b5a23..0000000000 --- a/plugins/GNUsocialVideo/locale/eu/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Basque (http://www.transifex.com/gnu-social/gnu-social/language/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Gorde" diff --git a/plugins/GNUsocialVideo/locale/fa/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/fa/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index aa7f5ef455..0000000000 --- a/plugins/GNUsocialVideo/locale/fa/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Persian (http://www.transifex.com/gnu-social/gnu-social/language/fa/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "ذخیره‌کردن" diff --git a/plugins/GNUsocialVideo/locale/fi/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/fi/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 8467bd179f..0000000000 --- a/plugins/GNUsocialVideo/locale/fi/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Finnish (http://www.transifex.com/gnu-social/gnu-social/language/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Tallenna" diff --git a/plugins/GNUsocialVideo/locale/fr/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/fr/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index bbd513b409..0000000000 --- a/plugins/GNUsocialVideo/locale/fr/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/gnu-social/gnu-social/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" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Enregistrer" diff --git a/plugins/GNUsocialVideo/locale/fur/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/fur/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 6db2b0e862..0000000000 --- a/plugins/GNUsocialVideo/locale/fur/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Friulian (http://www.transifex.com/gnu-social/gnu-social/language/fur/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fur\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Salve" diff --git a/plugins/GNUsocialVideo/locale/gl/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/gl/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index fecdaec91a..0000000000 --- a/plugins/GNUsocialVideo/locale/gl/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Galician (http://www.transifex.com/gnu-social/gnu-social/language/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Gardar" diff --git a/plugins/GNUsocialVideo/locale/he/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/he/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index c15e0dcdc0..0000000000 --- a/plugins/GNUsocialVideo/locale/he/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Hebrew (http://www.transifex.com/gnu-social/gnu-social/language/he/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "שמור" diff --git a/plugins/GNUsocialVideo/locale/hsb/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/hsb/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 09f92576d2..0000000000 --- a/plugins/GNUsocialVideo/locale/hsb/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Upper Sorbian (http://www.transifex.com/gnu-social/gnu-social/language/hsb/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hsb\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Składować" diff --git a/plugins/GNUsocialVideo/locale/hu/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/hu/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 50312ec357..0000000000 --- a/plugins/GNUsocialVideo/locale/hu/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Hungarian (http://www.transifex.com/gnu-social/gnu-social/language/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Mentés" diff --git a/plugins/GNUsocialVideo/locale/hy_AM/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/hy_AM/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index d6a7548283..0000000000 --- a/plugins/GNUsocialVideo/locale/hy_AM/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Armenian (Armenia) (http://www.transifex.com/gnu-social/gnu-social/language/hy_AM/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy_AM\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "" diff --git a/plugins/GNUsocialVideo/locale/ia/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/ia/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index aab05b2062..0000000000 --- a/plugins/GNUsocialVideo/locale/ia/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Interlingua (http://www.transifex.com/gnu-social/gnu-social/language/ia/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ia\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Salveguardar" diff --git a/plugins/GNUsocialVideo/locale/id/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/id/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 830351e89e..0000000000 --- a/plugins/GNUsocialVideo/locale/id/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,24 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -# zk , 2015 -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-05-28 15:50+0000\n" -"Last-Translator: zk \n" -"Language-Team: Indonesian (http://www.transifex.com/gnu-social/gnu-social/language/id/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Simpan" diff --git a/plugins/GNUsocialVideo/locale/io/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/io/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 2c8bcc10ce..0000000000 --- a/plugins/GNUsocialVideo/locale/io/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-06-15 03:21+0000\n" -"Last-Translator: Ciencisto Dementa \n" -"Language-Team: Ido (http://www.transifex.com/gnu-social/gnu-social/language/io/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: io\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Konservar" diff --git a/plugins/GNUsocialVideo/locale/is/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/is/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 70a5dead6d..0000000000 --- a/plugins/GNUsocialVideo/locale/is/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Icelandic (http://www.transifex.com/gnu-social/gnu-social/language/is/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: is\n" -"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Vista" diff --git a/plugins/GNUsocialVideo/locale/it/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/it/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 3b65411cda..0000000000 --- a/plugins/GNUsocialVideo/locale/it/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Italian (http://www.transifex.com/gnu-social/gnu-social/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" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Salva" diff --git a/plugins/GNUsocialVideo/locale/ja/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/ja/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 64cbefb79e..0000000000 --- a/plugins/GNUsocialVideo/locale/ja/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Japanese (http://www.transifex.com/gnu-social/gnu-social/language/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "保存" diff --git a/plugins/GNUsocialVideo/locale/ka/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/ka/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index fe0f5e8432..0000000000 --- a/plugins/GNUsocialVideo/locale/ka/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Georgian (http://www.transifex.com/gnu-social/gnu-social/language/ka/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ka\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "შენახვა" diff --git a/plugins/GNUsocialVideo/locale/ko/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/ko/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index bca0a9da68..0000000000 --- a/plugins/GNUsocialVideo/locale/ko/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Korean (http://www.transifex.com/gnu-social/gnu-social/language/ko/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "저장" diff --git a/plugins/GNUsocialVideo/locale/ksh/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/ksh/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 4280aaa1fe..0000000000 --- a/plugins/GNUsocialVideo/locale/ksh/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Colognian (http://www.transifex.com/gnu-social/gnu-social/language/ksh/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ksh\n" -"Plural-Forms: nplurals=3; plural=(n==0) ? 0 : (n==1) ? 1 : 2;\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "" diff --git a/plugins/GNUsocialVideo/locale/lb/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/lb/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index f949f2eb31..0000000000 --- a/plugins/GNUsocialVideo/locale/lb/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Luxembourgish (http://www.transifex.com/gnu-social/gnu-social/language/lb/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lb\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Späicheren" diff --git a/plugins/GNUsocialVideo/locale/lt/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/lt/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index a222f09ecd..0000000000 --- a/plugins/GNUsocialVideo/locale/lt/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Lithuanian (http://www.transifex.com/gnu-social/gnu-social/language/lt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Išsaugoti" diff --git a/plugins/GNUsocialVideo/locale/lv/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/lv/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 8defc1cd35..0000000000 --- a/plugins/GNUsocialVideo/locale/lv/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-07 09:39+0000\n" -"Last-Translator: digitaldreamer \n" -"Language-Team: Latvian (http://www.transifex.com/gnu-social/gnu-social/language/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "" diff --git a/plugins/GNUsocialVideo/locale/mg/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/mg/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 4049a1b259..0000000000 --- a/plugins/GNUsocialVideo/locale/mg/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Malagasy (http://www.transifex.com/gnu-social/gnu-social/language/mg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mg\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Tehirizina" diff --git a/plugins/GNUsocialVideo/locale/mk/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/mk/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index a5331346de..0000000000 --- a/plugins/GNUsocialVideo/locale/mk/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Macedonian (http://www.transifex.com/gnu-social/gnu-social/language/mk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Зачувај" diff --git a/plugins/GNUsocialVideo/locale/ml/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/ml/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 955382e240..0000000000 --- a/plugins/GNUsocialVideo/locale/ml/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Malayalam (http://www.transifex.com/gnu-social/gnu-social/language/ml/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ml\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "സേവ് ചെയ്യുക" diff --git a/plugins/GNUsocialVideo/locale/ms/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/ms/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 5b2c9a7d4a..0000000000 --- a/plugins/GNUsocialVideo/locale/ms/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Malay (http://www.transifex.com/gnu-social/gnu-social/language/ms/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ms\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Simpan" diff --git a/plugins/GNUsocialVideo/locale/my/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/my/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 39d50bb795..0000000000 --- a/plugins/GNUsocialVideo/locale/my/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Burmese (http://www.transifex.com/gnu-social/gnu-social/language/my/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: my\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "သိမ်းရန်" diff --git a/plugins/GNUsocialVideo/locale/nb/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/nb/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 01a95a5664..0000000000 --- a/plugins/GNUsocialVideo/locale/nb/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Norwegian Bokmål (http://www.transifex.com/gnu-social/gnu-social/language/nb/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Lagre" diff --git a/plugins/GNUsocialVideo/locale/ne/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/ne/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 653924f382..0000000000 --- a/plugins/GNUsocialVideo/locale/ne/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-07 09:30+0000\n" -"Last-Translator: digitaldreamer \n" -"Language-Team: Nepali (http://www.transifex.com/gnu-social/gnu-social/language/ne/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ne\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "" diff --git a/plugins/GNUsocialVideo/locale/nl/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/nl/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 1fb3b086f8..0000000000 --- a/plugins/GNUsocialVideo/locale/nl/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Dutch (http://www.transifex.com/gnu-social/gnu-social/language/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Opslaan" diff --git a/plugins/GNUsocialVideo/locale/nn/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/nn/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 67b5ec7552..0000000000 --- a/plugins/GNUsocialVideo/locale/nn/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Norwegian Nynorsk (http://www.transifex.com/gnu-social/gnu-social/language/nn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nn\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Lagra" diff --git a/plugins/GNUsocialVideo/locale/pl/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/pl/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index f95c916dd9..0000000000 --- a/plugins/GNUsocialVideo/locale/pl/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Polish (http://www.transifex.com/gnu-social/gnu-social/language/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Zapisz" diff --git a/plugins/GNUsocialVideo/locale/pt/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/pt/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index d2c8487dc9..0000000000 --- a/plugins/GNUsocialVideo/locale/pt/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (http://www.transifex.com/gnu-social/gnu-social/language/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Gravar" diff --git a/plugins/GNUsocialVideo/locale/pt_BR/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/pt_BR/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 5996ff3169..0000000000 --- a/plugins/GNUsocialVideo/locale/pt_BR/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/gnu-social/gnu-social/language/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Salvar" diff --git a/plugins/GNUsocialVideo/locale/ro_RO/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/ro_RO/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 61f4bc279a..0000000000 --- a/plugins/GNUsocialVideo/locale/ro_RO/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/gnu-social/gnu-social/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" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "" diff --git a/plugins/GNUsocialVideo/locale/ru/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/ru/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 6979da8ebd..0000000000 --- a/plugins/GNUsocialVideo/locale/ru/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Russian (http://www.transifex.com/gnu-social/gnu-social/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" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Сохранить" diff --git a/plugins/GNUsocialVideo/locale/sl/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/sl/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index cce5b35ad2..0000000000 --- a/plugins/GNUsocialVideo/locale/sl/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Slovenian (http://www.transifex.com/gnu-social/gnu-social/language/sl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "" diff --git a/plugins/GNUsocialVideo/locale/sr-ec/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/sr-ec/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 2256288914..0000000000 --- a/plugins/GNUsocialVideo/locale/sr-ec/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Serbian (http://www.transifex.com/gnu-social/gnu-social/language/sr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Сачувај" diff --git a/plugins/GNUsocialVideo/locale/sv/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/sv/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index be56120cb3..0000000000 --- a/plugins/GNUsocialVideo/locale/sv/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Swedish (http://www.transifex.com/gnu-social/gnu-social/language/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Spara" diff --git a/plugins/GNUsocialVideo/locale/ta/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/ta/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 25e429ef15..0000000000 --- a/plugins/GNUsocialVideo/locale/ta/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-07 08:48+0000\n" -"Last-Translator: digitaldreamer \n" -"Language-Team: Tamil (http://www.transifex.com/gnu-social/gnu-social/language/ta/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ta\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "" diff --git a/plugins/GNUsocialVideo/locale/te/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/te/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 51ce4a1b79..0000000000 --- a/plugins/GNUsocialVideo/locale/te/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Telugu (http://www.transifex.com/gnu-social/gnu-social/language/te/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: te\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "భద్రపరచు" diff --git a/plugins/GNUsocialVideo/locale/tl/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/tl/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 5c9a8d9b76..0000000000 --- a/plugins/GNUsocialVideo/locale/tl/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Tagalog (http://www.transifex.com/gnu-social/gnu-social/language/tl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tl\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Sagipin" diff --git a/plugins/GNUsocialVideo/locale/tr/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/tr/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index a4b5013e71..0000000000 --- a/plugins/GNUsocialVideo/locale/tr/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Turkish (http://www.transifex.com/gnu-social/gnu-social/language/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Kaydet" diff --git a/plugins/GNUsocialVideo/locale/uk/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/uk/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 9f35160df8..0000000000 --- a/plugins/GNUsocialVideo/locale/uk/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Ukrainian (http://www.transifex.com/gnu-social/gnu-social/language/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Зберегти" diff --git a/plugins/GNUsocialVideo/locale/ur_PK/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/ur_PK/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 73c3404a02..0000000000 --- a/plugins/GNUsocialVideo/locale/ur_PK/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Urdu (Pakistan) (http://www.transifex.com/gnu-social/gnu-social/language/ur_PK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ur_PK\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "تبدیلیاں محفوظ کریں" diff --git a/plugins/GNUsocialVideo/locale/vi/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/vi/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 07e87c8858..0000000000 --- a/plugins/GNUsocialVideo/locale/vi/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Vietnamese (http://www.transifex.com/gnu-social/gnu-social/language/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "Lưu" diff --git a/plugins/GNUsocialVideo/locale/zh/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/zh/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 717589f86a..0000000000 --- a/plugins/GNUsocialVideo/locale/zh/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Chinese (http://www.transifex.com/gnu-social/gnu-social/language/zh/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "" diff --git a/plugins/GNUsocialVideo/locale/zh_CN/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/zh_CN/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index 7b20fe1dcf..0000000000 --- a/plugins/GNUsocialVideo/locale/zh_CN/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Chinese (China) (http://www.transifex.com/gnu-social/gnu-social/language/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "保存" diff --git a/plugins/GNUsocialVideo/locale/zh_TW/LC_MESSAGES/GNUsocialVideo.po b/plugins/GNUsocialVideo/locale/zh_TW/LC_MESSAGES/GNUsocialVideo.po deleted file mode 100644 index eb92efded7..0000000000 --- a/plugins/GNUsocialVideo/locale/zh_TW/LC_MESSAGES/GNUsocialVideo.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation file for GNU social - the free software social networking platform -# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org -# This file is under https://www.gnu.org/licenses/agpl v3 or later -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: GNU social\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-02 17:47+0100\n" -"PO-Revision-Date: 2015-02-06 16:25+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Chinese (Taiwan) (http://www.transifex.com/gnu-social/gnu-social/language/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: forms/video.php:70 -msgctxt "BUTTON" -msgid "Save" -msgstr "" diff --git a/public/plugins/GNUsocialPhotos/res/gnusocialphotos.js b/public/plugins/GNUsocialPhotos/res/gnusocialphotos.js deleted file mode 100644 index 8681f61755..0000000000 --- a/public/plugins/GNUsocialPhotos/res/gnusocialphotos.js +++ /dev/null @@ -1,29 +0,0 @@ -function increasePhotoSize() { - $('.photoingallery, .albumingallery').each(function(index) { - this.height *= 1.1; - this.width *= 1.1; - }); - return false; -} - -function decreasePhotoSize() { - $('.photoingallery, .albumingallery').each(function(index) { - this.height /= 1.1; - this.width /= 1.1; - }); - return false; -} - -function scalePhotosToSize(size) { - $('.photoingallery, .albumingallery').each(function(index) { - if(this.height > this.width) { - this.width = this.width*size/this.height; - this.height = size; - } - else { - this.height = this.height*size/this.width; - this.width = size; - } - }); - return false; -} \ No newline at end of file diff --git a/public/plugins/GNUsocialPhotos/res/style.css b/public/plugins/GNUsocialPhotos/res/style.css deleted file mode 100644 index bb7b619278..0000000000 --- a/public/plugins/GNUsocialPhotos/res/style.css +++ /dev/null @@ -1,14 +0,0 @@ -.photocontainer, .albumcontainer { - display: block; - background-color: yellow; - float: left; - padding: 20px; - margin: 15px; -} - -.photodescription { - display: block; - background-color: #dddddd; - padding: 20px; - margin: 15px; -} \ No newline at end of file