[Plugins] Incorporated GNUsocialExtendedProfile as part of ExtendedProfile
Also improved a lot of the plugin and made things in a way it would make sense
This commit is contained in:
parent
90bd9088bb
commit
88bdb5114f
|
@ -61,8 +61,8 @@ class Widget
|
|||
* Prepare the widget for use
|
||||
*
|
||||
* @param Action $out output helper, defaults to null
|
||||
* @param array $widgetOpts
|
||||
*/
|
||||
|
||||
function __construct(Action $out = null, array $widgetOpts = [])
|
||||
{
|
||||
$this->out = $out;
|
||||
|
|
|
@ -1,46 +1,50 @@
|
|||
<?php
|
||||
/*
|
||||
* StatusNet - the distributed open-source microblogging tool
|
||||
* Copyright (C) 2011, StatusNet, Inc.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
if (!defined('STATUSNET')) {
|
||||
exit(1);
|
||||
}
|
||||
// This file is part of GNU social - https://www.gnu.org/software/social
|
||||
//
|
||||
// GNU social is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU Affero General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// GNU social is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU Affero General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU Affero General Public License
|
||||
// along with GNU social. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* Extra profile bio-like fields
|
||||
* Extra profile bio-like fields and allows administrators to define
|
||||
* additional profile fields for the users of a GNU social installation.
|
||||
*
|
||||
* @package ExtendedProfilePlugin
|
||||
* @maintainer Brion Vibber <brion@status.net>
|
||||
* @category Widget
|
||||
* @package GNU social
|
||||
* @author Brion Vibber <brion@status.net>
|
||||
* @author Max Shinn <trombonechamp@gmail.com>
|
||||
* @author Diogo Cordeiro <diogo@fc.up.pt>
|
||||
* @copyright 2011-2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
||||
*/
|
||||
|
||||
defined('GNUSOCIAL') || die();
|
||||
|
||||
include_once __DIR__ . '/lib/profiletools.php';
|
||||
|
||||
class ExtendedProfilePlugin extends Plugin
|
||||
{
|
||||
const PLUGIN_VERSION = '2.0.0';
|
||||
const PLUGIN_VERSION = '3.0.0';
|
||||
|
||||
public function onPluginVersion(array &$versions): bool
|
||||
{
|
||||
$versions[] = array(
|
||||
$versions[] = [
|
||||
'name' => 'ExtendedProfile',
|
||||
'version' => self::PLUGIN_VERSION,
|
||||
'author' => 'Brion Vibber, Samantha Doherty, Zach Copley',
|
||||
'author' => 'Brion Vibber, Samantha Doherty, Zach Copley, Max Shinn, Diogo Cordeiro',
|
||||
'homepage' => 'https://git.gnu.io/gnu/gnu-social/tree/master/plugins/ExtendedProfile',
|
||||
// TRANS: Plugin description.
|
||||
// TRANS: Module description.
|
||||
'rawdescription' => _m('UI extensions for additional profile fields.')
|
||||
);
|
||||
];
|
||||
|
||||
return true;
|
||||
}
|
||||
|
@ -52,41 +56,160 @@ class ExtendedProfilePlugin extends Plugin
|
|||
*
|
||||
* @param URLMapper $m URL mapper
|
||||
*
|
||||
* @return boolean hook return
|
||||
* @return bool hook return
|
||||
* @throws Exception
|
||||
*/
|
||||
public function onStartInitializeRouter(URLMapper $m)
|
||||
{
|
||||
$m->connect(
|
||||
':nickname/detail',
|
||||
array('action' => 'profiledetail'),
|
||||
array('nickname' => Nickname::DISPLAY_FMT)
|
||||
['action' => 'profiledetail'],
|
||||
['nickname' => Nickname::DISPLAY_FMT]
|
||||
);
|
||||
$m->connect(
|
||||
'/settings/profile/finduser',
|
||||
array('action' => 'Userautocomplete')
|
||||
['action' => 'Userautocomplete']
|
||||
);
|
||||
$m->connect(
|
||||
'settings/profile/detail',
|
||||
array('action' => 'profiledetailsettings')
|
||||
['action' => 'profiledetailsettings']
|
||||
);
|
||||
$m->connect(
|
||||
'admin/profilefields',
|
||||
['action' => 'profilefieldsAdminPanel']
|
||||
);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
function onCheckSchema()
|
||||
public function onCheckSchema()
|
||||
{
|
||||
$schema = Schema::get();
|
||||
$schema->ensureTable('profile_detail', Profile_detail::schemaDef());
|
||||
$schema->ensureTable('gnusocialprofileextensionfield', GNUsocialProfileExtensionField::schemaDef());
|
||||
$schema->ensureTable('gnusocialprofileextensionresponse', GNUsocialProfileExtensionResponse::schemaDef());
|
||||
return true;
|
||||
}
|
||||
|
||||
public function onEndShowAccountProfileBlock(HTMLOutputter $out, Profile $profile)
|
||||
{
|
||||
$user = User::getKV('id', $profile->id);
|
||||
if ($user) {
|
||||
$url = common_local_url('profiledetail', ['nickname' => $user->nickname]);
|
||||
// TRANS: Link text on user profile page leading to extended profile page.
|
||||
$out->element('a', ['href' => $url, 'class' => 'profiledetail'], _m('More details...'));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Menu item for personal subscriptions/groups area
|
||||
*
|
||||
* @param Action $action action being executed
|
||||
*
|
||||
* @return bool hook return
|
||||
* @throws Exception
|
||||
*/
|
||||
public function onEndAccountSettingsNav(Action $action)
|
||||
{
|
||||
$action_name = $action->trimmed('action');
|
||||
|
||||
$action->menuItem(
|
||||
common_local_url('profiledetailsettings'),
|
||||
// TRANS: Extended profile plugin menu item on user settings page.
|
||||
_m('MENU', 'Full Profile'),
|
||||
// TRANS: Extended profile plugin tooltip for user settings menu item.
|
||||
_m('Change your extended profile settings'),
|
||||
$action_name === 'profiledetailsettings'
|
||||
);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
function onEndShowAccountProfileBlock(HTMLOutputter $out, Profile $profile) {
|
||||
$user = User::getKV('id', $profile->id);
|
||||
if ($user) {
|
||||
$url = common_local_url('profiledetail', array('nickname' => $user->nickname));
|
||||
// TRANS: Link text on user profile page leading to extended profile page.
|
||||
$out->element('a', array('href' => $url, 'class' => 'profiledetail'), _m('More details...'));
|
||||
/*public function onEndProfileFormData(Action $action): bool
|
||||
{
|
||||
$fields = GNUsocialProfileExtensionField::allFields();
|
||||
$user = common_current_user();
|
||||
$profile = $user->getProfile();
|
||||
gnusocial_profile_merge($profile);
|
||||
foreach ($fields as $field) {
|
||||
$action->elementStart('li');
|
||||
$fieldname = $field->systemname;
|
||||
if ($field->type == 'str') {
|
||||
$action->input(
|
||||
$fieldname,
|
||||
$field->title,
|
||||
($action->arg($fieldname)) ? $action->arg($fieldname) : $profile->$fieldname,
|
||||
$field->description
|
||||
);
|
||||
} elseif ($field->type == 'text') {
|
||||
$action->textarea(
|
||||
$fieldname,
|
||||
$field->title,
|
||||
($action->arg($fieldname)) ? $action->arg($fieldname) : $profile->$fieldname,
|
||||
$field->description
|
||||
);
|
||||
}
|
||||
$action->elementEnd('li');
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
public function onEndProfileSaveForm(Action $action): bool
|
||||
{
|
||||
$fields = GNUsocialProfileExtensionField::allFields();
|
||||
$user = common_current_user();
|
||||
$profile = $user->getProfile();
|
||||
foreach ($fields as $field) {
|
||||
$val = $action->trimmed($field->systemname);
|
||||
|
||||
$response = new GNUsocialProfileExtensionResponse();
|
||||
$response->profile_id = $profile->id;
|
||||
$response->extension_id = $field->id;
|
||||
|
||||
if ($response->find()) {
|
||||
$response->fetch();
|
||||
$response->value = $val;
|
||||
if ($response->validate()) {
|
||||
if (empty($val)) {
|
||||
$response->delete();
|
||||
} else {
|
||||
$response->update();
|
||||
}
|
||||
}
|
||||
} else {
|
||||
$response->value = $val;
|
||||
$response->insert();
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}*/
|
||||
|
||||
public function onEndShowStyles(Action $action): bool
|
||||
{
|
||||
$action->cssLink('/plugins/ExtendedProfile/css/profiledetail.css');
|
||||
return true;
|
||||
}
|
||||
|
||||
public function onEndShowScripts(Action $action): bool
|
||||
{
|
||||
$action->script('plugins/ExtendedProfile/js/profiledetail.js');
|
||||
return true;
|
||||
}
|
||||
|
||||
public function onEndAdminPanelNav(AdminPanelNav $nav): bool
|
||||
{
|
||||
if (AdminPanelAction::canAdmin('profilefields')) {
|
||||
$action_name = $nav->action->trimmed('action');
|
||||
|
||||
$nav->out->menuItem(
|
||||
'/admin/profilefields',
|
||||
_m('Profile Fields'),
|
||||
_m('Custom profile fields'),
|
||||
$action_name == 'profilefieldsadminpanel',
|
||||
'nav_profilefields_admin_panel'
|
||||
);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,9 +6,16 @@ The ExtendedProfile plugin adds additional profile fields such as:
|
|||
* Work experience
|
||||
* Education
|
||||
|
||||
And allows administrators to define additional profile fields for the
|
||||
users of a GNU social installation.
|
||||
|
||||
Installation
|
||||
============
|
||||
add "addPlugin('ExtendedProfile');"
|
||||
add
|
||||
|
||||
addPlugin('ExtendedProfile');
|
||||
$config['admin']['panels'][] = 'profilefields';
|
||||
|
||||
to the bottom of your config.php
|
||||
|
||||
Note: This plugin is enabled by default on private instances.
|
||||
|
@ -17,7 +24,3 @@ Settings
|
|||
========
|
||||
none
|
||||
|
||||
Example
|
||||
=======
|
||||
addPlugin('ExtendedProfile');
|
||||
|
|
@ -17,38 +17,44 @@
|
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
if (!defined('GNUSOCIAL')) { exit(1); }
|
||||
if (!defined('GNUSOCIAL')) {
|
||||
exit(1);
|
||||
}
|
||||
|
||||
class ProfileDetailAction extends ShowstreamAction
|
||||
{
|
||||
function isReadOnly($args)
|
||||
public function isReadOnly($args)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
function title()
|
||||
public function title()
|
||||
{
|
||||
return $this->target->getFancyName();
|
||||
}
|
||||
|
||||
function showStylesheets() {
|
||||
public function showStylesheets()
|
||||
{
|
||||
parent::showStylesheets();
|
||||
$this->cssLink('plugins/ExtendedProfile/css/profiledetail.css');
|
||||
return true;
|
||||
}
|
||||
|
||||
function showContent()
|
||||
public function showContent()
|
||||
{
|
||||
$cur = common_current_user();
|
||||
if ($this->scoped instanceof Profile && $this->scoped->sameAs($this->target)) {
|
||||
$this->elementStart('div', 'entity_actions');
|
||||
$this->elementStart('ul');
|
||||
$this->elementStart('li', 'entity_edit');
|
||||
$this->element('a', array('href' => common_local_url('profiledetailsettings'),
|
||||
$this->element(
|
||||
'a',
|
||||
array('href' => common_local_url('profiledetailsettings'),
|
||||
// TRANS: Link title for link on user profile.
|
||||
'title' => _m('Edit extended profile settings')),
|
||||
// TRANS: Link text for link on user profile.
|
||||
_m('Edit'));
|
||||
_m('Edit')
|
||||
);
|
||||
$this->elementEnd('li');
|
||||
$this->elementEnd('ul');
|
||||
$this->elementEnd('div');
|
||||
|
|
|
@ -17,23 +17,27 @@
|
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
if (!defined('GNUSOCIAL')) { exit(1); }
|
||||
if (!defined('GNUSOCIAL')) {
|
||||
exit(1);
|
||||
}
|
||||
|
||||
class ProfileDetailSettingsAction extends ProfileSettingsAction
|
||||
{
|
||||
function title()
|
||||
public function title()
|
||||
{
|
||||
// TRANS: Title for extended profile settings.
|
||||
return _m('Extended profile settings');
|
||||
}
|
||||
|
||||
function showStylesheets() {
|
||||
public function showStylesheets()
|
||||
{
|
||||
parent::showStylesheets();
|
||||
$this->cssLink('plugins/ExtendedProfile/css/profiledetail.css');
|
||||
return true;
|
||||
}
|
||||
|
||||
function showScripts() {
|
||||
public function showScripts()
|
||||
{
|
||||
parent::showScripts();
|
||||
$this->script('plugins/ExtendedProfile/js/profiledetail.js');
|
||||
return true;
|
||||
|
@ -49,7 +53,7 @@ class ProfileDetailSettingsAction extends ProfileSettingsAction
|
|||
throw new ClientException(_m('Unexpected form submission.'));
|
||||
}
|
||||
|
||||
function showContent()
|
||||
public function showContent()
|
||||
{
|
||||
$widget = new ExtendedProfileWidget(
|
||||
$this,
|
||||
|
@ -59,7 +63,7 @@ class ProfileDetailSettingsAction extends ProfileSettingsAction
|
|||
$widget->show();
|
||||
}
|
||||
|
||||
function saveDetails()
|
||||
public function saveDetails()
|
||||
{
|
||||
common_debug(var_export($_POST, true));
|
||||
|
||||
|
@ -92,13 +96,13 @@ class ProfileDetailSettingsAction extends ProfileSettingsAction
|
|||
$this->saveWebsites();
|
||||
$this->saveExperiences();
|
||||
$this->saveEducations();
|
||||
$this->saveCustomFields($this);
|
||||
|
||||
// TRANS: Success message after saving extended profile details.
|
||||
return _m('Details saved.');
|
||||
|
||||
}
|
||||
|
||||
function parseDate($fieldname, $datestr, $required = false)
|
||||
public function parseDate($fieldname, $datestr, $required = false)
|
||||
{
|
||||
if (empty($datestr)) {
|
||||
if ($required) {
|
||||
|
@ -128,7 +132,8 @@ class ProfileDetailSettingsAction extends ProfileSettingsAction
|
|||
return null;
|
||||
}
|
||||
|
||||
function savePhoneNumbers() {
|
||||
public function savePhoneNumbers()
|
||||
{
|
||||
$phones = $this->findPhoneNumbers();
|
||||
$this->removeAll('phone');
|
||||
$i = 0;
|
||||
|
@ -145,7 +150,8 @@ class ProfileDetailSettingsAction extends ProfileSettingsAction
|
|||
}
|
||||
}
|
||||
|
||||
function findPhoneNumbers() {
|
||||
public function findPhoneNumbers()
|
||||
{
|
||||
|
||||
// Form vals look like this:
|
||||
// 'extprofile-phone-1' => '11332',
|
||||
|
@ -165,7 +171,8 @@ class ProfileDetailSettingsAction extends ProfileSettingsAction
|
|||
return $phoneArray;
|
||||
}
|
||||
|
||||
function findIms() {
|
||||
public function findIms()
|
||||
{
|
||||
|
||||
// Form vals look like this:
|
||||
// 'extprofile-im-0' => 'jed',
|
||||
|
@ -185,7 +192,8 @@ class ProfileDetailSettingsAction extends ProfileSettingsAction
|
|||
return $imArray;
|
||||
}
|
||||
|
||||
function saveIms() {
|
||||
public function saveIms()
|
||||
{
|
||||
$ims = $this->findIms();
|
||||
$this->removeAll('im');
|
||||
$i = 0;
|
||||
|
@ -202,7 +210,8 @@ class ProfileDetailSettingsAction extends ProfileSettingsAction
|
|||
}
|
||||
}
|
||||
|
||||
function findWebsites() {
|
||||
public function findWebsites()
|
||||
{
|
||||
|
||||
// Form vals look like this:
|
||||
|
||||
|
@ -220,7 +229,8 @@ class ProfileDetailSettingsAction extends ProfileSettingsAction
|
|||
return $wsArray;
|
||||
}
|
||||
|
||||
function saveWebsites() {
|
||||
public function saveWebsites()
|
||||
{
|
||||
$sites = $this->findWebsites();
|
||||
$this->removeAll('website');
|
||||
$i = 0;
|
||||
|
@ -243,7 +253,8 @@ class ProfileDetailSettingsAction extends ProfileSettingsAction
|
|||
}
|
||||
}
|
||||
|
||||
function findExperiences() {
|
||||
public function findExperiences()
|
||||
{
|
||||
|
||||
// Form vals look like this:
|
||||
// 'extprofile-experience-0' => 'Bozotronix',
|
||||
|
@ -274,7 +285,8 @@ class ProfileDetailSettingsAction extends ProfileSettingsAction
|
|||
return $expArray;
|
||||
}
|
||||
|
||||
function saveExperiences() {
|
||||
public function saveExperiences()
|
||||
{
|
||||
common_debug('save experiences');
|
||||
$experiences = $this->findExperiences();
|
||||
|
||||
|
@ -318,12 +330,12 @@ class ProfileDetailSettingsAction extends ProfileSettingsAction
|
|||
$experience['end']
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function findEducations() {
|
||||
public function findEducations()
|
||||
{
|
||||
|
||||
// Form vals look like this:
|
||||
// 'extprofile-education-0-school' => 'Pigdog',
|
||||
|
@ -352,7 +364,8 @@ class ProfileDetailSettingsAction extends ProfileSettingsAction
|
|||
}
|
||||
|
||||
|
||||
function saveEducations() {
|
||||
public function saveEducations()
|
||||
{
|
||||
common_debug('save education');
|
||||
$edus = $this->findEducations();
|
||||
common_debug(var_export($edus, true));
|
||||
|
@ -404,7 +417,7 @@ class ProfileDetailSettingsAction extends ProfileSettingsAction
|
|||
}
|
||||
}
|
||||
|
||||
function arraySplit($array, $pieces)
|
||||
public function arraySplit($array, $pieces)
|
||||
{
|
||||
if ($pieces < 2) {
|
||||
return array($array);
|
||||
|
@ -417,7 +430,8 @@ class ProfileDetailSettingsAction extends ProfileSettingsAction
|
|||
return array_merge(array($a), $b);
|
||||
}
|
||||
|
||||
function findMultiParams($type) {
|
||||
public function findMultiParams($type)
|
||||
{
|
||||
$formVals = array();
|
||||
$target = $type;
|
||||
foreach ($_POST as $key => $val) {
|
||||
|
@ -428,7 +442,8 @@ class ProfileDetailSettingsAction extends ProfileSettingsAction
|
|||
return $formVals;
|
||||
}
|
||||
|
||||
function sliceParams($key, $size) {
|
||||
public function sliceParams($key, $size)
|
||||
{
|
||||
$slice = array();
|
||||
$params = $this->findMultiParams($key);
|
||||
ksort($params);
|
||||
|
@ -441,11 +456,12 @@ class ProfileDetailSettingsAction extends ProfileSettingsAction
|
|||
*
|
||||
* @param string $name field name
|
||||
* @param string $value field value
|
||||
* @param string $rel field rel (type)
|
||||
* @param int $index index (fields can have multiple values)
|
||||
* @param date $date related date
|
||||
* @param string|null $rel field rel (type)
|
||||
* @param int|null $index index (fields can have multiple values)
|
||||
* @param string|null $date date related date
|
||||
* @throws ServerException
|
||||
*/
|
||||
function saveField($name, $value, $rel = null, $index = null, $date = null)
|
||||
public function saveField(string $name, ?string $value, ?string $rel = null, ?int $index = null, ?string $date = null)
|
||||
{
|
||||
$detail = new Profile_detail();
|
||||
|
||||
|
@ -485,7 +501,7 @@ class ProfileDetailSettingsAction extends ProfileSettingsAction
|
|||
$detail->free();
|
||||
}
|
||||
|
||||
function removeAll($name)
|
||||
public function removeAll($name)
|
||||
{
|
||||
$detail = new Profile_detail();
|
||||
$detail->profile_id = $this->scoped->getID();
|
||||
|
@ -500,7 +516,7 @@ class ProfileDetailSettingsAction extends ProfileSettingsAction
|
|||
* XXX: There's a lot of dupe code here from ProfileSettingsAction.
|
||||
* Do not want.
|
||||
*/
|
||||
function saveStandardProfileDetails()
|
||||
public function saveStandardProfileDetails()
|
||||
{
|
||||
$fullname = $this->trimmed('extprofile-fullname');
|
||||
$location = $this->trimmed('extprofile-location');
|
||||
|
@ -513,7 +529,7 @@ class ProfileDetailSettingsAction extends ProfileSettingsAction
|
|||
preg_split('/[\s,]+/', $tagstring)
|
||||
);
|
||||
} else {
|
||||
$tags = array();
|
||||
$tags = [];
|
||||
}
|
||||
|
||||
foreach ($tags as $tag) {
|
||||
|
@ -531,7 +547,6 @@ class ProfileDetailSettingsAction extends ProfileSettingsAction
|
|||
|| $location != $this->scoped->location
|
||||
|| !empty($newTags)
|
||||
|| $bio != $this->scoped->getDescription()) {
|
||||
|
||||
$orig = clone($this->scoped);
|
||||
|
||||
// Skipping nickname change here until we add logic for when the site allows it or not
|
||||
|
@ -570,4 +585,36 @@ class ProfileDetailSettingsAction extends ProfileSettingsAction
|
|||
}
|
||||
}
|
||||
|
||||
private function saveCustomFields($action)
|
||||
{
|
||||
$fields = GNUsocialProfileExtensionField::allFields();
|
||||
$user = common_current_user();
|
||||
$profile = $user->getProfile();
|
||||
foreach ($fields as $field) {
|
||||
$val = $action->trimmed('extprofile-'.$field->systemname);
|
||||
|
||||
if (empty($val)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$response = new GNUsocialProfileExtensionResponse();
|
||||
$response->profile_id = $profile->id;
|
||||
$response->extension_id = $field->id;
|
||||
|
||||
if ($response->find()) {
|
||||
$response->fetch();
|
||||
$response->value = $val;
|
||||
if ($response->validate()) {
|
||||
if (empty($val)) {
|
||||
$response->delete();
|
||||
} else {
|
||||
$response->update();
|
||||
}
|
||||
}
|
||||
} else {
|
||||
$response->value = $val;
|
||||
$response->insert();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -144,7 +144,7 @@ class ProfilefieldsAdminForm extends AdminForm
|
|||
'systemname',
|
||||
_m('Internal name'),
|
||||
$systemname,
|
||||
_m('The alphanumeric name used internally for this field. Also the key used in OStatus user info. (optional)')
|
||||
_m('The alphanumeric name used internally for this field. Also the key used for federation (e.g. ActivityPub and OStatus) user info.')
|
||||
);
|
||||
$this->unli();
|
||||
$this->li();
|
|
@ -34,7 +34,7 @@ if (!defined('STATUSNET')) {
|
|||
|
||||
class UserautocompleteAction extends Action
|
||||
{
|
||||
var $query;
|
||||
public $query;
|
||||
|
||||
/**
|
||||
* Initialization.
|
||||
|
@ -42,8 +42,9 @@ class UserautocompleteAction extends Action
|
|||
* @param array $args Web and URL arguments
|
||||
*
|
||||
* @return boolean true if nothing goes wrong
|
||||
* @throws ClientException
|
||||
*/
|
||||
function prepare(array $args = array())
|
||||
public function prepare(array $args = array())
|
||||
{
|
||||
parent::prepare($args);
|
||||
$this->query = $this->trimmed('term');
|
||||
|
@ -53,11 +54,9 @@ class UserautocompleteAction extends Action
|
|||
/**
|
||||
* Handle a request
|
||||
*
|
||||
* @param array $args Arguments from $_REQUEST
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function handle()
|
||||
public function handle()
|
||||
{
|
||||
parent::handle();
|
||||
$this->showResults();
|
||||
|
@ -68,8 +67,9 @@ class UserautocompleteAction extends Action
|
|||
* as a quick-n-dirty JSON document
|
||||
*
|
||||
* @return void
|
||||
* @throws ServerException
|
||||
*/
|
||||
function showResults()
|
||||
public function showResults()
|
||||
{
|
||||
$people = array();
|
||||
|
||||
|
@ -83,7 +83,6 @@ class UserautocompleteAction extends Action
|
|||
$cnt = $profile->find();
|
||||
|
||||
if ($cnt > 0) {
|
||||
|
||||
$sql = 'SELECT profile.* FROM profile, user WHERE profile.id = user.id '
|
||||
. ' AND LEFT(LOWER(profile.nickname), '
|
||||
. strlen($this->query)
|
||||
|
@ -104,9 +103,10 @@ class UserautocompleteAction extends Action
|
|||
/**
|
||||
* Do we need to write to the database?
|
||||
*
|
||||
* @param $args
|
||||
* @return boolean true
|
||||
*/
|
||||
function isReadOnly($args)
|
||||
public function isReadOnly($args)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
|
|
@ -69,7 +69,7 @@ class Profile_detail extends Managed_DataObject
|
|||
public $created;
|
||||
public $modified;
|
||||
|
||||
static function schemaDef()
|
||||
public static function schemaDef()
|
||||
{
|
||||
return array(
|
||||
// No need for i18n. Table properties.
|
||||
|
|
|
@ -32,8 +32,9 @@ class ExtendedProfile
|
|||
* Constructor
|
||||
*
|
||||
* @param Profile $profile
|
||||
* @throws NoSuchUserException
|
||||
*/
|
||||
function __construct(Profile $profile)
|
||||
public function __construct(Profile $profile)
|
||||
{
|
||||
$this->profile = $profile;
|
||||
$this->user = $profile->getUser();
|
||||
|
@ -48,8 +49,9 @@ class ExtendedProfile
|
|||
* Load extended profile fields
|
||||
*
|
||||
* @return array $fields the list of fields
|
||||
* @throws Exception
|
||||
*/
|
||||
function loadFields()
|
||||
public function loadFields()
|
||||
{
|
||||
$detail = new Profile_detail();
|
||||
$detail->profile_id = $this->profile->getID();
|
||||
|
@ -69,7 +71,7 @@ class ExtendedProfile
|
|||
*
|
||||
* @return string the concatenated string of tags
|
||||
*/
|
||||
function getTags()
|
||||
public function getTags()
|
||||
{
|
||||
return implode(' ', Profile_tag::getSelfTagsArray($this->profile));
|
||||
}
|
||||
|
@ -84,7 +86,7 @@ class ExtendedProfile
|
|||
*
|
||||
* @return string the value
|
||||
*/
|
||||
function getTextValue($name)
|
||||
public function getTextValue($name)
|
||||
{
|
||||
$key = strtolower($name);
|
||||
$profileFields = array('fullname', 'location', 'bio');
|
||||
|
@ -98,7 +100,8 @@ class ExtendedProfile
|
|||
}
|
||||
}
|
||||
|
||||
function getDateValue($name) {
|
||||
public function getDateValue($name)
|
||||
{
|
||||
$key = strtolower($name);
|
||||
if (array_key_exists($key, $this->fields)) {
|
||||
return $this->fields[$key][0]->date;
|
||||
|
@ -109,7 +112,7 @@ class ExtendedProfile
|
|||
|
||||
// XXX: getPhones, getIms, and getWebsites pretty much do the same thing,
|
||||
// so refactor.
|
||||
function getPhones()
|
||||
public function getPhones()
|
||||
{
|
||||
$phones = (isset($this->fields['phone'])) ? $this->fields['phone'] : null;
|
||||
$pArrays = array();
|
||||
|
@ -142,7 +145,7 @@ class ExtendedProfile
|
|||
return $pArrays;
|
||||
}
|
||||
|
||||
function getIms()
|
||||
public function getIms()
|
||||
{
|
||||
$ims = (isset($this->fields['im'])) ? $this->fields['im'] : null;
|
||||
$iArrays = array();
|
||||
|
@ -170,7 +173,7 @@ class ExtendedProfile
|
|||
return $iArrays;
|
||||
}
|
||||
|
||||
function getWebsites()
|
||||
public function getWebsites()
|
||||
{
|
||||
$sites = (isset($this->fields['website'])) ? $this->fields['website'] : null;
|
||||
$wArrays = array();
|
||||
|
@ -198,7 +201,7 @@ class ExtendedProfile
|
|||
return $wArrays;
|
||||
}
|
||||
|
||||
function getExperiences()
|
||||
public function getExperiences()
|
||||
{
|
||||
$companies = (isset($this->fields['company'])) ? $this->fields['company'] : null;
|
||||
$start = (isset($this->fields['start'])) ? $this->fields['start'] : null;
|
||||
|
@ -235,7 +238,7 @@ class ExtendedProfile
|
|||
return $eArrays;
|
||||
}
|
||||
|
||||
function getEducation()
|
||||
public function getEducation()
|
||||
{
|
||||
$schools = (isset($this->fields['school'])) ? $this->fields['school'] : null;
|
||||
$degrees = (isset($this->fields['degree'])) ? $this->fields['degree'] : null;
|
||||
|
@ -280,9 +283,27 @@ class ExtendedProfile
|
|||
* Return all the sections of the extended profile
|
||||
*
|
||||
* @return array the big list of sections and fields
|
||||
* @throws Exception
|
||||
*/
|
||||
function getSections()
|
||||
public function getSections()
|
||||
{
|
||||
$gsefields = GNUsocialProfileExtensionField::allFields();
|
||||
$extra_fields = [];
|
||||
gnusocial_profile_merge($this->profile);
|
||||
foreach ($gsefields as $field) {
|
||||
$field_key = $field->systemname;
|
||||
switch ($field->type) {
|
||||
case 'text':
|
||||
$extra_fields[$field_key]['type'] = 'custom-textarea';
|
||||
break;
|
||||
case 'str':
|
||||
default:
|
||||
$extra_fields[$field_key]['type'] = 'custom-text';
|
||||
break;
|
||||
}
|
||||
$extra_fields[$field_key]['label'] = $field->title;
|
||||
$extra_fields[$field_key]['value'] = $this->profile->$field_key;
|
||||
}
|
||||
return array(
|
||||
'basic' => array(
|
||||
// TRANS: Field label for extended profile properties.
|
||||
|
@ -368,6 +389,10 @@ class ExtendedProfile
|
|||
'education' => $this->getEducation()
|
||||
),
|
||||
),
|
||||
'extra' => [
|
||||
'label' => _m('Extra fields'),
|
||||
'fields' => $extra_fields,
|
||||
]
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -39,18 +39,19 @@ class ExtendedProfileWidget extends Form
|
|||
/**
|
||||
* The extended profile
|
||||
*
|
||||
* @var Extended_profile
|
||||
* @var ExtendedProfile
|
||||
*/
|
||||
protected $ext;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @param XMLOutputter $out
|
||||
* @param Action $out
|
||||
* @param Profile $profile
|
||||
* @param boolean $editable
|
||||
* @throws NoSuchUserException
|
||||
*/
|
||||
public function __construct(XMLOutputter $out=null, Profile $profile=null, $editable=false)
|
||||
public function __construct(Action $out = null, Profile $profile = null, $editable = false)
|
||||
{
|
||||
parent::__construct($out);
|
||||
|
||||
|
@ -105,6 +106,7 @@ class ExtendedProfileWidget extends Form
|
|||
*
|
||||
* @param string $name name of the section
|
||||
* @param array $section array of fields for the section
|
||||
* @throws Exception
|
||||
*/
|
||||
protected function showExtendedProfileSection($name, $section)
|
||||
{
|
||||
|
@ -112,7 +114,6 @@ class ExtendedProfileWidget extends Form
|
|||
$this->out->elementStart('table', array('class' => 'extended-profile'));
|
||||
|
||||
foreach ($section['fields'] as $fieldName => $field) {
|
||||
|
||||
switch ($fieldName) {
|
||||
case 'phone':
|
||||
case 'im':
|
||||
|
@ -133,6 +134,7 @@ class ExtendedProfileWidget extends Form
|
|||
*
|
||||
* @param string $name name of the field
|
||||
* @param array $field set of key/value pairs for the field
|
||||
* @throws Exception
|
||||
*/
|
||||
protected function showExtendedProfileField($name, $field)
|
||||
{
|
||||
|
@ -151,7 +153,8 @@ class ExtendedProfileWidget extends Form
|
|||
$this->out->elementEnd('tr');
|
||||
}
|
||||
|
||||
protected function showMultiple($name, $fields) {
|
||||
protected function showMultiple($name, $fields)
|
||||
{
|
||||
foreach ($fields as $field) {
|
||||
$this->showExtendedProfileField($name, $field);
|
||||
}
|
||||
|
@ -215,7 +218,8 @@ class ExtendedProfileWidget extends Form
|
|||
$id = "extprofile-$name-$index";
|
||||
$rel = $id . '-rel';
|
||||
$this->out->elementStart(
|
||||
'div', array(
|
||||
'div',
|
||||
array(
|
||||
'id' => $id . '-edit',
|
||||
'class' => 'im-item'
|
||||
)
|
||||
|
@ -252,7 +256,8 @@ class ExtendedProfileWidget extends Form
|
|||
$id = "extprofile-$name-$index";
|
||||
$rel = $id . '-rel';
|
||||
$this->out->elementStart(
|
||||
'div', array(
|
||||
'div',
|
||||
array(
|
||||
'id' => $id . '-edit',
|
||||
'class' => 'phone-item'
|
||||
)
|
||||
|
@ -287,7 +292,8 @@ class ExtendedProfileWidget extends Form
|
|||
$id = "extprofile-$name-$index";
|
||||
$rel = $id . '-rel';
|
||||
$this->out->elementStart(
|
||||
'div', array(
|
||||
'div',
|
||||
array(
|
||||
'id' => $id . '-edit',
|
||||
'class' => 'website-item'
|
||||
)
|
||||
|
@ -332,7 +338,9 @@ class ExtendedProfileWidget extends Form
|
|||
$this->out->element(
|
||||
'div',
|
||||
array('class' => 'field date'),
|
||||
date('j M Y', strtotime($field['start'])
|
||||
date(
|
||||
'j M Y',
|
||||
strtotime($field['start'])
|
||||
)
|
||||
);
|
||||
// TRANS: Field label in extended profile (when did one end a position or education).
|
||||
|
@ -340,7 +348,9 @@ class ExtendedProfileWidget extends Form
|
|||
$this->out->element(
|
||||
'div',
|
||||
array('class' => 'field date'),
|
||||
date('j M Y', strtotime($field['end'])
|
||||
date(
|
||||
'j M Y',
|
||||
strtotime($field['end'])
|
||||
)
|
||||
);
|
||||
|
||||
|
@ -361,7 +371,8 @@ class ExtendedProfileWidget extends Form
|
|||
$index = isset($field['index']) ? $field['index'] : 0;
|
||||
$id = "extprofile-$name-$index";
|
||||
$this->out->elementStart(
|
||||
'div', array(
|
||||
'div',
|
||||
array(
|
||||
'id' => $id . '-edit',
|
||||
'class' => 'experience-item'
|
||||
)
|
||||
|
@ -426,7 +437,9 @@ class ExtendedProfileWidget extends Form
|
|||
$this->out->element(
|
||||
'div',
|
||||
array('class' => 'field date'),
|
||||
date('j M Y', strtotime($field['start'])
|
||||
date(
|
||||
'j M Y',
|
||||
strtotime($field['start'])
|
||||
)
|
||||
);
|
||||
// TRANS: Field label in extended profile (when did one end a position or education).
|
||||
|
@ -434,7 +447,9 @@ class ExtendedProfileWidget extends Form
|
|||
$this->out->element(
|
||||
'div',
|
||||
array('class' => 'field date'),
|
||||
date('j M Y', strtotime($field['end'])
|
||||
date(
|
||||
'j M Y',
|
||||
strtotime($field['end'])
|
||||
)
|
||||
);
|
||||
}
|
||||
|
@ -446,7 +461,8 @@ class ExtendedProfileWidget extends Form
|
|||
$index = isset($field['index']) ? $field['index'] : 0;
|
||||
$id = "extprofile-$name-$index";
|
||||
$this->out->elementStart(
|
||||
'div', array(
|
||||
'div',
|
||||
array(
|
||||
'id' => $id . '-edit',
|
||||
'class' => 'education-item'
|
||||
)
|
||||
|
@ -498,7 +514,7 @@ class ExtendedProfileWidget extends Form
|
|||
$this->out->elementEnd('div');
|
||||
}
|
||||
|
||||
function showMultiControls()
|
||||
public function showMultiControls()
|
||||
{
|
||||
$this->out->element(
|
||||
'a',
|
||||
|
@ -532,13 +548,17 @@ class ExtendedProfileWidget extends Form
|
|||
{
|
||||
$type = strval(@$field['type']);
|
||||
|
||||
switch($type)
|
||||
{
|
||||
switch ($type) {
|
||||
case '':
|
||||
case 'text':
|
||||
case 'textarea':
|
||||
case 'person':
|
||||
$this->out->text($this->ext->getTextValue($name));
|
||||
break;
|
||||
case 'custom-text':
|
||||
case 'custom-textarea':
|
||||
$this->out->text(isset($field['value']) ? $field['value'] : null);
|
||||
break;
|
||||
case 'date':
|
||||
$value = $this->ext->getDateValue($name);
|
||||
if (!empty($value)) {
|
||||
|
@ -549,9 +569,6 @@ class ExtendedProfileWidget extends Form
|
|||
);
|
||||
}
|
||||
break;
|
||||
case 'person':
|
||||
$this->out->text($this->ext->getTextValue($name));
|
||||
break;
|
||||
case 'tags':
|
||||
$this->out->text($this->ext->getTags());
|
||||
break;
|
||||
|
@ -580,6 +597,7 @@ class ExtendedProfileWidget extends Form
|
|||
*
|
||||
* @param string $name name fo the field
|
||||
* @param array $field array of key/value pairs for the field
|
||||
* @throws Exception
|
||||
*/
|
||||
protected function showEditableField($name, $field)
|
||||
{
|
||||
|
@ -593,8 +611,13 @@ class ExtendedProfileWidget extends Form
|
|||
switch ($type) {
|
||||
case '':
|
||||
case 'text':
|
||||
case 'person':
|
||||
$out->input($id, null, $this->ext->getTextValue($name));
|
||||
break;
|
||||
case 'custom-text':
|
||||
case 'custom-textarea':
|
||||
$out->input($id, null, isset($field['value']) ? $field['value'] : null);
|
||||
break;
|
||||
case 'date':
|
||||
$value = $this->ext->getDateValue($name);
|
||||
$out->input(
|
||||
|
@ -603,9 +626,6 @@ class ExtendedProfileWidget extends Form
|
|||
empty($value) ? null : date('j M Y', strtotime($value))
|
||||
);
|
||||
break;
|
||||
case 'person':
|
||||
$out->input($id, null, $this->ext->getTextValue($name));
|
||||
break;
|
||||
case 'textarea':
|
||||
$out->textarea($id, null, $this->ext->getTextValue($name));
|
||||
break;
|
||||
|
@ -637,8 +657,9 @@ class ExtendedProfileWidget extends Form
|
|||
* Action elements
|
||||
*
|
||||
* @return void
|
||||
* @throws Exception
|
||||
*/
|
||||
function formActions()
|
||||
public function formActions()
|
||||
{
|
||||
$this->out->submit(
|
||||
'save',
|
||||
|
@ -657,7 +678,7 @@ class ExtendedProfileWidget extends Form
|
|||
*
|
||||
* @return string ID of the form
|
||||
*/
|
||||
function id()
|
||||
public function id()
|
||||
{
|
||||
return 'profile-details-' . $this->profile->id;
|
||||
}
|
||||
|
@ -667,7 +688,7 @@ class ExtendedProfileWidget extends Form
|
|||
*
|
||||
* @return string of the form class
|
||||
*/
|
||||
function formClass()
|
||||
public function formClass()
|
||||
{
|
||||
return 'form_profile_details form_settings';
|
||||
}
|
||||
|
@ -677,7 +698,7 @@ class ExtendedProfileWidget extends Form
|
|||
*
|
||||
* @return string URL of the action
|
||||
*/
|
||||
function action()
|
||||
public function action()
|
||||
{
|
||||
return common_local_url('profiledetailsettings');
|
||||
}
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-14 14:51+0100\n"
|
||||
"POT-Creation-Date: 2019-08-14 15:06+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -17,247 +17,351 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#. TRANS: Plugin description.
|
||||
#: ExtendedProfilePlugin.php:42
|
||||
#. TRANS: Module description.
|
||||
#: ExtendedProfileModule.php:46
|
||||
msgid "UI extensions for additional profile fields."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Link text on user profile page leading to extended profile page.
|
||||
#: ExtendedProfilePlugin.php:89
|
||||
#: ExtendedProfileModule.php:100
|
||||
msgid "More details..."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Extended profile plugin menu item on user settings page.
|
||||
#: ExtendedProfileModule.php:119
|
||||
msgctxt "MENU"
|
||||
msgid "Full Profile"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Extended profile plugin tooltip for user settings menu item.
|
||||
#: ExtendedProfileModule.php:121
|
||||
msgid "Change your extended profile settings"
|
||||
msgstr ""
|
||||
|
||||
#: ExtendedProfileModule.php:206
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: ExtendedProfileModule.php:207
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label for extended profile properties.
|
||||
#: lib/extendedprofile.php:120 lib/extendedprofile.php:131
|
||||
#: lib/extendedprofile.php:123 lib/extendedprofile.php:134
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label for extended profile properties (Instant Messaging).
|
||||
#: lib/extendedprofile.php:153 lib/extendedprofile.php:160
|
||||
#: lib/extendedprofile.php:156 lib/extendedprofile.php:163
|
||||
msgid "IM"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label for extended profile properties.
|
||||
#: lib/extendedprofile.php:181 lib/extendedprofile.php:188
|
||||
#: lib/extendedprofile.php:184 lib/extendedprofile.php:191
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label for extended profile properties.
|
||||
#: lib/extendedprofile.php:212 lib/extendedprofile.php:224
|
||||
#: lib/extendedprofile.php:215 lib/extendedprofile.php:227
|
||||
msgid "Employer"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label for extended profile properties.
|
||||
#. TRANS: Field label in education area of extended profile.
|
||||
#. TRANS: Field label in education edit area of extended profile.
|
||||
#: lib/extendedprofile.php:251 lib/extendedprofile.php:264
|
||||
#: lib/extendedprofilewidget.php:415 lib/extendedprofilewidget.php:455
|
||||
#: lib/extendedprofile.php:254 lib/extendedprofile.php:267
|
||||
#: lib/extendedprofilewidget.php:426 lib/extendedprofilewidget.php:471
|
||||
msgid "Institution"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label for extended profile properties.
|
||||
#: lib/extendedprofile.php:289 lib/extendedprofile.php:338
|
||||
#: lib/extendedprofile.php:310 lib/extendedprofile.php:359
|
||||
msgid "Personal"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label for extended profile properties.
|
||||
#: lib/extendedprofile.php:293
|
||||
#: lib/extendedprofile.php:314
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label for extended profile properties.
|
||||
#: lib/extendedprofile.php:299
|
||||
#: lib/extendedprofile.php:320 actions/profilefieldsadminpanel.php:137
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label for extended profile properties.
|
||||
#: lib/extendedprofile.php:304
|
||||
#: lib/extendedprofile.php:325
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label for extended profile properties.
|
||||
#: lib/extendedprofile.php:310
|
||||
#: lib/extendedprofile.php:331
|
||||
msgid "Location"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label for extended profile properties.
|
||||
#: lib/extendedprofile.php:315
|
||||
#: lib/extendedprofile.php:336
|
||||
msgid "Bio"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label for extended profile properties.
|
||||
#: lib/extendedprofile.php:321
|
||||
#: lib/extendedprofile.php:342
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label for extended profile properties.
|
||||
#: lib/extendedprofile.php:329
|
||||
#: lib/extendedprofile.php:350
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label for extended profile properties.
|
||||
#: lib/extendedprofile.php:342
|
||||
#: lib/extendedprofile.php:363
|
||||
msgid "Birthday"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label for extended profile properties.
|
||||
#: lib/extendedprofile.php:348
|
||||
#: lib/extendedprofile.php:369
|
||||
msgid "Spouse's name"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label for extended profile properties.
|
||||
#: lib/extendedprofile.php:353
|
||||
#: lib/extendedprofile.php:374
|
||||
msgid "Kids' names"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label for extended profile properties.
|
||||
#: lib/extendedprofile.php:359
|
||||
#: lib/extendedprofile.php:380
|
||||
msgid "Work experience"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label for extended profile properties.
|
||||
#: lib/extendedprofile.php:366
|
||||
#: lib/extendedprofile.php:387
|
||||
msgid "Education"
|
||||
msgstr ""
|
||||
|
||||
#: lib/extendedprofile.php:393
|
||||
msgid "Extra fields"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Title for extended profile entry deletion dialog.
|
||||
#: lib/extendedprofilewidget.php:84
|
||||
#: lib/extendedprofilewidget.php:85
|
||||
msgid "Confirmation Required"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Confirmation text for extended profile entry deletion dialog.
|
||||
#: lib/extendedprofilewidget.php:87
|
||||
#: lib/extendedprofilewidget.php:88
|
||||
msgid "Really delete this entry?"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Value between parentheses (phone number, website, or IM address).
|
||||
#: lib/extendedprofilewidget.php:169 lib/extendedprofilewidget.php:182
|
||||
#: lib/extendedprofilewidget.php:206
|
||||
#: lib/extendedprofilewidget.php:172 lib/extendedprofilewidget.php:185
|
||||
#: lib/extendedprofilewidget.php:209
|
||||
#, php-format
|
||||
msgid "(%s)"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label in experience area of extended profile.
|
||||
#. TRANS: Field label in experience edit area of extended profile (which company does one work for).
|
||||
#: lib/extendedprofilewidget.php:325 lib/extendedprofilewidget.php:371
|
||||
#: lib/extendedprofilewidget.php:331 lib/extendedprofilewidget.php:382
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label in extended profile (when did one start a position or education).
|
||||
#: lib/extendedprofilewidget.php:331 lib/extendedprofilewidget.php:379
|
||||
#: lib/extendedprofilewidget.php:425 lib/extendedprofilewidget.php:480
|
||||
#: lib/extendedprofilewidget.php:337 lib/extendedprofilewidget.php:390
|
||||
#: lib/extendedprofilewidget.php:436 lib/extendedprofilewidget.php:496
|
||||
msgid "Start"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label in extended profile (when did one end a position or education).
|
||||
#: lib/extendedprofilewidget.php:339 lib/extendedprofilewidget.php:387
|
||||
#: lib/extendedprofilewidget.php:433 lib/extendedprofilewidget.php:489
|
||||
#: lib/extendedprofilewidget.php:347 lib/extendedprofilewidget.php:398
|
||||
#: lib/extendedprofilewidget.php:446 lib/extendedprofilewidget.php:505
|
||||
msgid "End"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field value in experience area of extended profile (one still holds a position).
|
||||
#: lib/extendedprofilewidget.php:352
|
||||
#: lib/extendedprofilewidget.php:362
|
||||
msgid "(Current)"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Checkbox label in experience edit area of extended profile (one still works at a company).
|
||||
#: lib/extendedprofilewidget.php:402
|
||||
#: lib/extendedprofilewidget.php:413
|
||||
msgid "Current"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label in extended profile for specifying an academic degree.
|
||||
#: lib/extendedprofilewidget.php:419 lib/extendedprofilewidget.php:463
|
||||
#: lib/extendedprofilewidget.php:430 lib/extendedprofilewidget.php:479
|
||||
msgid "Degree"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label in education area of extended profile.
|
||||
#. TRANS: Field label in education edit area of extended profile.
|
||||
#: lib/extendedprofilewidget.php:422 lib/extendedprofilewidget.php:471
|
||||
#: lib/extendedprofilewidget.php:433 lib/extendedprofilewidget.php:487
|
||||
#: actions/profilefieldsadminpanel.php:153
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Link description in extended profile page to add another profile element.
|
||||
#: lib/extendedprofilewidget.php:521
|
||||
#: lib/extendedprofilewidget.php:537
|
||||
msgid "Add another item"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label for undefined field in extended profile.
|
||||
#: lib/extendedprofilewidget.php:632
|
||||
#: lib/extendedprofilewidget.php:652
|
||||
#, php-format
|
||||
msgid "TYPE: %s"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Button text for saving extended profile properties.
|
||||
#: lib/extendedprofilewidget.php:646
|
||||
#: lib/extendedprofilewidget.php:667
|
||||
msgctxt "BUTTON"
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: .
|
||||
#. TRANS: Button title for saving extended profile properties.
|
||||
#: lib/extendedprofilewidget.php:651
|
||||
#: lib/extendedprofilewidget.php:672
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Title for extended profile settings.
|
||||
#: actions/profiledetailsettings.php:27
|
||||
#: actions/profiledetailsettings.php:29
|
||||
msgid "Extended profile settings"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Message given submitting a form with an unknown action.
|
||||
#: actions/profiledetailsettings.php:49
|
||||
#: actions/profiledetailsettings.php:53
|
||||
msgid "Unexpected form submission."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Success message after saving extended profile details.
|
||||
#: actions/profiledetailsettings.php:97
|
||||
#: actions/profiledetailsettings.php:102
|
||||
msgid "Details saved."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception thrown when no date was entered in a required date field.
|
||||
#. TRANS: %s is the field name.
|
||||
#: actions/profiledetailsettings.php:108
|
||||
#: actions/profiledetailsettings.php:112
|
||||
#, php-format
|
||||
msgid "You must supply a date for \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception thrown on incorrect data input.
|
||||
#. TRANS: %1$s is a field name, %2$s is the incorrect input.
|
||||
#: actions/profiledetailsettings.php:120
|
||||
#: actions/profiledetailsettings.php:124
|
||||
#, php-format
|
||||
msgid "Invalid date entered for \"%1$s\": %2$s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception thrown when entering an invalid URL.
|
||||
#. TRANS: %s is the invalid URL.
|
||||
#: actions/profiledetailsettings.php:231
|
||||
#: actions/profiledetailsettings.php:241
|
||||
#, php-format
|
||||
msgid "Invalid URL: %s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Server error displayed when a field could not be saved in the database.
|
||||
#: actions/profiledetailsettings.php:468 actions/profiledetailsettings.php:481
|
||||
#: actions/profiledetailsettings.php:484 actions/profiledetailsettings.php:497
|
||||
msgid "Could not save profile details."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Validation error in form for profile settings.
|
||||
#. TRANS: %s is an invalid tag.
|
||||
#: actions/profiledetailsettings.php:523
|
||||
#: actions/profiledetailsettings.php:539
|
||||
#, php-format
|
||||
msgid "Invalid tag: \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Server error thrown when user profile settings could not be saved.
|
||||
#: actions/profiledetailsettings.php:563
|
||||
#: actions/profiledetailsettings.php:578
|
||||
msgid "Could not save profile."
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilefieldsadminpanel.php:34
|
||||
msgid "Profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilefieldsadminpanel.php:39
|
||||
msgid "GNU Social custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilefieldsadminpanel.php:55
|
||||
msgid ""
|
||||
"Internal system name must be unique and consist of only alphanumeric "
|
||||
"characters!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilefieldsadminpanel.php:65
|
||||
msgid "There was an error with the field data."
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilefieldsadminpanel.php:97
|
||||
msgid "New Profile Field"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilefieldsadminpanel.php:106
|
||||
msgid "Edit Profile Field"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilefieldsadminpanel.php:110
|
||||
msgid "Existing Custom Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilefieldsadminpanel.php:139
|
||||
msgid "The title of the field"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilefieldsadminpanel.php:145
|
||||
msgid "Internal name"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilefieldsadminpanel.php:147
|
||||
msgid ""
|
||||
"The alphanumeric name used internally for this field. Also the key used for "
|
||||
"federation (e.g. ActivityPub and OStatus) user info."
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilefieldsadminpanel.php:155
|
||||
msgid "An optional more detailed description of the field"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilefieldsadminpanel.php:161
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilefieldsadminpanel.php:162
|
||||
msgid "Text"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilefieldsadminpanel.php:163
|
||||
msgid "String"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilefieldsadminpanel.php:164
|
||||
msgid "The type of the datafield"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilefieldsadminpanel.php:181
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilefieldsadminpanel.php:181
|
||||
msgid "Save new field"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Link title for link on user profile.
|
||||
#: actions/profiledetail.php:49
|
||||
#: actions/profiledetail.php:54
|
||||
msgid "Edit extended profile settings"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Link text for link on user profile.
|
||||
#: actions/profiledetail.php:51
|
||||
#: actions/profiledetail.php:56
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:75
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:73
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "Stoor"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "احفظ"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr "احفظ التفاصيل"
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "أرسل"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr ""
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "Захаваць"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "Запазване"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr ""
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "Enrollañ"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr "Enrollañ ar munudoù"
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "Desa"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr "Desa els detalls"
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "Uložit"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "Gem"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -8,7 +8,7 @@ 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 14:33+0000\n"
|
||||
"PO-Revision-Date: 2019-08-10 01:46+0100\n"
|
||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
||||
"Language-Team: German (http://www.transifex.com/gnu-social/gnu-social/language/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -287,3 +287,24 @@ msgstr "Speichern"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr "Informationen speichern"
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr "Biografie von %s"
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr "Profilfelder"
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr "Fehler beim Erstellen eines neuen Feldes."
|
||||
|
|
|
@ -1,227 +0,0 @@
|
|||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2012 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Exported from translatewiki.net
|
||||
# Author: Erdemaslancan
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - ExtendedProfile\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-06-30 11:07+0000\n"
|
||||
"PO-Revision-Date: 2012-06-30 11:08:31+0000\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-06-05 21:50:06+0000\n"
|
||||
"X-Translation-Project: translatewiki.net <https://translatewiki.net>\n"
|
||||
"X-Generator: MediaWiki 1.20alpha (233fc08); Translate 2012-06-21\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. TRANS: Title for extended profile settings.
|
||||
msgid "Extended profile settings"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Usage instructions for profile settings.
|
||||
msgid ""
|
||||
"You can update your personal profile info here so people know more about you."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client error displayed when the session token does not match or is not given.
|
||||
msgid "There was a problem with your session token. Try again, please."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Message given submitting a form with an unknown action.
|
||||
msgid "Unexpected form submission."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Success message after saving extended profile details.
|
||||
msgid "Details saved."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception thrown when no date was entered in a required date field.
|
||||
#. TRANS: %s is the field name.
|
||||
#, php-format
|
||||
msgid "You must supply a date for \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception thrown on incorrect data input.
|
||||
#. TRANS: %1$s is a field name, %2$s is the incorrect input.
|
||||
#, php-format
|
||||
msgid "Invalid date entered for \"%1$s\": %2$s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception thrown when entering an invalid URL.
|
||||
#. TRANS: %s is the invalid URL.
|
||||
#, php-format
|
||||
msgid "Invalid URL: %s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Server error displayed when a field could not be saved in the database.
|
||||
msgid "Could not save profile details."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Validation error in form for profile settings.
|
||||
#. TRANS: %s is an invalid tag.
|
||||
#, php-format
|
||||
msgid "Invalid tag: \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Server error thrown when user profile settings could not be saved.
|
||||
msgid "Could not save profile."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Server error thrown when user profile settings tags could not be saved.
|
||||
msgid "Could not save tags."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Link title for link on user profile.
|
||||
msgid "Edit extended profile settings"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Link text for link on user profile.
|
||||
msgid "Edit"
|
||||
msgstr "Bıvurne"
|
||||
|
||||
#. TRANS: Plugin description.
|
||||
msgid "UI extensions for additional profile fields."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Link text on user profile page leading to extended profile page.
|
||||
msgid "More details..."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Title for extended profile entry deletion dialog.
|
||||
msgid "Confirmation Required"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Confirmation text for extended profile entry deletion dialog.
|
||||
msgid "Really delete this entry?"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Value between parentheses (phone number, website, or IM address).
|
||||
#, php-format
|
||||
msgid "(%s)"
|
||||
msgstr "(%s)"
|
||||
|
||||
#. TRANS: Field label in experience area of extended profile.
|
||||
#. TRANS: Field label in experience edit area of extended profile (which company does one work for).
|
||||
msgid "Company"
|
||||
msgstr "Şirket"
|
||||
|
||||
#. TRANS: Field label in extended profile (when did one start a position or education).
|
||||
msgid "Start"
|
||||
msgstr "Dest pêkey"
|
||||
|
||||
#. TRANS: Field label in extended profile (when did one end a position or education).
|
||||
msgid "End"
|
||||
msgstr "Qedya"
|
||||
|
||||
#. TRANS: Field value in experience area of extended profile (one still holds a position).
|
||||
msgid "(Current)"
|
||||
msgstr "(Nıkayên)"
|
||||
|
||||
#. TRANS: Checkbox label in experience edit area of extended profile (one still works at a company).
|
||||
msgid "Current"
|
||||
msgstr "Nıkayên"
|
||||
|
||||
#. TRANS: Field label in education area of extended profile.
|
||||
#. TRANS: Field label in education edit area of extended profile.
|
||||
#. TRANS: Field label for extended profile properties.
|
||||
msgid "Institution"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label in extended profile for specifying an academic degree.
|
||||
msgid "Degree"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label in education area of extended profile.
|
||||
#. TRANS: Field label in education edit area of extended profile.
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Link description in extended profile page to add another profile element.
|
||||
msgid "Add another item"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label for undefined field in extended profile.
|
||||
#, php-format
|
||||
msgid "TYPE: %s"
|
||||
msgstr "Babet: %s"
|
||||
|
||||
#. TRANS: Button text for saving extended profile properties.
|
||||
msgctxt "BUTTON"
|
||||
msgid "Save"
|
||||
msgstr "Star ke"
|
||||
|
||||
#. TRANS: .
|
||||
#. TRANS: Button title for saving extended profile properties.
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label for extended profile properties.
|
||||
msgid "Phone"
|
||||
msgstr "Telefun"
|
||||
|
||||
#. TRANS: Field label for extended profile properties (Instant Messaging).
|
||||
msgid "IM"
|
||||
msgstr "IM"
|
||||
|
||||
#. TRANS: Field label for extended profile properties.
|
||||
msgid "Website"
|
||||
msgstr "Websita"
|
||||
|
||||
#. TRANS: Field label for extended profile properties.
|
||||
msgid "Employer"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label for extended profile properties.
|
||||
msgid "Personal"
|
||||
msgstr "Personel"
|
||||
|
||||
#. TRANS: Field label for extended profile properties.
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label for extended profile properties.
|
||||
msgid "Title"
|
||||
msgstr "Sername"
|
||||
|
||||
#. TRANS: Field label for extended profile properties.
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label for extended profile properties.
|
||||
msgid "Location"
|
||||
msgstr "Lokasyon"
|
||||
|
||||
#. TRANS: Field label for extended profile properties.
|
||||
msgid "Bio"
|
||||
msgstr "Bio"
|
||||
|
||||
#. TRANS: Field label for extended profile properties.
|
||||
msgid "Tags"
|
||||
msgstr "Etiketi"
|
||||
|
||||
#. TRANS: Field label for extended profile properties.
|
||||
msgid "Contact"
|
||||
msgstr "İrtibat"
|
||||
|
||||
#. TRANS: Field label for extended profile properties.
|
||||
msgid "Birthday"
|
||||
msgstr "Rocbiyayış"
|
||||
|
||||
#. TRANS: Field label for extended profile properties.
|
||||
msgid "Spouse's name"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label for extended profile properties.
|
||||
msgid "Kids' names"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label for extended profile properties.
|
||||
msgid "Work experience"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label for extended profile properties.
|
||||
msgid "Education"
|
||||
msgstr "Terbiyet"
|
|
@ -287,3 +287,24 @@ msgstr "Αποθήκευση"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -9,7 +9,7 @@ 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 15:41+0000\n"
|
||||
"PO-Revision-Date: 2019-08-10 01:49+0100\n"
|
||||
"Last-Translator: Luke Hollins <luke@farcry.ca>\n"
|
||||
"Language-Team: English (United Kingdom) (http://www.transifex.com/gnu-social/gnu-social/language/en_GB/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -288,3 +288,24 @@ msgstr "Save"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr "Save details"
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr "%s's Bio."
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr "Profile Fields"
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr "Custom profile fields"
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr "Error creating new response."
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr "Error creating new field."
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "Konservi"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -9,7 +9,7 @@ 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-28 16:21+0000\n"
|
||||
"PO-Revision-Date: 2019-08-10 01:48+0100\n"
|
||||
"Last-Translator: Juan Riquelme González <soulchainer@gmail.com>\n"
|
||||
"Language-Team: Spanish (http://www.transifex.com/gnu-social/gnu-social/language/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -288,3 +288,24 @@ msgstr "Guardar"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr "Guardar los detalles"
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr "Biografía de %s. "
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr "Campos de perfil "
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr "Campos de perfil personalizados"
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr "Error creando una nueva respuesta. "
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr "Error creando un nuevo campo. "
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "Gorde"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr "Xehetasunak gorde"
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "ذخیرهکردن"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "Tallenna"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -8,7 +8,7 @@ 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"
|
||||
"PO-Revision-Date: 2019-08-10 01:49+0100\n"
|
||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
||||
"Language-Team: French (http://www.transifex.com/gnu-social/gnu-social/language/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -287,3 +287,24 @@ msgstr "Enregistrer"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr "Enregistrer les détails"
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr "%s's Bio."
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -8,7 +8,7 @@ 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:15+0000\n"
|
||||
"PO-Revision-Date: 2019-08-10 01:49+0100\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Friulian (http://www.transifex.com/gnu-social/gnu-social/language/fur/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -287,3 +287,24 @@ msgstr "Salve"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr "%s's Bio."
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "Gardar"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr "Gardar os detalles"
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "שמור"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "Składować"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "Mentés"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr ""
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "Salveguardar"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr "Salveguardar detalios"
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -9,7 +9,7 @@ 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:30+0000\n"
|
||||
"PO-Revision-Date: 2019-08-10 01:46+0100\n"
|
||||
"Last-Translator: zk <zamani.karmana@gmail.com>\n"
|
||||
"Language-Team: Indonesian (http://www.transifex.com/gnu-social/gnu-social/language/id/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -288,3 +288,24 @@ msgstr "Simpan"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr "Bio %s."
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -9,7 +9,7 @@ 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-17 14:49+0000\n"
|
||||
"PO-Revision-Date: 2019-08-10 01:47+0100\n"
|
||||
"Last-Translator: Ciencisto Dementa <maliktunga@users.noreply.github.com>\n"
|
||||
"Language-Team: Ido (http://www.transifex.com/gnu-social/gnu-social/language/io/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -288,3 +288,24 @@ msgstr "Konservar"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr "Konservar la detali"
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr "La biografio di %s."
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr "Profilo-feldi"
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr "Personalizita profilo-feldi"
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr "Eroro dum la kreo dil nova respondo."
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr "Eroro dum la kreo dil nova feldo."
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "Vista"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "Salva"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr "Salvare i dettagli"
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "保存"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr "詳細を保存"
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "შენახვა"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "저장"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr ""
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "Späicheren"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "Išsaugoti"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr ""
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "Tehirizina"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "Зачувај"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr "Зачувај податоци"
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "സേവ് ചെയ്യുക"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "Simpan"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "သိမ်းရန်"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "Lagre"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr ""
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "Opslaan"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr "Gegevens opslaan"
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "Lagra"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "Zapisz"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr "Zapisz szczegóły"
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "Gravar"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -8,7 +8,7 @@ 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:15+0000\n"
|
||||
"PO-Revision-Date: 2019-08-10 01:47+0100\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/gnu-social/gnu-social/language/pt_BR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -287,3 +287,24 @@ msgstr "Salvar"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr "Bio de %s."
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr "Campos do Perfil"
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr "Campos de perfil personalizados"
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr "Erro ao criar nova resposta."
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr "Erro ao criar novo campo."
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr ""
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "Сохранить"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr ""
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "Сачувај"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -8,7 +8,7 @@ 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 01:19+0000\n"
|
||||
"PO-Revision-Date: 2019-08-10 01:48+0100\n"
|
||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
||||
"Language-Team: Swedish (http://www.transifex.com/gnu-social/gnu-social/language/sv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -287,3 +287,24 @@ msgstr "Spara"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr "Spara detaljer"
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr "%s's Bio."
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr "Profilfält"
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr "Anpassade profil-fält"
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr "Fel när ett nytt svar skulle skapas."
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr "Fel vid skapande av nytt fält."
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr ""
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "భద్రపరచు"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr "వివరాలను భద్రపరచు"
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "Sagipin"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr "Sagipin ang mga detalye"
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -8,7 +8,7 @@ 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:15+0000\n"
|
||||
"PO-Revision-Date: 2019-08-10 01:47+0100\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Turkish (http://www.transifex.com/gnu-social/gnu-social/language/tr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -287,3 +287,24 @@ msgstr "Kaydet"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr "%s kullanıcısının profili"
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr "Profil Alanları"
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr "Özel profil alanları"
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr "Yeni yanıt oluşturulurken bir hata oluştu."
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr "Yeni alan oluşturulurken bir hata oluştu."
|
||||
|
|
|
@ -8,7 +8,7 @@ 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 14:33+0000\n"
|
||||
"PO-Revision-Date: 2019-08-10 01:48+0100\n"
|
||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
||||
"Language-Team: Ukrainian (http://www.transifex.com/gnu-social/gnu-social/language/uk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -287,3 +287,24 @@ msgstr "Зберегти"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr "Зберегти деталі"
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr "Біографія %s"
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr "Поля профілю"
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr "Власні поля профілю"
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr "Помилка при створенні нової відповіді."
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr "Помилка створення нового поля."
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "تبدیلیاں محفوظ کریں"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "Lưu"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr ""
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr "保存"
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -287,3 +287,24 @@ msgstr ""
|
|||
#: lib/extendedprofilewidget.php:652
|
||||
msgid "Save details"
|
||||
msgstr ""
|
||||
|
||||
#: actions/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsModule.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
|
|
@ -1,135 +0,0 @@
|
|||
<?php
|
||||
// This file is part of GNU social - https://www.gnu.org/software/social
|
||||
//
|
||||
// GNU social is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU Affero General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// GNU social is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU Affero General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU Affero General Public License
|
||||
// along with GNU social. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* Allows administrators to define additional profile fields for the users of a GNU social installation.
|
||||
*
|
||||
* @category Widget
|
||||
* @package GNU social
|
||||
* @author Max Shinn <trombonechamp@gmail.com>
|
||||
* @author Diogo Cordeiro <diogo@fc.up.pt>
|
||||
* @copyright 2011-2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
||||
*/
|
||||
|
||||
defined('GNUSOCIAL') || die();
|
||||
|
||||
include_once __DIR__ . '/lib/profiletools.php';
|
||||
|
||||
class GNUsocialProfileExtensionsPlugin extends Plugin
|
||||
{
|
||||
public function onCheckSchema(): bool
|
||||
{
|
||||
$schema = Schema::get();
|
||||
$schema->ensureTable('gnusocialprofileextensionfield', GNUsocialProfileExtensionField::schemaDef());
|
||||
$schema->ensureTable('gnusocialprofileextensionresponse', GNUsocialProfileExtensionResponse::schemaDef());
|
||||
return true;
|
||||
}
|
||||
|
||||
public function onRouterInitialized($m): bool
|
||||
{
|
||||
$m->connect('admin/profilefields', ['action' => 'profilefieldsAdminPanel']);
|
||||
return true;
|
||||
}
|
||||
|
||||
public function onEndProfileFormData($action): bool
|
||||
{
|
||||
$fields = GNUsocialProfileExtensionField::allFields();
|
||||
$user = common_current_user();
|
||||
$profile = $user->getProfile();
|
||||
gnusocial_profile_merge($profile);
|
||||
foreach ($fields as $field) {
|
||||
$action->elementStart('li');
|
||||
$fieldname = $field->systemname;
|
||||
if ($field->type == 'str') {
|
||||
$action->input(
|
||||
$fieldname,
|
||||
$field->title,
|
||||
($action->arg($fieldname)) ? $action->arg($fieldname) : $profile->$fieldname,
|
||||
$field->description
|
||||
);
|
||||
} elseif ($field->type == 'text') {
|
||||
$action->textarea(
|
||||
$fieldname,
|
||||
$field->title,
|
||||
($action->arg($fieldname)) ? $action->arg($fieldname) : $profile->$fieldname,
|
||||
$field->description
|
||||
);
|
||||
}
|
||||
$action->elementEnd('li');
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
public function onEndProfileSaveForm($action): bool
|
||||
{
|
||||
$fields = GNUsocialProfileExtensionField::allFields();
|
||||
$user = common_current_user();
|
||||
$profile = $user->getProfile();
|
||||
foreach ($fields as $field) {
|
||||
$val = $action->trimmed($field->systemname);
|
||||
|
||||
$response = new GNUsocialProfileExtensionResponse();
|
||||
$response->profile_id = $profile->id;
|
||||
$response->extension_id = $field->id;
|
||||
|
||||
if ($response->find()) {
|
||||
$response->fetch();
|
||||
$response->value = $val;
|
||||
if ($response->validate()) {
|
||||
if (empty($val)) {
|
||||
$response->delete();
|
||||
} else {
|
||||
$response->update();
|
||||
}
|
||||
}
|
||||
} else {
|
||||
$response->value = $val;
|
||||
$response->insert();
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
public function onEndShowStyles($action): bool
|
||||
{
|
||||
$action->cssLink('/plugins/GNUsocialProfileExtensions/res/style.css');
|
||||
return true;
|
||||
}
|
||||
|
||||
public function onEndShowScripts($action): bool
|
||||
{
|
||||
$action->script('plugins/GNUsocialProfileExtensions/js/profile.js');
|
||||
return true;
|
||||
}
|
||||
|
||||
public function onEndAdminPanelNav($nav): bool
|
||||
{
|
||||
if (AdminPanelAction::canAdmin('profilefields')) {
|
||||
$action_name = $nav->action->trimmed('action');
|
||||
|
||||
$nav->out->menuItem(
|
||||
'/admin/profilefields',
|
||||
_m('Profile Fields'),
|
||||
_m('Custom profile fields'),
|
||||
$action_name == 'profilefieldsadminpanel',
|
||||
'nav_profilefields_admin_panel'
|
||||
);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
|
@ -1,15 +0,0 @@
|
|||
GNU social Profile Extensions
|
||||
=============================
|
||||
|
||||
Allows administrators to define additional profile fields for the
|
||||
users of a GNU social installation.
|
||||
|
||||
|
||||
Installation
|
||||
------------
|
||||
|
||||
To enable, add the following lines to your config.php file:
|
||||
|
||||
addPlugin('GNUsocialProfileExtensions');
|
||||
$config['admin']['panels'][] = 'profilefields';
|
||||
|
|
@ -1,114 +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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-14 14:54+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: GNUsocialProfileExtensionsPlugin.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsPlugin.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilefieldsadminpanel.php:34
|
||||
msgid "Profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilefieldsadminpanel.php:39
|
||||
msgid "GNU Social custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilefieldsadminpanel.php:55
|
||||
msgid ""
|
||||
"Internal system name must be unique and consist of only alphanumeric "
|
||||
"characters!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilefieldsadminpanel.php:65
|
||||
msgid "There was an error with the field data."
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilefieldsadminpanel.php:97
|
||||
msgid "New Profile Field"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilefieldsadminpanel.php:106
|
||||
msgid "Edit Profile Field"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilefieldsadminpanel.php:110
|
||||
msgid "Existing Custom Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilefieldsadminpanel.php:137
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilefieldsadminpanel.php:139
|
||||
msgid "The title of the field"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilefieldsadminpanel.php:145
|
||||
msgid "Internal name"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilefieldsadminpanel.php:147
|
||||
msgid ""
|
||||
"The alphanumeric name used internally for this field. Also the key used in "
|
||||
"OStatus user info. (optional)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilefieldsadminpanel.php:153
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilefieldsadminpanel.php:155
|
||||
msgid "An optional more detailed description of the field"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilefieldsadminpanel.php:161
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilefieldsadminpanel.php:162
|
||||
msgid "Text"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilefieldsadminpanel.php:163
|
||||
msgid "String"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilefieldsadminpanel.php:164
|
||||
msgid "The type of the datafield"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilefieldsadminpanel.php:181
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilefieldsadminpanel.php:181
|
||||
msgid "Save new field"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:75
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:73
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
|
@ -1,39 +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 <EMAIL@ADDRESS>\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/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsPlugin.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsPlugin.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
|
@ -1,39 +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 <EMAIL@ADDRESS>\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/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsPlugin.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsPlugin.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
|
@ -1,39 +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 <EMAIL@ADDRESS>\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/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsPlugin.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsPlugin.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
|
@ -1,39 +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 <EMAIL@ADDRESS>\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/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsPlugin.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsPlugin.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
|
@ -1,39 +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 <EMAIL@ADDRESS>\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/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsPlugin.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsPlugin.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
|
@ -1,39 +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 <EMAIL@ADDRESS>\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/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsPlugin.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsPlugin.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
|
@ -1,39 +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 <EMAIL@ADDRESS>\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/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsPlugin.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsPlugin.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
|
@ -1,39 +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 <EMAIL@ADDRESS>\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/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsPlugin.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsPlugin.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
|
@ -1,39 +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 <EMAIL@ADDRESS>\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/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsPlugin.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsPlugin.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
|
@ -1,39 +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 <EMAIL@ADDRESS>\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/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsPlugin.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsPlugin.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
|
@ -1,39 +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 <EMAIL@ADDRESS>\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/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsPlugin.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsPlugin.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
|
@ -1,40 +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/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr "Biografie von %s"
|
||||
|
||||
#: GNUsocialProfileExtensionsPlugin.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr "Profilfelder"
|
||||
|
||||
#: GNUsocialProfileExtensionsPlugin.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr "Fehler beim Erstellen eines neuen Feldes."
|
|
@ -1,39 +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 <EMAIL@ADDRESS>\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/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsPlugin.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsPlugin.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
|
@ -1,40 +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 <luke@farcry.ca>, 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 <luke@farcry.ca>\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/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr "%s's Bio."
|
||||
|
||||
#: GNUsocialProfileExtensionsPlugin.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr "Profile Fields"
|
||||
|
||||
#: GNUsocialProfileExtensionsPlugin.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr "Custom profile fields"
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr "Error creating new response."
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr "Error creating new field."
|
|
@ -1,39 +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 <EMAIL@ADDRESS>\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/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsPlugin.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsPlugin.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
|
@ -1,41 +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 <jastertdc@gmail.com>, 2015
|
||||
# Juan Riquelme González <soulchainer@gmail.com>, 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 <soulchainer@gmail.com>\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/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr "Biografía de %s. "
|
||||
|
||||
#: GNUsocialProfileExtensionsPlugin.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr "Campos de perfil "
|
||||
|
||||
#: GNUsocialProfileExtensionsPlugin.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr "Campos de perfil personalizados"
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr "Error creando una nueva respuesta. "
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr "Error creando un nuevo campo. "
|
|
@ -1,39 +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 <EMAIL@ADDRESS>\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/bio.php:62
|
||||
#, php-format
|
||||
msgid "%s's Bio."
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsPlugin.php:124
|
||||
msgid "Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: GNUsocialProfileExtensionsPlugin.php:125
|
||||
msgid "Custom profile fields"
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionResponse.php:78
|
||||
msgid "Error creating new response."
|
||||
msgstr ""
|
||||
|
||||
#: classes/GNUsocialProfileExtensionField.php:79
|
||||
msgid "Error creating new field."
|
||||
msgstr ""
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user