Merge pull request #10027 from MrPetovan/task/9950-improve-maintenance-page
Improve maintenance page
This commit is contained in:
commit
5e98a38ac9
5 changed files with 6132 additions and 6111 deletions
|
|
@ -24,6 +24,8 @@ namespace Friendica;
|
|||
use Exception;
|
||||
use Friendica\App\Arguments;
|
||||
use Friendica\App\BaseURL;
|
||||
use Friendica\App\Module;
|
||||
use Friendica\Module\Maintenance;
|
||||
use Friendica\Security\Authentication;
|
||||
use Friendica\Core\Config\Cache;
|
||||
use Friendica\Core\Config\IConfig;
|
||||
|
|
@ -499,8 +501,6 @@ class App
|
|||
// but we need "view" module for stylesheet
|
||||
if ($this->mode->isInstall() && $moduleName !== 'install') {
|
||||
$this->baseURL->redirect('install');
|
||||
} elseif (!$this->mode->isInstall() && !$this->mode->has(App\Mode::MAINTENANCEDISABLED) && $moduleName !== 'maintenance') {
|
||||
$this->baseURL->redirect('maintenance');
|
||||
} else {
|
||||
$this->checkURL();
|
||||
Core\Update::check($this->getBasePath(), false, $this->mode);
|
||||
|
|
@ -544,9 +544,13 @@ class App
|
|||
// Initialize module that can set the current theme in the init() method, either directly or via App->profile_uid
|
||||
$page['page_title'] = $moduleName;
|
||||
|
||||
if (!$this->mode->isInstall() && !$this->mode->has(App\Mode::MAINTENANCEDISABLED)) {
|
||||
$module = new Module('maintenance', Maintenance::class);
|
||||
} else {
|
||||
// determine the module class and save it to the module instance
|
||||
// @todo there's an implicit dependency due SESSION::start(), so it has to be called here (yet)
|
||||
$module = $module->determineClass($this->args, $router, $this->config);
|
||||
}
|
||||
|
||||
// Let the module run it's internal process (init, get, post, ...)
|
||||
$module->run($this->l10n, $this->baseURL, $this->logger, $this->profiler, $_SERVER, $_POST);
|
||||
|
|
|
|||
|
|
@ -22,6 +22,7 @@
|
|||
namespace Friendica\Module;
|
||||
|
||||
use Friendica\BaseModule;
|
||||
use Friendica\Core\Renderer;
|
||||
use Friendica\Core\System;
|
||||
use Friendica\DI;
|
||||
use Friendica\Network\HTTPException;
|
||||
|
|
@ -43,7 +44,17 @@ class Maintenance extends BaseModule
|
|||
}
|
||||
|
||||
$exception = new HTTPException\ServiceUnavailableException($reason);
|
||||
$exception->httpdesc = DI::l10n()->t('System down for maintenance');
|
||||
throw $exception;
|
||||
|
||||
header($_SERVER["SERVER_PROTOCOL"] . ' ' . $exception->getCode() . ' ' . DI::l10n()->t('System down for maintenance'));
|
||||
|
||||
$tpl = Renderer::getMarkupTemplate('exception.tpl');
|
||||
|
||||
return Renderer::replaceMacros($tpl, [
|
||||
'$title' => DI::l10n()->t('System down for maintenance'),
|
||||
'$message' => DI::l10n()->t('This Friendica node is currently in maintenance mode, either automatically because it is self-updating or manually by the node administrator. This condition should be temporary, please come back in a few minutes.'),
|
||||
'$thrown' => $reason,
|
||||
'$stack_trace' => '',
|
||||
'$trace' => '',
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -303,7 +303,6 @@ return [
|
|||
'/login' => [Module\Security\Login::class, [R::GET, R::POST]],
|
||||
'/logout' => [Module\Security\Logout::class, [R::GET, R::POST]],
|
||||
'/magic' => [Module\Magic::class, [R::GET]],
|
||||
'/maintenance' => [Module\Maintenance::class, [R::GET]],
|
||||
'/manifest' => [Module\Manifest::class, [R::GET]],
|
||||
'/friendica.webmanifest' => [Module\Manifest::class, [R::GET]],
|
||||
'/modexp/{nick}' => [Module\PublicRSAKey::class, [R::GET]],
|
||||
|
|
|
|||
12211
view/lang/C/messages.po
12211
view/lang/C/messages.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: 2021.03-rc\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-03-08 21:24+0000\n"
|
||||
"POT-Creation-Date: 2021-03-10 09:43-0500\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -18,440 +18,35 @@ msgstr ""
|
|||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
|
||||
#: view/theme/duepuntozero/config.php:52
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/duepuntozero/config.php:53
|
||||
msgid "greenzero"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/duepuntozero/config.php:54
|
||||
msgid "purplezero"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/duepuntozero/config.php:55
|
||||
msgid "easterbunny"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/duepuntozero/config.php:56
|
||||
msgid "darkzero"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/duepuntozero/config.php:57
|
||||
msgid "comix"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/duepuntozero/config.php:58
|
||||
msgid "slackr"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/duepuntozero/config.php:69 view/theme/quattro/config.php:71
|
||||
#: view/theme/vier/config.php:119 view/theme/frio/config.php:160
|
||||
#: mod/message.php:205 mod/message.php:373 mod/events.php:575
|
||||
#: mod/photos.php:951 mod/photos.php:1054 mod/photos.php:1339
|
||||
#: mod/photos.php:1380 mod/photos.php:1437 mod/photos.php:1512
|
||||
#: src/Object/Post.php:954 src/Module/Debug/Localtime.php:64
|
||||
#: src/Module/Debug/Babel.php:315 src/Module/Debug/WebFinger.php:53
|
||||
#: src/Module/Debug/ActivityPubConversion.php:141 src/Module/Debug/Probe.php:55
|
||||
#: src/Module/Profile/Profile.php:243 src/Module/FriendSuggest.php:129
|
||||
#: src/Module/Install.php:234 src/Module/Install.php:276
|
||||
#: src/Module/Install.php:313 src/Module/Delegation.php:152
|
||||
#: src/Module/Contact.php:604 src/Module/Invite.php:175
|
||||
#: src/Module/Admin/Item/Source.php:65 src/Module/Item/Compose.php:144
|
||||
#: src/Module/Contact/Poke.php:155 src/Module/Contact/Advanced.php:132
|
||||
#: src/Module/Settings/Profile/Index.php:237
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/duepuntozero/config.php:70 view/theme/quattro/config.php:72
|
||||
#: view/theme/vier/config.php:120 view/theme/frio/config.php:161
|
||||
#: src/Module/Settings/Display.php:193
|
||||
msgid "Theme settings"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/duepuntozero/config.php:71
|
||||
msgid "Variations"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/quattro/config.php:73
|
||||
msgid "Alignment"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/quattro/config.php:73
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/quattro/config.php:73
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/quattro/config.php:74
|
||||
msgid "Color scheme"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/quattro/config.php:75
|
||||
msgid "Posts font size"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/quattro/config.php:76
|
||||
msgid "Textareas font size"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/vier/config.php:75
|
||||
msgid "Comma separated list of helper forums"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/vier/config.php:115
|
||||
msgid "don't show"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/vier/config.php:115
|
||||
msgid "show"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/vier/config.php:121
|
||||
msgid "Set style"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/vier/config.php:122
|
||||
msgid "Community Pages"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/vier/config.php:123 view/theme/vier/theme.php:125
|
||||
msgid "Community Profiles"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/vier/config.php:124
|
||||
msgid "Help or @NewHere ?"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/vier/config.php:125 view/theme/vier/theme.php:296
|
||||
msgid "Connect Services"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/vier/config.php:126
|
||||
msgid "Find Friends"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/vier/config.php:127 view/theme/vier/theme.php:152
|
||||
msgid "Last users"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/vier/theme.php:170 src/Content/Widget.php:74
|
||||
msgid "Find People"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/vier/theme.php:171 src/Content/Widget.php:75
|
||||
msgid "Enter name or interest"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/vier/theme.php:172 include/conversation.php:969
|
||||
#: mod/follow.php:146 src/Model/Contact.php:980 src/Model/Contact.php:993
|
||||
#: src/Content/Widget.php:76
|
||||
msgid "Connect/Follow"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/vier/theme.php:173 src/Content/Widget.php:77
|
||||
msgid "Examples: Robert Morgenstein, Fishing"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/vier/theme.php:174 src/Module/Contact.php:876
|
||||
#: src/Module/Directory.php:105 src/Content/Widget.php:78
|
||||
msgid "Find"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/vier/theme.php:175 mod/suggest.php:55 src/Content/Widget.php:79
|
||||
msgid "Friend Suggestions"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/vier/theme.php:176 src/Content/Widget.php:80
|
||||
msgid "Similar Interests"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/vier/theme.php:177 src/Content/Widget.php:81
|
||||
msgid "Random Profile"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/vier/theme.php:178 src/Content/Widget.php:82
|
||||
msgid "Invite Friends"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/vier/theme.php:179 src/Module/Directory.php:97
|
||||
#: src/Content/Widget.php:83
|
||||
msgid "Global Directory"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/vier/theme.php:181 src/Content/Widget.php:85
|
||||
msgid "Local Directory"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/vier/theme.php:211
|
||||
msgid "Quick Start"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/vier/theme.php:217 src/Module/Help.php:69
|
||||
#: src/Module/Settings/TwoFactor/Index.php:111
|
||||
#: src/Module/Settings/TwoFactor/Verify.php:132
|
||||
#: src/Module/Settings/TwoFactor/Recovery.php:93
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:115 src/Content/Nav.php:212
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:142
|
||||
msgid "Light (Accented)"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:143
|
||||
msgid "Dark (Accented)"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:144
|
||||
msgid "Black (Accented)"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:156
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:156
|
||||
msgid "Check image permissions if all users are allowed to see the image"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:162
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:163
|
||||
msgid "Legacy"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:164
|
||||
msgid "Accented"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:165
|
||||
msgid "Select color scheme"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:166
|
||||
msgid "Select scheme accent"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:166
|
||||
msgid "Blue"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:166
|
||||
msgid "Red"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:166
|
||||
msgid "Purple"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:166
|
||||
msgid "Green"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:166
|
||||
msgid "Pink"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:167
|
||||
msgid "Copy or paste schemestring"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:167
|
||||
msgid ""
|
||||
"You can copy this string to share your theme with others. Pasting here "
|
||||
"applies the schemestring"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:168
|
||||
msgid "Navigation bar background color"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:169
|
||||
msgid "Navigation bar icon color "
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:170
|
||||
msgid "Link color"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:171
|
||||
msgid "Set the background color"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:172
|
||||
msgid "Content background opacity"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:173
|
||||
msgid "Set the background image"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:174
|
||||
msgid "Background image style"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:179
|
||||
msgid "Login page background image"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:183
|
||||
msgid "Login page background color"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:183
|
||||
msgid "Leave background image and color empty for theme defaults"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/theme.php:207
|
||||
msgid "Guest"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/theme.php:210
|
||||
msgid "Visitor"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/theme.php:225 src/Module/Contact.php:655
|
||||
#: src/Module/Contact.php:920 src/Module/BaseProfile.php:60
|
||||
#: src/Module/Settings/TwoFactor/Index.php:112 src/Content/Nav.php:177
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/theme.php:225 src/Content/Nav.php:177
|
||||
#: src/Content/Nav.php:263
|
||||
msgid "Your posts and conversations"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/theme.php:226 src/Module/Profile/Profile.php:237
|
||||
#: src/Module/Welcome.php:57 src/Module/Contact.php:657
|
||||
#: src/Module/Contact.php:936 src/Module/BaseProfile.php:52
|
||||
#: src/Module/BaseSettings.php:57 src/Content/Nav.php:178
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/theme.php:226 src/Content/Nav.php:178
|
||||
msgid "Your profile page"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/theme.php:227 mod/fbrowser.php:43
|
||||
#: src/Module/BaseProfile.php:68 src/Content/Nav.php:179
|
||||
msgid "Photos"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/theme.php:227 src/Content/Nav.php:179
|
||||
msgid "Your photos"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/theme.php:228 src/Module/BaseProfile.php:76
|
||||
#: src/Module/BaseProfile.php:79 src/Content/Nav.php:180
|
||||
msgid "Videos"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/theme.php:228 src/Content/Nav.php:180
|
||||
msgid "Your videos"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/theme.php:229 view/theme/frio/theme.php:233 mod/cal.php:274
|
||||
#: mod/events.php:417 src/Module/BaseProfile.php:88
|
||||
#: src/Module/BaseProfile.php:99 src/Content/Nav.php:181
|
||||
#: src/Content/Nav.php:248
|
||||
msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/theme.php:229 src/Content/Nav.php:181
|
||||
msgid "Your events"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/theme.php:232 src/Content/Nav.php:261
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/theme.php:232 src/Content/Nav.php:261
|
||||
msgid "Conversations from your friends"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/theme.php:233 src/Module/BaseProfile.php:91
|
||||
#: src/Module/BaseProfile.php:102 src/Content/Nav.php:248
|
||||
msgid "Events and Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/theme.php:234 mod/message.php:134 src/Content/Nav.php:273
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/theme.php:234 src/Content/Nav.php:273
|
||||
msgid "Private mail"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/theme.php:235 src/Module/Welcome.php:52
|
||||
#: src/Module/Admin/Themes/Details.php:93
|
||||
#: src/Module/Admin/Addons/Details.php:114 src/Module/BaseSettings.php:124
|
||||
#: src/Content/Nav.php:282
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/theme.php:235 src/Content/Nav.php:282
|
||||
msgid "Account settings"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/theme.php:236 src/Module/Contact.php:855
|
||||
#: src/Module/Contact.php:943 src/Module/BaseProfile.php:121
|
||||
#: src/Module/BaseProfile.php:124 src/Content/Nav.php:225
|
||||
#: src/Content/Nav.php:284 src/Content/Text/HTML.php:906
|
||||
msgid "Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/theme.php:236 src/Content/Nav.php:284
|
||||
msgid "Manage/edit friends and contacts"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/theme.php:322 include/conversation.php:948
|
||||
msgid "Follow Thread"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/php/standard.php:38 view/theme/frio/php/default.php:81
|
||||
msgid "Skip to main content"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/php/Image.php:40
|
||||
msgid "Top Banner"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/php/Image.php:40
|
||||
msgid ""
|
||||
"Resize image to the width of the screen and show background color below on "
|
||||
"long pages."
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/php/Image.php:41
|
||||
msgid "Full screen"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/php/Image.php:41
|
||||
msgid ""
|
||||
"Resize image to fill entire screen, clipping either the right or the bottom."
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/php/Image.php:42
|
||||
msgid "Single row mosaic"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/php/Image.php:42
|
||||
msgid ""
|
||||
"Resize image to repeat it on a single row, either vertical or horizontal."
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/php/Image.php:43
|
||||
msgid "Mosaic"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/php/Image.php:43
|
||||
msgid "Repeat image to fill the screen."
|
||||
#: include/api.php:1127
|
||||
#, php-format
|
||||
msgid "Daily posting limit of %d post reached. The post was rejected."
|
||||
msgid_plural "Daily posting limit of %d posts reached. The post was rejected."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: include/api.php:1141
|
||||
#, php-format
|
||||
msgid "Weekly posting limit of %d post reached. The post was rejected."
|
||||
msgid_plural "Weekly posting limit of %d posts reached. The post was rejected."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: include/api.php:1155
|
||||
#, php-format
|
||||
msgid "Monthly posting limit of %d post reached. The post was rejected."
|
||||
msgstr ""
|
||||
|
||||
#: include/api.php:4452 mod/photos.php:107 mod/photos.php:211
|
||||
#: mod/photos.php:639 mod/photos.php:1043 mod/photos.php:1060
|
||||
#: mod/photos.php:1609 src/Model/User.php:1045 src/Model/User.php:1053
|
||||
#: src/Model/User.php:1061 src/Module/Settings/Profile/Photo/Crop.php:97
|
||||
#: src/Module/Settings/Profile/Photo/Crop.php:113
|
||||
#: src/Module/Settings/Profile/Photo/Crop.php:129
|
||||
#: src/Module/Settings/Profile/Photo/Crop.php:178
|
||||
#: src/Module/Settings/Profile/Photo/Index.php:96
|
||||
#: src/Module/Settings/Profile/Photo/Index.php:102
|
||||
msgid "Profile Photos"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:195
|
||||
|
|
@ -480,10 +75,10 @@ msgstr ""
|
|||
msgid "Select"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:565 mod/settings.php:567 mod/settings.php:709
|
||||
#: mod/photos.php:1471 src/Module/Contact.php:886 src/Module/Contact.php:1190
|
||||
#: src/Module/Admin/Users/Index.php:153 src/Module/Admin/Users/Active.php:139
|
||||
#: src/Module/Admin/Users/Blocked.php:140
|
||||
#: include/conversation.php:565 mod/photos.php:1471 mod/settings.php:567
|
||||
#: mod/settings.php:709 src/Module/Admin/Users/Active.php:139
|
||||
#: src/Module/Admin/Users/Blocked.php:140 src/Module/Admin/Users/Index.php:153
|
||||
#: src/Module/Contact.php:886 src/Module/Contact.php:1190
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -510,9 +105,9 @@ msgid "View in context"
|
|||
msgstr ""
|
||||
|
||||
#: include/conversation.php:638 include/conversation.php:1222
|
||||
#: mod/wallmessage.php:155 mod/message.php:204 mod/message.php:374
|
||||
#: mod/editpost.php:104 mod/photos.php:1536 src/Object/Post.php:497
|
||||
#: src/Module/Item/Compose.php:159
|
||||
#: mod/editpost.php:104 mod/message.php:204 mod/message.php:374
|
||||
#: mod/photos.php:1536 mod/wallmessage.php:155 src/Module/Item/Compose.php:159
|
||||
#: src/Object/Post.php:497
|
||||
msgid "Please wait"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -585,14 +180,18 @@ msgstr ""
|
|||
msgid "Fetched because of %s"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:948 view/theme/frio/theme.php:322
|
||||
msgid "Follow Thread"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:949 src/Model/Contact.php:985
|
||||
msgid "View Status"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:950 include/conversation.php:972
|
||||
#: src/Module/Directory.php:166 src/Module/Settings/Profile/Index.php:240
|
||||
#: src/Model/Contact.php:911 src/Model/Contact.php:977
|
||||
#: src/Model/Contact.php:986
|
||||
#: src/Model/Contact.php:986 src/Module/Directory.php:166
|
||||
#: src/Module/Settings/Profile/Index.php:240
|
||||
msgid "View Profile"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -614,17 +213,18 @@ msgstr ""
|
|||
msgid "Send PM"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:955 src/Module/Contact.php:625
|
||||
#: src/Module/Contact.php:883 src/Module/Contact.php:1165
|
||||
#: src/Module/Admin/Users/Index.php:154 src/Module/Admin/Users/Active.php:140
|
||||
#: src/Module/Admin/Blocklist/Contact.php:84
|
||||
#: include/conversation.php:955 src/Module/Admin/Blocklist/Contact.php:84
|
||||
#: src/Module/Admin/Users/Active.php:140 src/Module/Admin/Users/Index.php:154
|
||||
#: src/Module/Contact.php:625 src/Module/Contact.php:883
|
||||
#: src/Module/Contact.php:1165
|
||||
msgid "Block"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:956 src/Module/Notifications/Notification.php:59
|
||||
#: src/Module/Notifications/Introductions.php:113
|
||||
#: src/Module/Notifications/Introductions.php:191 src/Module/Contact.php:626
|
||||
#: include/conversation.php:956 src/Module/Contact.php:626
|
||||
#: src/Module/Contact.php:884 src/Module/Contact.php:1173
|
||||
#: src/Module/Notifications/Introductions.php:113
|
||||
#: src/Module/Notifications/Introductions.php:191
|
||||
#: src/Module/Notifications/Notification.php:59
|
||||
msgid "Ignore"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -636,6 +236,12 @@ msgstr ""
|
|||
msgid "Poke"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:969 mod/follow.php:146 src/Content/Widget.php:76
|
||||
#: src/Model/Contact.php:980 src/Model/Contact.php:993
|
||||
#: view/theme/vier/theme.php:172
|
||||
msgid "Connect/Follow"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:1100
|
||||
#, php-format
|
||||
msgid "%s likes this."
|
||||
|
|
@ -729,8 +335,8 @@ msgstr ""
|
|||
msgid "Visible to <strong>everybody</strong>"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:1183 src/Object/Post.php:964
|
||||
#: src/Module/Item/Compose.php:153
|
||||
#: include/conversation.php:1183 src/Module/Item/Compose.php:153
|
||||
#: src/Object/Post.php:964
|
||||
msgid "Please enter a image/video/audio/webpage URL:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -759,12 +365,12 @@ msgid "Share"
|
|||
msgstr ""
|
||||
|
||||
#: include/conversation.php:1201 mod/editpost.php:89 mod/photos.php:1382
|
||||
#: src/Object/Post.php:955 src/Module/Contact/Poke.php:154
|
||||
#: src/Module/Contact/Poke.php:154 src/Object/Post.php:955
|
||||
msgid "Loading..."
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:1202 mod/wallmessage.php:153 mod/message.php:202
|
||||
#: mod/message.php:371 mod/editpost.php:90
|
||||
#: include/conversation.php:1202 mod/editpost.php:90 mod/message.php:202
|
||||
#: mod/message.php:371 mod/wallmessage.php:153
|
||||
msgid "Upload photo"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -780,43 +386,43 @@ msgstr ""
|
|||
msgid "attach file"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:1206 src/Object/Post.php:956
|
||||
#: src/Module/Item/Compose.php:145
|
||||
#: include/conversation.php:1206 src/Module/Item/Compose.php:145
|
||||
#: src/Object/Post.php:956
|
||||
msgid "Bold"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:1207 src/Object/Post.php:957
|
||||
#: src/Module/Item/Compose.php:146
|
||||
#: include/conversation.php:1207 src/Module/Item/Compose.php:146
|
||||
#: src/Object/Post.php:957
|
||||
msgid "Italic"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:1208 src/Object/Post.php:958
|
||||
#: src/Module/Item/Compose.php:147
|
||||
#: include/conversation.php:1208 src/Module/Item/Compose.php:147
|
||||
#: src/Object/Post.php:958
|
||||
msgid "Underline"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:1209 src/Object/Post.php:959
|
||||
#: src/Module/Item/Compose.php:148
|
||||
#: include/conversation.php:1209 src/Module/Item/Compose.php:148
|
||||
#: src/Object/Post.php:959
|
||||
msgid "Quote"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:1210 src/Object/Post.php:960
|
||||
#: src/Module/Item/Compose.php:149
|
||||
#: include/conversation.php:1210 src/Module/Item/Compose.php:149
|
||||
#: src/Object/Post.php:960
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:1211 src/Object/Post.php:961
|
||||
#: src/Module/Item/Compose.php:150
|
||||
#: include/conversation.php:1211 src/Module/Item/Compose.php:150
|
||||
#: src/Object/Post.php:961
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:1212 src/Object/Post.php:962
|
||||
#: src/Module/Item/Compose.php:151
|
||||
#: include/conversation.php:1212 src/Module/Item/Compose.php:151
|
||||
#: src/Object/Post.php:962
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:1213 src/Object/Post.php:963
|
||||
#: src/Module/Item/Compose.php:152
|
||||
#: include/conversation.php:1213 src/Module/Item/Compose.php:152
|
||||
#: src/Object/Post.php:963
|
||||
msgid "Link or Media"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -862,21 +468,20 @@ msgstr ""
|
|||
|
||||
#: include/conversation.php:1237 mod/editpost.php:125 mod/events.php:573
|
||||
#: mod/photos.php:1381 mod/photos.php:1438 mod/photos.php:1513
|
||||
#: src/Object/Post.php:965 src/Module/Item/Compose.php:154
|
||||
#: src/Module/Item/Compose.php:154 src/Object/Post.php:965
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:1241 mod/settings.php:507 mod/settings.php:533
|
||||
#: mod/unfollow.php:100 mod/tagrm.php:37 mod/tagrm.php:127
|
||||
#: mod/dfrn_request.php:642 mod/editpost.php:128 mod/follow.php:152
|
||||
#: mod/fbrowser.php:105 mod/fbrowser.php:134 mod/photos.php:1037
|
||||
#: mod/photos.php:1143 src/Module/Contact.php:459
|
||||
#: src/Module/RemoteFollow.php:110
|
||||
#: include/conversation.php:1241 mod/dfrn_request.php:642 mod/editpost.php:128
|
||||
#: mod/fbrowser.php:105 mod/fbrowser.php:134 mod/follow.php:152
|
||||
#: mod/photos.php:1037 mod/photos.php:1143 mod/settings.php:507
|
||||
#: mod/settings.php:533 mod/tagrm.php:37 mod/tagrm.php:127 mod/unfollow.php:100
|
||||
#: src/Module/Contact.php:459 src/Module/RemoteFollow.php:110
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:1248 mod/editpost.php:132
|
||||
#: src/Module/Contact.php:344 src/Model/Profile.php:445
|
||||
#: include/conversation.php:1248 mod/editpost.php:132 src/Model/Profile.php:445
|
||||
#: src/Module/Contact.php:344
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1214,148 +819,157 @@ msgstr ""
|
|||
msgid "Please visit %s to approve or reject the request."
|
||||
msgstr ""
|
||||
|
||||
#: include/api.php:1127
|
||||
#, php-format
|
||||
msgid "Daily posting limit of %d post reached. The post was rejected."
|
||||
msgid_plural "Daily posting limit of %d posts reached. The post was rejected."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: include/api.php:1141
|
||||
#, php-format
|
||||
msgid "Weekly posting limit of %d post reached. The post was rejected."
|
||||
msgid_plural "Weekly posting limit of %d posts reached. The post was rejected."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: include/api.php:1155
|
||||
#, php-format
|
||||
msgid "Monthly posting limit of %d post reached. The post was rejected."
|
||||
msgstr ""
|
||||
|
||||
#: include/api.php:4452 mod/photos.php:107 mod/photos.php:211
|
||||
#: mod/photos.php:639 mod/photos.php:1043 mod/photos.php:1060
|
||||
#: mod/photos.php:1609 src/Module/Settings/Profile/Photo/Crop.php:97
|
||||
#: src/Module/Settings/Profile/Photo/Crop.php:113
|
||||
#: src/Module/Settings/Profile/Photo/Crop.php:129
|
||||
#: src/Module/Settings/Profile/Photo/Crop.php:178
|
||||
#: src/Module/Settings/Profile/Photo/Index.php:96
|
||||
#: src/Module/Settings/Profile/Photo/Index.php:102 src/Model/User.php:1045
|
||||
#: src/Model/User.php:1053 src/Model/User.php:1061
|
||||
msgid "Profile Photos"
|
||||
msgstr ""
|
||||
|
||||
#: mod/redir.php:34 mod/redir.php:203 mod/cal.php:46 mod/cal.php:50
|
||||
#: mod/follow.php:38 src/Module/Debug/ItemBody.php:38
|
||||
#: src/Module/Conversation/Community.php:194 src/Module/Item/Pin.php:42
|
||||
#: src/Module/Item/Pin.php:57 src/Module/Item/Star.php:42
|
||||
#: src/Module/Item/Follow.php:42 src/Module/Item/Ignore.php:41
|
||||
#: src/Module/Diaspora/Receive.php:51
|
||||
msgid "Access denied."
|
||||
msgstr ""
|
||||
|
||||
#: mod/redir.php:50 mod/redir.php:130
|
||||
msgid "Bad Request."
|
||||
msgstr ""
|
||||
|
||||
#: mod/redir.php:56 mod/redir.php:157 mod/dfrn_confirm.php:139
|
||||
#: src/Module/FriendSuggest.php:54 src/Module/FriendSuggest.php:93
|
||||
#: src/Module/Group.php:105 src/Module/Contact/Advanced.php:53
|
||||
#: src/Module/Contact/Advanced.php:104 src/Module/Contact/Contacts.php:36
|
||||
msgid "Contact not found."
|
||||
msgstr ""
|
||||
|
||||
#: mod/wallmessage.php:35 mod/wallmessage.php:59 mod/wallmessage.php:96
|
||||
#: mod/wallmessage.php:120 mod/dfrn_confirm.php:78 mod/settings.php:47
|
||||
#: mod/settings.php:65 mod/settings.php:496 mod/repair_ostatus.php:31
|
||||
#: mod/unfollow.php:35 mod/unfollow.php:50 mod/unfollow.php:82
|
||||
#: mod/message.php:69 mod/message.php:112 mod/ostatus_subscribe.php:30
|
||||
#: mod/suggest.php:34 mod/wall_upload.php:99 mod/wall_upload.php:102
|
||||
#: mod/api.php:52 mod/api.php:57 mod/wall_attach.php:78 mod/wall_attach.php:81
|
||||
#: mod/item.php:182 mod/item.php:187 mod/item.php:898 mod/uimport.php:32
|
||||
#: mod/editpost.php:37 mod/events.php:231 mod/follow.php:55 mod/follow.php:135
|
||||
#: mod/notes.php:44 mod/photos.php:176 mod/photos.php:922
|
||||
#: src/Module/Notifications/Notification.php:47
|
||||
#: mod/api.php:52 mod/api.php:57 mod/dfrn_confirm.php:78 mod/editpost.php:37
|
||||
#: mod/events.php:231 mod/follow.php:55 mod/follow.php:135 mod/item.php:182
|
||||
#: mod/item.php:187 mod/item.php:898 mod/message.php:69 mod/message.php:112
|
||||
#: mod/notes.php:44 mod/ostatus_subscribe.php:30 mod/photos.php:176
|
||||
#: mod/photos.php:922 mod/repair_ostatus.php:31 mod/settings.php:47
|
||||
#: mod/settings.php:65 mod/settings.php:496 mod/suggest.php:34
|
||||
#: mod/uimport.php:32 mod/unfollow.php:35 mod/unfollow.php:50
|
||||
#: mod/unfollow.php:82 mod/wallmessage.php:35 mod/wallmessage.php:59
|
||||
#: mod/wallmessage.php:96 mod/wallmessage.php:120 mod/wall_attach.php:78
|
||||
#: mod/wall_attach.php:81 mod/wall_upload.php:99 mod/wall_upload.php:102
|
||||
#: src/Module/Attach.php:56 src/Module/BaseApi.php:59 src/Module/BaseApi.php:65
|
||||
#: src/Module/BaseNotifications.php:88 src/Module/Contact/Advanced.php:43
|
||||
#: src/Module/Contact.php:385 src/Module/Delegation.php:118
|
||||
#: src/Module/FollowConfirm.php:16 src/Module/FriendSuggest.php:44
|
||||
#: src/Module/Group.php:45 src/Module/Group.php:90 src/Module/Invite.php:40
|
||||
#: src/Module/Invite.php:128 src/Module/Notifications/Notification.php:47
|
||||
#: src/Module/Notifications/Notification.php:76
|
||||
#: src/Module/Profile/Common.php:57 src/Module/Profile/Contacts.php:57
|
||||
#: src/Module/BaseNotifications.php:88 src/Module/Register.php:62
|
||||
#: src/Module/Register.php:75 src/Module/Register.php:193
|
||||
#: src/Module/Register.php:232 src/Module/FriendSuggest.php:44
|
||||
#: src/Module/BaseApi.php:59 src/Module/BaseApi.php:65
|
||||
#: src/Module/Delegation.php:118 src/Module/Contact.php:385
|
||||
#: src/Module/FollowConfirm.php:16 src/Module/Invite.php:40
|
||||
#: src/Module/Invite.php:128 src/Module/Attach.php:56 src/Module/Group.php:45
|
||||
#: src/Module/Group.php:90 src/Module/Search/Directory.php:38
|
||||
#: src/Module/Contact/Advanced.php:43
|
||||
#: src/Module/Register.php:62 src/Module/Register.php:75
|
||||
#: src/Module/Register.php:193 src/Module/Register.php:232
|
||||
#: src/Module/Search/Directory.php:38 src/Module/Settings/Delegation.php:42
|
||||
#: src/Module/Settings/Delegation.php:70 src/Module/Settings/Display.php:42
|
||||
#: src/Module/Settings/Display.php:118
|
||||
#: src/Module/Settings/Profile/Photo/Crop.php:157
|
||||
#: src/Module/Settings/Profile/Photo/Index.php:113
|
||||
#: src/Module/Settings/Delegation.php:42 src/Module/Settings/Delegation.php:70
|
||||
#: src/Module/Settings/Display.php:42 src/Module/Settings/Display.php:118
|
||||
msgid "Permission denied."
|
||||
msgstr ""
|
||||
|
||||
#: mod/wallmessage.php:68 mod/wallmessage.php:129
|
||||
#, php-format
|
||||
msgid "Number of daily wall messages for %s exceeded. Message failed."
|
||||
#: mod/api.php:102 mod/api.php:124
|
||||
msgid "Authorize application connection"
|
||||
msgstr ""
|
||||
|
||||
#: mod/wallmessage.php:76 mod/message.php:83
|
||||
msgid "No recipient selected."
|
||||
#: mod/api.php:103
|
||||
msgid "Return to your app and insert this Securty Code:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/wallmessage.php:79
|
||||
msgid "Unable to check your home location."
|
||||
#: mod/api.php:112 src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58
|
||||
msgid "Please login to continue."
|
||||
msgstr ""
|
||||
|
||||
#: mod/wallmessage.php:82 mod/message.php:90
|
||||
msgid "Message could not be sent."
|
||||
msgstr ""
|
||||
|
||||
#: mod/wallmessage.php:85 mod/message.php:93
|
||||
msgid "Message collection failure."
|
||||
msgstr ""
|
||||
|
||||
#: mod/wallmessage.php:103 mod/wallmessage.php:112
|
||||
msgid "No recipient."
|
||||
msgstr ""
|
||||
|
||||
#: mod/wallmessage.php:137 mod/message.php:184 mod/message.php:297
|
||||
msgid "Please enter a link URL:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/wallmessage.php:142 mod/message.php:193
|
||||
msgid "Send Private Message"
|
||||
msgstr ""
|
||||
|
||||
#: mod/wallmessage.php:143
|
||||
#, php-format
|
||||
#: mod/api.php:126
|
||||
msgid ""
|
||||
"If you wish for %s to respond, please check that the privacy settings on "
|
||||
"your site allow private mail from unknown senders."
|
||||
"Do you want to authorize this application to access your posts and contacts, "
|
||||
"and/or create new posts for you?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/wallmessage.php:144 mod/message.php:194 mod/message.php:363
|
||||
msgid "To:"
|
||||
#: mod/api.php:127 src/Module/Contact.php:456
|
||||
#: src/Module/Notifications/Introductions.php:123 src/Module/Register.php:115
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: mod/wallmessage.php:145 mod/message.php:195 mod/message.php:364
|
||||
msgid "Subject:"
|
||||
#: mod/api.php:128 src/Module/Notifications/Introductions.php:123
|
||||
#: src/Module/Register.php:116
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: mod/wallmessage.php:151 mod/message.php:199 mod/message.php:367
|
||||
#: src/Module/Invite.php:168
|
||||
msgid "Your message:"
|
||||
#: mod/cal.php:46 mod/cal.php:50 mod/follow.php:38 mod/redir.php:34
|
||||
#: mod/redir.php:203 src/Module/Conversation/Community.php:194
|
||||
#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:51
|
||||
#: src/Module/Item/Follow.php:42 src/Module/Item/Ignore.php:41
|
||||
#: src/Module/Item/Pin.php:42 src/Module/Item/Pin.php:57
|
||||
#: src/Module/Item/Star.php:42
|
||||
msgid "Access denied."
|
||||
msgstr ""
|
||||
|
||||
#: mod/wallmessage.php:154 mod/message.php:203 mod/message.php:372
|
||||
#: mod/editpost.php:94
|
||||
msgid "Insert web link"
|
||||
#: mod/cal.php:72 mod/cal.php:133 src/Module/HoverCard.php:53
|
||||
#: src/Module/Profile/Common.php:41 src/Module/Profile/Common.php:53
|
||||
#: src/Module/Profile/Contacts.php:40 src/Module/Profile/Contacts.php:51
|
||||
#: src/Module/Profile/Status.php:58 src/Module/Register.php:258
|
||||
msgid "User not found."
|
||||
msgstr ""
|
||||
|
||||
#: mod/cal.php:143 mod/display.php:281 src/Module/Profile/Profile.php:94
|
||||
#: src/Module/Profile/Profile.php:109 src/Module/Profile/Status.php:109
|
||||
#: src/Module/Update/Profile.php:55
|
||||
msgid "Access to this profile has been restricted."
|
||||
msgstr ""
|
||||
|
||||
#: mod/cal.php:274 mod/events.php:417 src/Content/Nav.php:181
|
||||
#: src/Content/Nav.php:248 src/Module/BaseProfile.php:88
|
||||
#: src/Module/BaseProfile.php:99 view/theme/frio/theme.php:229
|
||||
#: view/theme/frio/theme.php:233
|
||||
msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: mod/cal.php:275 mod/events.php:418
|
||||
msgid "View"
|
||||
msgstr ""
|
||||
|
||||
#: mod/cal.php:276 mod/events.php:420
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#: mod/cal.php:277 mod/events.php:421 src/Module/Install.php:196
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: mod/cal.php:280 mod/events.php:426 src/Model/Event.php:463
|
||||
msgid "today"
|
||||
msgstr ""
|
||||
|
||||
#: mod/cal.php:281 mod/events.php:427 src/Model/Event.php:464
|
||||
#: src/Util/Temporal.php:330
|
||||
msgid "month"
|
||||
msgstr ""
|
||||
|
||||
#: mod/cal.php:282 mod/events.php:428 src/Model/Event.php:465
|
||||
#: src/Util/Temporal.php:331
|
||||
msgid "week"
|
||||
msgstr ""
|
||||
|
||||
#: mod/cal.php:283 mod/events.php:429 src/Model/Event.php:466
|
||||
#: src/Util/Temporal.php:332
|
||||
msgid "day"
|
||||
msgstr ""
|
||||
|
||||
#: mod/cal.php:284 mod/events.php:430
|
||||
msgid "list"
|
||||
msgstr ""
|
||||
|
||||
#: mod/cal.php:297 src/Console/User.php:152 src/Console/User.php:250
|
||||
#: src/Console/User.php:283 src/Console/User.php:309 src/Model/User.php:607
|
||||
#: src/Module/Admin/Users/Active.php:73 src/Module/Admin/Users/Blocked.php:74
|
||||
#: src/Module/Admin/Users/Index.php:80 src/Module/Admin/Users/Pending.php:71
|
||||
#: src/Module/Api/Twitter/ContactEndpoint.php:73
|
||||
msgid "User not found"
|
||||
msgstr ""
|
||||
|
||||
#: mod/cal.php:306
|
||||
msgid "This calendar format is not supported"
|
||||
msgstr ""
|
||||
|
||||
#: mod/cal.php:308
|
||||
msgid "No exportable data found"
|
||||
msgstr ""
|
||||
|
||||
#: mod/cal.php:325
|
||||
msgid "calendar"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:84 src/Module/Profile/Profile.php:82
|
||||
msgid "Profile not found."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:139 mod/redir.php:56 mod/redir.php:157
|
||||
#: src/Module/Contact/Advanced.php:53 src/Module/Contact/Advanced.php:104
|
||||
#: src/Module/Contact/Contacts.php:36 src/Module/FriendSuggest.php:54
|
||||
#: src/Module/FriendSuggest.php:93 src/Module/Group.php:105
|
||||
msgid "Contact not found."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:140
|
||||
msgid ""
|
||||
"This may occasionally happen if contact was requested by both persons and it "
|
||||
|
|
@ -1422,36 +1036,554 @@ msgstr ""
|
|||
msgid "Unable to update your contact profile details on our system"
|
||||
msgstr ""
|
||||
|
||||
#: mod/videos.php:129 mod/display.php:179 mod/dfrn_request.php:600
|
||||
#: mod/photos.php:836 src/Module/Debug/WebFinger.php:38
|
||||
#: src/Module/Debug/Probe.php:39 src/Module/Conversation/Community.php:188
|
||||
#: mod/dfrn_poll.php:135 mod/dfrn_poll.php:506
|
||||
#, php-format
|
||||
msgid "%1$s welcomes %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:113
|
||||
msgid "This introduction has already been accepted."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:131 mod/dfrn_request.php:369
|
||||
msgid "Profile location is not valid or does not contain profile information."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:135 mod/dfrn_request.php:373
|
||||
msgid "Warning: profile location has no identifiable owner name."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:138 mod/dfrn_request.php:376
|
||||
msgid "Warning: profile location has no profile photo."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:142 mod/dfrn_request.php:380
|
||||
#, php-format
|
||||
msgid "%d required parameter was not found at the given location"
|
||||
msgid_plural "%d required parameters were not found at the given location"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: mod/dfrn_request.php:180
|
||||
msgid "Introduction complete."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:216
|
||||
msgid "Unrecoverable protocol error."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:243 src/Module/RemoteFollow.php:54
|
||||
msgid "Profile unavailable."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:264
|
||||
#, php-format
|
||||
msgid "%s has received too many connection requests today."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:265
|
||||
msgid "Spam protection measures have been invoked."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:266
|
||||
msgid "Friends are advised to please try again in 24 hours."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:290 src/Module/RemoteFollow.php:60
|
||||
msgid "Invalid locator"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:326
|
||||
msgid "You have already introduced yourself here."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:329
|
||||
#, php-format
|
||||
msgid "Apparently you are already friends with %s."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:349
|
||||
msgid "Invalid profile URL."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:355 src/Model/Contact.php:2158
|
||||
msgid "Disallowed profile URL."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:361 src/Model/Contact.php:2163
|
||||
#: src/Module/Friendica.php:80
|
||||
msgid "Blocked domain"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:428 src/Module/Contact.php:157
|
||||
msgid "Failed to update contact record."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:448
|
||||
msgid "Your introduction has been sent."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:480 src/Module/RemoteFollow.php:72
|
||||
msgid ""
|
||||
"Remote subscription can't be done for your network. Please subscribe "
|
||||
"directly on your system."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:496
|
||||
msgid "Please login to confirm introduction."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:504
|
||||
msgid ""
|
||||
"Incorrect identity currently logged in. Please login to <strong>this</"
|
||||
"strong> profile."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:518 mod/dfrn_request.php:533
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:529
|
||||
msgid "Hide this contact"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:531
|
||||
#, php-format
|
||||
msgid "Welcome home %s."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:532
|
||||
#, php-format
|
||||
msgid "Please confirm your introduction/connection request to %s."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:600 mod/display.php:179 mod/photos.php:836
|
||||
#: mod/videos.php:129 src/Module/Conversation/Community.php:188
|
||||
#: src/Module/Debug/Probe.php:39 src/Module/Debug/WebFinger.php:38
|
||||
#: src/Module/Directory.php:49 src/Module/Search/Index.php:51
|
||||
#: src/Module/Search/Index.php:56
|
||||
msgid "Public access denied."
|
||||
msgstr ""
|
||||
|
||||
#: mod/videos.php:134
|
||||
msgid "No videos selected"
|
||||
#: mod/dfrn_request.php:636 src/Module/RemoteFollow.php:104
|
||||
msgid "Friend/Connection Request"
|
||||
msgstr ""
|
||||
|
||||
#: mod/videos.php:182 mod/photos.php:907
|
||||
msgid "Access to this item is restricted."
|
||||
#: mod/dfrn_request.php:637
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Enter your Webfinger address (user@domain.tld) or profile URL here. If this "
|
||||
"isn't supported by your system (for example it doesn't work with Diaspora), "
|
||||
"you have to subscribe to <strong>%s</strong> directly on your system"
|
||||
msgstr ""
|
||||
|
||||
#: mod/videos.php:252 src/Model/Item.php:2664
|
||||
msgid "View Video"
|
||||
#: mod/dfrn_request.php:638 src/Module/RemoteFollow.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you are not yet a member of the free social web, <a href=\"%s\">follow "
|
||||
"this link to find a public Friendica node and join us today</a>."
|
||||
msgstr ""
|
||||
|
||||
#: mod/videos.php:259 mod/photos.php:1629
|
||||
msgid "View Album"
|
||||
#: mod/dfrn_request.php:639 src/Module/RemoteFollow.php:107
|
||||
msgid "Your Webfinger address or profile URL:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/videos.php:267
|
||||
msgid "Recent Videos"
|
||||
#: mod/dfrn_request.php:640 mod/follow.php:147 src/Module/RemoteFollow.php:108
|
||||
msgid "Please answer the following:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/videos.php:269
|
||||
msgid "Upload New Videos"
|
||||
#: mod/dfrn_request.php:641 mod/follow.php:74 mod/unfollow.php:99
|
||||
#: src/Module/RemoteFollow.php:109
|
||||
msgid "Submit Request"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:648 mod/follow.php:161
|
||||
#, php-format
|
||||
msgid "%s knows you"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:649 mod/follow.php:162
|
||||
msgid "Add a personal note:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/display.php:233 mod/display.php:317
|
||||
msgid "The requested item doesn't exist or has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: mod/display.php:397
|
||||
msgid "The feed for this item is unavailable."
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:44 mod/editpost.php:54
|
||||
msgid "Item not found"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:61
|
||||
msgid "Edit post"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:88 mod/notes.php:63 src/Content/Text/HTML.php:889
|
||||
#: src/Module/Filer/SaveTag.php:70
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:94 mod/message.php:203 mod/message.php:372
|
||||
#: mod/wallmessage.php:154
|
||||
msgid "Insert web link"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:95
|
||||
msgid "web link"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:96
|
||||
msgid "Insert video link"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:97
|
||||
msgid "video link"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:98
|
||||
msgid "Insert audio link"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:99
|
||||
msgid "audio link"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:113 src/Core/ACL.php:313
|
||||
msgid "CC: email addresses"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:120 src/Core/ACL.php:314
|
||||
msgid "Example: bob@example.com, mary@example.com"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:138 mod/events.php:140
|
||||
msgid "Event can not end before it has started."
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:147 mod/events.php:149
|
||||
msgid "Event title and start time are required."
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:419
|
||||
msgid "Create New Event"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:531
|
||||
msgid "Event details"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:532
|
||||
msgid "Starting date and Title are required."
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:533 mod/events.php:538
|
||||
msgid "Event Starts:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:533 mod/events.php:565
|
||||
#: src/Module/Admin/Blocklist/Server.php:79
|
||||
#: src/Module/Admin/Blocklist/Server.php:80
|
||||
#: src/Module/Admin/Blocklist/Server.php:99
|
||||
#: src/Module/Admin/Blocklist/Server.php:100
|
||||
#: src/Module/Admin/Item/Delete.php:70 src/Module/Debug/Probe.php:60
|
||||
#: src/Module/Install.php:189 src/Module/Install.php:222
|
||||
#: src/Module/Install.php:227 src/Module/Install.php:246
|
||||
#: src/Module/Install.php:257 src/Module/Install.php:262
|
||||
#: src/Module/Install.php:268 src/Module/Install.php:273
|
||||
#: src/Module/Install.php:287 src/Module/Install.php:302
|
||||
#: src/Module/Install.php:329 src/Module/Register.php:135
|
||||
#: src/Module/Security/TwoFactor/Verify.php:99
|
||||
#: src/Module/Settings/TwoFactor/Index.php:133
|
||||
#: src/Module/Settings/TwoFactor/Verify.php:141
|
||||
msgid "Required"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:546 mod/events.php:571
|
||||
msgid "Finish date/time is not known or not relevant"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:548 mod/events.php:553
|
||||
msgid "Event Finishes:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:559 mod/events.php:572
|
||||
msgid "Adjust for viewer timezone"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:561 src/Module/Profile/Profile.php:172
|
||||
#: src/Module/Settings/Profile/Index.php:253
|
||||
msgid "Description:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:563 src/Model/Event.php:84 src/Model/Event.php:111
|
||||
#: src/Model/Event.php:472 src/Model/Event.php:959 src/Model/Profile.php:358
|
||||
#: src/Module/Contact.php:646 src/Module/Directory.php:156
|
||||
#: src/Module/Notifications/Introductions.php:172
|
||||
#: src/Module/Profile/Profile.php:190
|
||||
msgid "Location:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:565 mod/events.php:567
|
||||
msgid "Title:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:568 mod/events.php:569
|
||||
msgid "Share this event"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:575 mod/message.php:205 mod/message.php:373
|
||||
#: mod/photos.php:951 mod/photos.php:1054 mod/photos.php:1339
|
||||
#: mod/photos.php:1380 mod/photos.php:1437 mod/photos.php:1512
|
||||
#: src/Module/Admin/Item/Source.php:65 src/Module/Contact/Advanced.php:132
|
||||
#: src/Module/Contact/Poke.php:155 src/Module/Contact.php:604
|
||||
#: src/Module/Debug/ActivityPubConversion.php:141
|
||||
#: src/Module/Debug/Babel.php:315 src/Module/Debug/Localtime.php:64
|
||||
#: src/Module/Debug/Probe.php:55 src/Module/Debug/WebFinger.php:53
|
||||
#: src/Module/Delegation.php:152 src/Module/FriendSuggest.php:129
|
||||
#: src/Module/Install.php:234 src/Module/Install.php:276
|
||||
#: src/Module/Install.php:313 src/Module/Invite.php:175
|
||||
#: src/Module/Item/Compose.php:144 src/Module/Profile/Profile.php:243
|
||||
#: src/Module/Settings/Profile/Index.php:237 src/Object/Post.php:954
|
||||
#: view/theme/duepuntozero/config.php:69 view/theme/frio/config.php:160
|
||||
#: view/theme/quattro/config.php:71 view/theme/vier/config.php:119
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:576 src/Module/Profile/Profile.php:244
|
||||
msgid "Basic"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:577 src/Module/Admin/Site.php:587 src/Module/Contact.php:953
|
||||
#: src/Module/Profile/Profile.php:245
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:594
|
||||
msgid "Failed to remove event"
|
||||
msgstr ""
|
||||
|
||||
#: mod/fbrowser.php:43 src/Content/Nav.php:179 src/Module/BaseProfile.php:68
|
||||
#: view/theme/frio/theme.php:227
|
||||
msgid "Photos"
|
||||
msgstr ""
|
||||
|
||||
#: mod/fbrowser.php:107 mod/fbrowser.php:136
|
||||
#: src/Module/Settings/Profile/Photo/Index.php:130
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
#: mod/fbrowser.php:131
|
||||
msgid "Files"
|
||||
msgstr ""
|
||||
|
||||
#: mod/follow.php:84
|
||||
msgid "You already added this contact."
|
||||
msgstr ""
|
||||
|
||||
#: mod/follow.php:100
|
||||
msgid "The network type couldn't be detected. Contact can't be added."
|
||||
msgstr ""
|
||||
|
||||
#: mod/follow.php:108
|
||||
msgid "Diaspora support isn't enabled. Contact can't be added."
|
||||
msgstr ""
|
||||
|
||||
#: mod/follow.php:113
|
||||
msgid "OStatus support is disabled. Contact can't be added."
|
||||
msgstr ""
|
||||
|
||||
#: mod/follow.php:148 mod/unfollow.php:97
|
||||
msgid "Your Identity Address:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/follow.php:149 mod/unfollow.php:103
|
||||
#: src/Module/Admin/Blocklist/Contact.php:100 src/Module/Contact.php:642
|
||||
#: src/Module/Notifications/Introductions.php:108
|
||||
#: src/Module/Notifications/Introductions.php:183
|
||||
msgid "Profile URL"
|
||||
msgstr ""
|
||||
|
||||
#: mod/follow.php:150 src/Module/Contact.php:652
|
||||
#: src/Module/Notifications/Introductions.php:176
|
||||
#: src/Module/Profile/Profile.php:203
|
||||
msgid "Tags:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/follow.php:171 mod/unfollow.php:113 src/Module/BaseProfile.php:63
|
||||
#: src/Module/Contact.php:931
|
||||
msgid "Status Messages and Posts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/follow.php:203
|
||||
msgid "The contact could not be added."
|
||||
msgstr ""
|
||||
|
||||
#: mod/item.php:133 mod/item.php:137
|
||||
msgid "Unable to locate original post."
|
||||
msgstr ""
|
||||
|
||||
#: mod/item.php:332 mod/item.php:337
|
||||
msgid "Empty post discarded."
|
||||
msgstr ""
|
||||
|
||||
#: mod/item.php:698
|
||||
msgid "Post updated."
|
||||
msgstr ""
|
||||
|
||||
#: mod/item.php:715 mod/item.php:720
|
||||
msgid "Item wasn't stored."
|
||||
msgstr ""
|
||||
|
||||
#: mod/item.php:731
|
||||
msgid "Item couldn't be fetched."
|
||||
msgstr ""
|
||||
|
||||
#: mod/item.php:877 src/Module/Admin/Themes/Details.php:39
|
||||
#: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:47
|
||||
#: src/Module/Debug/ItemBody.php:60
|
||||
msgid "Item not found."
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:40
|
||||
msgid "No valid account found."
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:52
|
||||
msgid "Password reset request issued. Check your email."
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\tDear %1$s,\n"
|
||||
"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
|
||||
"\t\tpassword. In order to confirm this request, please select the "
|
||||
"verification link\n"
|
||||
"\t\tbelow or paste it into your web browser address bar.\n"
|
||||
"\n"
|
||||
"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
|
||||
"\t\tprovided and ignore and/or delete this email, the request will expire "
|
||||
"shortly.\n"
|
||||
"\n"
|
||||
"\t\tYour password will not be changed unless we can verify that you\n"
|
||||
"\t\tissued this request."
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:69
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\tFollow this link soon to verify your identity:\n"
|
||||
"\n"
|
||||
"\t\t%1$s\n"
|
||||
"\n"
|
||||
"\t\tYou will then receive a follow-up message containing the new password.\n"
|
||||
"\t\tYou may change that password from your account settings page after "
|
||||
"logging in.\n"
|
||||
"\n"
|
||||
"\t\tThe login details are as follows:\n"
|
||||
"\n"
|
||||
"\t\tSite Location:\t%2$s\n"
|
||||
"\t\tLogin Name:\t%3$s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:84
|
||||
#, php-format
|
||||
msgid "Password reset requested at %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:100
|
||||
msgid ""
|
||||
"Request could not be verified. (You may have previously submitted it.) "
|
||||
"Password reset failed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:113
|
||||
msgid "Request has expired, please make a new one."
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:128
|
||||
msgid "Forgot your Password?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:129
|
||||
msgid ""
|
||||
"Enter your email address and submit to have your password reset. Then check "
|
||||
"your email for further instructions."
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:130 src/Module/Security/Login.php:144
|
||||
msgid "Nickname or Email: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:131
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:146 src/Module/Security/Login.php:156
|
||||
msgid "Password Reset"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:147
|
||||
msgid "Your password has been reset as requested."
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:148
|
||||
msgid "Your new password is"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:149
|
||||
msgid "Save or copy your new password - and then"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:150
|
||||
msgid "click here to login"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:151
|
||||
msgid ""
|
||||
"Your password may be changed from the <em>Settings</em> page after "
|
||||
"successful login."
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:155
|
||||
msgid "Your password has been reset."
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:158
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\t\tDear %1$s,\n"
|
||||
"\t\t\t\tYour password has been changed as requested. Please retain this\n"
|
||||
"\t\t\tinformation for your records (or change your password immediately to\n"
|
||||
"\t\t\tsomething that you will remember).\n"
|
||||
"\t\t"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:164
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\t\tYour login details are as follows:\n"
|
||||
"\n"
|
||||
"\t\t\tSite Location:\t%1$s\n"
|
||||
"\t\t\tLogin Name:\t%2$s\n"
|
||||
"\t\t\tPassword:\t%3$s\n"
|
||||
"\n"
|
||||
"\t\t\tYou may change that password from your account settings page after "
|
||||
"logging in.\n"
|
||||
"\t\t"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:176
|
||||
#, php-format
|
||||
msgid "Your password has been changed at %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/match.php:62
|
||||
|
|
@ -1474,6 +1606,464 @@ msgstr ""
|
|||
msgid "Profile Match"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:46 mod/message.php:127 src/Content/Nav.php:276
|
||||
msgid "New Message"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:83 mod/wallmessage.php:76
|
||||
msgid "No recipient selected."
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:87
|
||||
msgid "Unable to locate contact information."
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:90 mod/wallmessage.php:82
|
||||
msgid "Message could not be sent."
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:93 mod/wallmessage.php:85
|
||||
msgid "Message collection failure."
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:121 src/Module/Notifications/Introductions.php:114
|
||||
#: src/Module/Notifications/Introductions.php:155
|
||||
#: src/Module/Notifications/Notification.php:56
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:134 src/Content/Nav.php:273 view/theme/frio/theme.php:234
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:147
|
||||
msgid "Conversation not found."
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:152
|
||||
msgid "Message was not deleted."
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:170
|
||||
msgid "Conversation was not removed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:184 mod/message.php:297 mod/wallmessage.php:137
|
||||
msgid "Please enter a link URL:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:193 mod/wallmessage.php:142
|
||||
msgid "Send Private Message"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:194 mod/message.php:363 mod/wallmessage.php:144
|
||||
msgid "To:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:195 mod/message.php:364 mod/wallmessage.php:145
|
||||
msgid "Subject:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:199 mod/message.php:367 mod/wallmessage.php:151
|
||||
#: src/Module/Invite.php:168
|
||||
msgid "Your message:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:233
|
||||
msgid "No messages."
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:289
|
||||
msgid "Message not available."
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:339
|
||||
msgid "Delete message"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:341 mod/message.php:468
|
||||
msgid "D, d M Y - g:i A"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:356 mod/message.php:465
|
||||
msgid "Delete conversation"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:358
|
||||
msgid ""
|
||||
"No secure communications available. You <strong>may</strong> be able to "
|
||||
"respond from the sender's profile page."
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:362
|
||||
msgid "Send Reply"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:444
|
||||
#, php-format
|
||||
msgid "Unknown sender - %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:446
|
||||
#, php-format
|
||||
msgid "You and %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:448
|
||||
#, php-format
|
||||
msgid "%s and You"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:471
|
||||
#, php-format
|
||||
msgid "%d message"
|
||||
msgid_plural "%d messages"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: mod/notes.php:51 src/Module/BaseProfile.php:110
|
||||
msgid "Personal Notes"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notes.php:59
|
||||
msgid "Personal notes are visible only by yourself."
|
||||
msgstr ""
|
||||
|
||||
#: mod/ostatus_subscribe.php:35
|
||||
msgid "Subscribing to OStatus contacts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/ostatus_subscribe.php:45
|
||||
msgid "No contact provided."
|
||||
msgstr ""
|
||||
|
||||
#: mod/ostatus_subscribe.php:51
|
||||
msgid "Couldn't fetch information for contact."
|
||||
msgstr ""
|
||||
|
||||
#: mod/ostatus_subscribe.php:61
|
||||
msgid "Couldn't fetch friends for contact."
|
||||
msgstr ""
|
||||
|
||||
#: mod/ostatus_subscribe.php:79 mod/repair_ostatus.php:65
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#: mod/ostatus_subscribe.php:93
|
||||
msgid "success"
|
||||
msgstr ""
|
||||
|
||||
#: mod/ostatus_subscribe.php:95
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: mod/ostatus_subscribe.php:98 src/Object/Post.php:310
|
||||
msgid "ignored"
|
||||
msgstr ""
|
||||
|
||||
#: mod/ostatus_subscribe.php:103 mod/repair_ostatus.php:71
|
||||
msgid "Keep this window open until done."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:129 src/Module/BaseProfile.php:71
|
||||
msgid "Photo Albums"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:130 mod/photos.php:1638
|
||||
msgid "Recent Photos"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:132 mod/photos.php:1105 mod/photos.php:1640
|
||||
msgid "Upload New Photos"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:150 src/Module/BaseSettings.php:37
|
||||
msgid "everybody"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:183
|
||||
msgid "Contact information unavailable"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:222
|
||||
msgid "Album not found."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:280
|
||||
msgid "Album successfully deleted"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:282
|
||||
msgid "Album was empty."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:314
|
||||
msgid "Failed to delete the photo."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:589
|
||||
msgid "a photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:589
|
||||
#, php-format
|
||||
msgid "%1$s was tagged in %2$s by %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:672 mod/photos.php:675 mod/photos.php:702
|
||||
#: mod/wall_upload.php:216 src/Module/Settings/Profile/Photo/Index.php:61
|
||||
#, php-format
|
||||
msgid "Image exceeds size limit of %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:678
|
||||
msgid "Image upload didn't complete, please try again"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:681
|
||||
msgid "Image file is missing"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:686
|
||||
msgid ""
|
||||
"Server can't accept new file upload at this time, please contact your "
|
||||
"administrator"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:710
|
||||
msgid "Image file is empty."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:725 mod/wall_upload.php:175
|
||||
#: src/Module/Settings/Profile/Photo/Index.php:70
|
||||
msgid "Unable to process image."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:754 mod/wall_upload.php:241
|
||||
#: src/Module/Settings/Profile/Photo/Index.php:97
|
||||
msgid "Image upload failed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:841
|
||||
msgid "No photos selected"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:907 mod/videos.php:182
|
||||
msgid "Access to this item is restricted."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:961
|
||||
msgid "Upload Photos"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:965 mod/photos.php:1050
|
||||
msgid "New album name: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:966
|
||||
msgid "or select existing album:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:967
|
||||
msgid "Do not show a status post for this upload"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1033
|
||||
msgid "Do you really want to delete this photo album and all its photos?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1034 mod/photos.php:1055
|
||||
msgid "Delete Album"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1061
|
||||
msgid "Edit Album"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1062
|
||||
msgid "Drop Album"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1067
|
||||
msgid "Show Newest First"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1069
|
||||
msgid "Show Oldest First"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1090 mod/photos.php:1623
|
||||
msgid "View Photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1127
|
||||
msgid "Permission denied. Access to this item may be restricted."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1129
|
||||
msgid "Photo not available"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1139
|
||||
msgid "Do you really want to delete this photo?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1140 mod/photos.php:1340
|
||||
msgid "Delete Photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1231
|
||||
msgid "View photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1233
|
||||
msgid "Edit photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1234
|
||||
msgid "Delete photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1235
|
||||
msgid "Use as profile photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1242
|
||||
msgid "Private Photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1248
|
||||
msgid "View Full Size"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1308
|
||||
msgid "Tags: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1311
|
||||
msgid "[Select tags to remove]"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1326
|
||||
msgid "New album name"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1327
|
||||
msgid "Caption"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1328
|
||||
msgid "Add a Tag"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1328
|
||||
msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1329
|
||||
msgid "Do not rotate"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1330
|
||||
msgid "Rotate CW (right)"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1331
|
||||
msgid "Rotate CCW (left)"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1377 mod/photos.php:1434 mod/photos.php:1509
|
||||
#: src/Module/Contact.php:1096 src/Module/Item/Compose.php:142
|
||||
#: src/Object/Post.php:951
|
||||
msgid "This is you"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1379 mod/photos.php:1436 mod/photos.php:1511
|
||||
#: src/Object/Post.php:491 src/Object/Post.php:953
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1533
|
||||
msgid "Like"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1534 src/Object/Post.php:350
|
||||
msgid "I like this (toggle)"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1535
|
||||
msgid "Dislike"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1537 src/Object/Post.php:351
|
||||
msgid "I don't like this (toggle)"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1559
|
||||
msgid "Map"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1629 mod/videos.php:259
|
||||
msgid "View Album"
|
||||
msgstr ""
|
||||
|
||||
#: mod/ping.php:285
|
||||
msgid "{0} wants to be your friend"
|
||||
msgstr ""
|
||||
|
||||
#: mod/ping.php:302
|
||||
msgid "{0} requested registration"
|
||||
msgstr ""
|
||||
|
||||
#: mod/ping.php:315
|
||||
#, php-format
|
||||
msgid "{0} and %d others requested registration"
|
||||
msgstr ""
|
||||
|
||||
#: mod/redir.php:50 mod/redir.php:130
|
||||
msgid "Bad Request."
|
||||
msgstr ""
|
||||
|
||||
#: mod/removeme.php:63
|
||||
msgid "User deleted their account"
|
||||
msgstr ""
|
||||
|
||||
#: mod/removeme.php:64
|
||||
msgid ""
|
||||
"On your Friendica node an user deleted their account. Please ensure that "
|
||||
"their data is removed from the backups."
|
||||
msgstr ""
|
||||
|
||||
#: mod/removeme.php:65
|
||||
#, php-format
|
||||
msgid "The user id is %d"
|
||||
msgstr ""
|
||||
|
||||
#: mod/removeme.php:99 mod/removeme.php:102
|
||||
msgid "Remove My Account"
|
||||
msgstr ""
|
||||
|
||||
#: mod/removeme.php:100
|
||||
msgid ""
|
||||
"This will completely remove your account. Once this has been done it is not "
|
||||
"recoverable."
|
||||
msgstr ""
|
||||
|
||||
#: mod/removeme.php:101
|
||||
msgid "Please enter your password for verification:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/repair_ostatus.php:36
|
||||
msgid "Resubscribing to OStatus contacts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/repair_ostatus.php:50 src/Module/Debug/ActivityPubConversion.php:130
|
||||
#: src/Module/Debug/Babel.php:295 src/Module/Security/TwoFactor/Verify.php:96
|
||||
msgid "Error"
|
||||
msgid_plural "Errors"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: mod/settings.php:90
|
||||
msgid "Missing some important data!"
|
||||
msgstr ""
|
||||
|
|
@ -1551,21 +2141,20 @@ msgid "Add application"
|
|||
msgstr ""
|
||||
|
||||
#: mod/settings.php:506 mod/settings.php:613 mod/settings.php:711
|
||||
#: mod/settings.php:846 src/Module/Admin/Themes/Index.php:113
|
||||
#: mod/settings.php:846 src/Module/Admin/Addons/Index.php:69
|
||||
#: src/Module/Admin/Features.php:87 src/Module/Admin/Logs/Settings.php:82
|
||||
#: src/Module/Admin/Site.php:582 src/Module/Admin/Tos.php:66
|
||||
#: src/Module/Admin/Addons/Index.php:69 src/Module/Settings/Delegation.php:170
|
||||
#: src/Module/Admin/Site.php:582 src/Module/Admin/Themes/Index.php:113
|
||||
#: src/Module/Admin/Tos.php:66 src/Module/Settings/Delegation.php:170
|
||||
#: src/Module/Settings/Display.php:189
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:508 mod/settings.php:534
|
||||
#: src/Module/Admin/Users/Create.php:71 src/Module/Admin/Users/Pending.php:104
|
||||
#: src/Module/Admin/Users/Index.php:142 src/Module/Admin/Users/Index.php:162
|
||||
#: src/Module/Admin/Users/Active.php:129 src/Module/Admin/Users/Blocked.php:130
|
||||
#: src/Module/Admin/Users/Deleted.php:88
|
||||
#: src/Module/Admin/Blocklist/Contact.php:90
|
||||
#: src/Module/Contact/Advanced.php:134
|
||||
#: src/Module/Admin/Users/Active.php:129 src/Module/Admin/Users/Blocked.php:130
|
||||
#: src/Module/Admin/Users/Create.php:71 src/Module/Admin/Users/Deleted.php:88
|
||||
#: src/Module/Admin/Users/Index.php:142 src/Module/Admin/Users/Index.php:162
|
||||
#: src/Module/Admin/Users/Pending.php:104 src/Module/Contact/Advanced.php:134
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2277,210 +2866,14 @@ msgstr ""
|
|||
msgid "Resend relocate message to contacts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/ping.php:285
|
||||
msgid "{0} wants to be your friend"
|
||||
msgstr ""
|
||||
|
||||
#: mod/ping.php:302
|
||||
msgid "{0} requested registration"
|
||||
msgstr ""
|
||||
|
||||
#: mod/ping.php:315
|
||||
#, php-format
|
||||
msgid "{0} and %d others requested registration"
|
||||
msgstr ""
|
||||
|
||||
#: mod/repair_ostatus.php:36
|
||||
msgid "Resubscribing to OStatus contacts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/repair_ostatus.php:50 src/Module/Security/TwoFactor/Verify.php:96
|
||||
#: src/Module/Debug/Babel.php:295
|
||||
#: src/Module/Debug/ActivityPubConversion.php:130
|
||||
msgid "Error"
|
||||
msgid_plural "Errors"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: mod/repair_ostatus.php:65 mod/ostatus_subscribe.php:79
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#: mod/repair_ostatus.php:71 mod/ostatus_subscribe.php:103
|
||||
msgid "Keep this window open until done."
|
||||
msgstr ""
|
||||
|
||||
#: mod/unfollow.php:65 mod/unfollow.php:133
|
||||
msgid "You aren't following this contact."
|
||||
msgstr ""
|
||||
|
||||
#: mod/unfollow.php:71 mod/unfollow.php:139
|
||||
msgid "Unfollowing is currently not supported by your network."
|
||||
msgstr ""
|
||||
|
||||
#: mod/unfollow.php:95
|
||||
msgid "Disconnect/Unfollow"
|
||||
msgstr ""
|
||||
|
||||
#: mod/unfollow.php:97 mod/follow.php:148
|
||||
msgid "Your Identity Address:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/unfollow.php:99 mod/dfrn_request.php:641 mod/follow.php:74
|
||||
#: src/Module/RemoteFollow.php:109
|
||||
msgid "Submit Request"
|
||||
msgstr ""
|
||||
|
||||
#: mod/unfollow.php:103 mod/follow.php:149
|
||||
#: src/Module/Notifications/Introductions.php:108
|
||||
#: src/Module/Notifications/Introductions.php:183 src/Module/Contact.php:642
|
||||
#: src/Module/Admin/Blocklist/Contact.php:100
|
||||
msgid "Profile URL"
|
||||
msgstr ""
|
||||
|
||||
#: mod/unfollow.php:113 mod/follow.php:171 src/Module/Contact.php:931
|
||||
#: src/Module/BaseProfile.php:63
|
||||
msgid "Status Messages and Posts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:46 mod/message.php:127 src/Content/Nav.php:276
|
||||
msgid "New Message"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:87
|
||||
msgid "Unable to locate contact information."
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:121 src/Module/Notifications/Notification.php:56
|
||||
#: src/Module/Notifications/Introductions.php:114
|
||||
#: src/Module/Notifications/Introductions.php:155
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:147
|
||||
msgid "Conversation not found."
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:152
|
||||
msgid "Message was not deleted."
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:170
|
||||
msgid "Conversation was not removed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:233
|
||||
msgid "No messages."
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:289
|
||||
msgid "Message not available."
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:339
|
||||
msgid "Delete message"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:341 mod/message.php:468
|
||||
msgid "D, d M Y - g:i A"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:356 mod/message.php:465
|
||||
msgid "Delete conversation"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:358
|
||||
#: mod/suggest.php:44
|
||||
msgid ""
|
||||
"No secure communications available. You <strong>may</strong> be able to "
|
||||
"respond from the sender's profile page."
|
||||
"No suggestions available. If this is a new site, please try again in 24 "
|
||||
"hours."
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:362
|
||||
msgid "Send Reply"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:444
|
||||
#, php-format
|
||||
msgid "Unknown sender - %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:446
|
||||
#, php-format
|
||||
msgid "You and %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:448
|
||||
#, php-format
|
||||
msgid "%s and You"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:471
|
||||
#, php-format
|
||||
msgid "%d message"
|
||||
msgid_plural "%d messages"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: mod/ostatus_subscribe.php:35
|
||||
msgid "Subscribing to OStatus contacts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/ostatus_subscribe.php:45
|
||||
msgid "No contact provided."
|
||||
msgstr ""
|
||||
|
||||
#: mod/ostatus_subscribe.php:51
|
||||
msgid "Couldn't fetch information for contact."
|
||||
msgstr ""
|
||||
|
||||
#: mod/ostatus_subscribe.php:61
|
||||
msgid "Couldn't fetch friends for contact."
|
||||
msgstr ""
|
||||
|
||||
#: mod/ostatus_subscribe.php:93
|
||||
msgid "success"
|
||||
msgstr ""
|
||||
|
||||
#: mod/ostatus_subscribe.php:95
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: mod/ostatus_subscribe.php:98 src/Object/Post.php:310
|
||||
msgid "ignored"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_poll.php:135 mod/dfrn_poll.php:506
|
||||
#, php-format
|
||||
msgid "%1$s welcomes %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/removeme.php:63
|
||||
msgid "User deleted their account"
|
||||
msgstr ""
|
||||
|
||||
#: mod/removeme.php:64
|
||||
msgid ""
|
||||
"On your Friendica node an user deleted their account. Please ensure that "
|
||||
"their data is removed from the backups."
|
||||
msgstr ""
|
||||
|
||||
#: mod/removeme.php:65
|
||||
#, php-format
|
||||
msgid "The user id is %d"
|
||||
msgstr ""
|
||||
|
||||
#: mod/removeme.php:99 mod/removeme.php:102
|
||||
msgid "Remove My Account"
|
||||
msgstr ""
|
||||
|
||||
#: mod/removeme.php:100
|
||||
msgid ""
|
||||
"This will completely remove your account. Once this has been done it is not "
|
||||
"recoverable."
|
||||
msgstr ""
|
||||
|
||||
#: mod/removeme.php:101
|
||||
msgid "Please enter your password for verification:"
|
||||
#: mod/suggest.php:55 src/Content/Widget.php:79 view/theme/vier/theme.php:175
|
||||
msgid "Friend Suggestions"
|
||||
msgstr ""
|
||||
|
||||
#: mod/tagrm.php:113
|
||||
|
|
@ -2496,413 +2889,6 @@ msgstr ""
|
|||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: mod/suggest.php:44
|
||||
msgid ""
|
||||
"No suggestions available. If this is a new site, please try again in 24 "
|
||||
"hours."
|
||||
msgstr ""
|
||||
|
||||
#: mod/display.php:233 mod/display.php:317
|
||||
msgid "The requested item doesn't exist or has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: mod/display.php:281 mod/cal.php:143 src/Module/Profile/Status.php:109
|
||||
#: src/Module/Profile/Profile.php:94 src/Module/Profile/Profile.php:109
|
||||
#: src/Module/Update/Profile.php:55
|
||||
msgid "Access to this profile has been restricted."
|
||||
msgstr ""
|
||||
|
||||
#: mod/display.php:397
|
||||
msgid "The feed for this item is unavailable."
|
||||
msgstr ""
|
||||
|
||||
#: mod/wall_upload.php:52 mod/wall_upload.php:63 mod/wall_upload.php:108
|
||||
#: mod/wall_upload.php:159 mod/wall_upload.php:162 mod/wall_attach.php:42
|
||||
#: mod/wall_attach.php:49 mod/wall_attach.php:87
|
||||
msgid "Invalid request."
|
||||
msgstr ""
|
||||
|
||||
#: mod/wall_upload.php:175 mod/photos.php:725
|
||||
#: src/Module/Settings/Profile/Photo/Index.php:70
|
||||
msgid "Unable to process image."
|
||||
msgstr ""
|
||||
|
||||
#: mod/wall_upload.php:216 mod/photos.php:672 mod/photos.php:675
|
||||
#: mod/photos.php:702 src/Module/Settings/Profile/Photo/Index.php:61
|
||||
#, php-format
|
||||
msgid "Image exceeds size limit of %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/wall_upload.php:233
|
||||
msgid "Wall Photos"
|
||||
msgstr ""
|
||||
|
||||
#: mod/wall_upload.php:241 mod/photos.php:754
|
||||
#: src/Module/Settings/Profile/Photo/Index.php:97
|
||||
msgid "Image upload failed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:40
|
||||
msgid "No valid account found."
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:52
|
||||
msgid "Password reset request issued. Check your email."
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\tDear %1$s,\n"
|
||||
"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
|
||||
"\t\tpassword. In order to confirm this request, please select the "
|
||||
"verification link\n"
|
||||
"\t\tbelow or paste it into your web browser address bar.\n"
|
||||
"\n"
|
||||
"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
|
||||
"\t\tprovided and ignore and/or delete this email, the request will expire "
|
||||
"shortly.\n"
|
||||
"\n"
|
||||
"\t\tYour password will not be changed unless we can verify that you\n"
|
||||
"\t\tissued this request."
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:69
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\tFollow this link soon to verify your identity:\n"
|
||||
"\n"
|
||||
"\t\t%1$s\n"
|
||||
"\n"
|
||||
"\t\tYou will then receive a follow-up message containing the new password.\n"
|
||||
"\t\tYou may change that password from your account settings page after "
|
||||
"logging in.\n"
|
||||
"\n"
|
||||
"\t\tThe login details are as follows:\n"
|
||||
"\n"
|
||||
"\t\tSite Location:\t%2$s\n"
|
||||
"\t\tLogin Name:\t%3$s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:84
|
||||
#, php-format
|
||||
msgid "Password reset requested at %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:100
|
||||
msgid ""
|
||||
"Request could not be verified. (You may have previously submitted it.) "
|
||||
"Password reset failed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:113
|
||||
msgid "Request has expired, please make a new one."
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:128
|
||||
msgid "Forgot your Password?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:129
|
||||
msgid ""
|
||||
"Enter your email address and submit to have your password reset. Then check "
|
||||
"your email for further instructions."
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:130 src/Module/Security/Login.php:144
|
||||
msgid "Nickname or Email: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:131
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:146 src/Module/Security/Login.php:156
|
||||
msgid "Password Reset"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:147
|
||||
msgid "Your password has been reset as requested."
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:148
|
||||
msgid "Your new password is"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:149
|
||||
msgid "Save or copy your new password - and then"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:150
|
||||
msgid "click here to login"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:151
|
||||
msgid ""
|
||||
"Your password may be changed from the <em>Settings</em> page after "
|
||||
"successful login."
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:155
|
||||
msgid "Your password has been reset."
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:158
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\t\tDear %1$s,\n"
|
||||
"\t\t\t\tYour password has been changed as requested. Please retain this\n"
|
||||
"\t\t\tinformation for your records (or change your password immediately to\n"
|
||||
"\t\t\tsomething that you will remember).\n"
|
||||
"\t\t"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:164
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\t\tYour login details are as follows:\n"
|
||||
"\n"
|
||||
"\t\t\tSite Location:\t%1$s\n"
|
||||
"\t\t\tLogin Name:\t%2$s\n"
|
||||
"\t\t\tPassword:\t%3$s\n"
|
||||
"\n"
|
||||
"\t\t\tYou may change that password from your account settings page after "
|
||||
"logging in.\n"
|
||||
"\t\t"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:176
|
||||
#, php-format
|
||||
msgid "Your password has been changed at %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:113
|
||||
msgid "This introduction has already been accepted."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:131 mod/dfrn_request.php:369
|
||||
msgid "Profile location is not valid or does not contain profile information."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:135 mod/dfrn_request.php:373
|
||||
msgid "Warning: profile location has no identifiable owner name."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:138 mod/dfrn_request.php:376
|
||||
msgid "Warning: profile location has no profile photo."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:142 mod/dfrn_request.php:380
|
||||
#, php-format
|
||||
msgid "%d required parameter was not found at the given location"
|
||||
msgid_plural "%d required parameters were not found at the given location"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: mod/dfrn_request.php:180
|
||||
msgid "Introduction complete."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:216
|
||||
msgid "Unrecoverable protocol error."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:243 src/Module/RemoteFollow.php:54
|
||||
msgid "Profile unavailable."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:264
|
||||
#, php-format
|
||||
msgid "%s has received too many connection requests today."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:265
|
||||
msgid "Spam protection measures have been invoked."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:266
|
||||
msgid "Friends are advised to please try again in 24 hours."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:290 src/Module/RemoteFollow.php:60
|
||||
msgid "Invalid locator"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:326
|
||||
msgid "You have already introduced yourself here."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:329
|
||||
#, php-format
|
||||
msgid "Apparently you are already friends with %s."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:349
|
||||
msgid "Invalid profile URL."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:355 src/Model/Contact.php:2158
|
||||
msgid "Disallowed profile URL."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:361 src/Module/Friendica.php:80
|
||||
#: src/Model/Contact.php:2163
|
||||
msgid "Blocked domain"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:428 src/Module/Contact.php:157
|
||||
msgid "Failed to update contact record."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:448
|
||||
msgid "Your introduction has been sent."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:480 src/Module/RemoteFollow.php:72
|
||||
msgid ""
|
||||
"Remote subscription can't be done for your network. Please subscribe "
|
||||
"directly on your system."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:496
|
||||
msgid "Please login to confirm introduction."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:504
|
||||
msgid ""
|
||||
"Incorrect identity currently logged in. Please login to <strong>this</"
|
||||
"strong> profile."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:518 mod/dfrn_request.php:533
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:529
|
||||
msgid "Hide this contact"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:531
|
||||
#, php-format
|
||||
msgid "Welcome home %s."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:532
|
||||
#, php-format
|
||||
msgid "Please confirm your introduction/connection request to %s."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:636 src/Module/RemoteFollow.php:104
|
||||
msgid "Friend/Connection Request"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:637
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Enter your Webfinger address (user@domain.tld) or profile URL here. If this "
|
||||
"isn't supported by your system (for example it doesn't work with Diaspora), "
|
||||
"you have to subscribe to <strong>%s</strong> directly on your system"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:638 src/Module/RemoteFollow.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you are not yet a member of the free social web, <a href=\"%s\">follow "
|
||||
"this link to find a public Friendica node and join us today</a>."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:639 src/Module/RemoteFollow.php:107
|
||||
msgid "Your Webfinger address or profile URL:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:640 mod/follow.php:147 src/Module/RemoteFollow.php:108
|
||||
msgid "Please answer the following:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:648 mod/follow.php:161
|
||||
#, php-format
|
||||
msgid "%s knows you"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:649 mod/follow.php:162
|
||||
msgid "Add a personal note:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/api.php:102 mod/api.php:124
|
||||
msgid "Authorize application connection"
|
||||
msgstr ""
|
||||
|
||||
#: mod/api.php:103
|
||||
msgid "Return to your app and insert this Securty Code:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/api.php:112 src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58
|
||||
msgid "Please login to continue."
|
||||
msgstr ""
|
||||
|
||||
#: mod/api.php:126
|
||||
msgid ""
|
||||
"Do you want to authorize this application to access your posts and contacts, "
|
||||
"and/or create new posts for you?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/api.php:127 src/Module/Notifications/Introductions.php:123
|
||||
#: src/Module/Register.php:115 src/Module/Contact.php:456
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: mod/api.php:128 src/Module/Notifications/Introductions.php:123
|
||||
#: src/Module/Register.php:116
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: mod/wall_attach.php:105
|
||||
msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
|
||||
msgstr ""
|
||||
|
||||
#: mod/wall_attach.php:105
|
||||
msgid "Or - did you try to upload an empty file?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/wall_attach.php:116
|
||||
#, php-format
|
||||
msgid "File exceeds size limit of %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/wall_attach.php:131
|
||||
msgid "File upload failed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/item.php:133 mod/item.php:137
|
||||
msgid "Unable to locate original post."
|
||||
msgstr ""
|
||||
|
||||
#: mod/item.php:332 mod/item.php:337
|
||||
msgid "Empty post discarded."
|
||||
msgstr ""
|
||||
|
||||
#: mod/item.php:698
|
||||
msgid "Post updated."
|
||||
msgstr ""
|
||||
|
||||
#: mod/item.php:715 mod/item.php:720
|
||||
msgid "Item wasn't stored."
|
||||
msgstr ""
|
||||
|
||||
#: mod/item.php:731
|
||||
msgid "Item couldn't be fetched."
|
||||
msgstr ""
|
||||
|
||||
#: mod/item.php:877 src/Module/Debug/ItemBody.php:47
|
||||
#: src/Module/Debug/ItemBody.php:60 src/Module/Admin/Themes/Details.php:39
|
||||
#: src/Module/Admin/Themes/Index.php:59
|
||||
msgid "Item not found."
|
||||
msgstr ""
|
||||
|
||||
#: mod/uimport.php:45
|
||||
msgid "User imports on closed servers can only be done by an administrator."
|
||||
msgstr ""
|
||||
|
|
@ -2948,455 +2934,79 @@ msgid ""
|
|||
"select \"Export account\""
|
||||
msgstr ""
|
||||
|
||||
#: mod/cal.php:72 mod/cal.php:133 src/Module/Profile/Common.php:41
|
||||
#: src/Module/Profile/Common.php:53 src/Module/Profile/Status.php:58
|
||||
#: src/Module/Profile/Contacts.php:40 src/Module/Profile/Contacts.php:51
|
||||
#: src/Module/Register.php:258 src/Module/HoverCard.php:53
|
||||
msgid "User not found."
|
||||
#: mod/unfollow.php:65 mod/unfollow.php:133
|
||||
msgid "You aren't following this contact."
|
||||
msgstr ""
|
||||
|
||||
#: mod/cal.php:275 mod/events.php:418
|
||||
msgid "View"
|
||||
#: mod/unfollow.php:71 mod/unfollow.php:139
|
||||
msgid "Unfollowing is currently not supported by your network."
|
||||
msgstr ""
|
||||
|
||||
#: mod/cal.php:276 mod/events.php:420
|
||||
msgid "Previous"
|
||||
#: mod/unfollow.php:95
|
||||
msgid "Disconnect/Unfollow"
|
||||
msgstr ""
|
||||
|
||||
#: mod/cal.php:277 mod/events.php:421 src/Module/Install.php:196
|
||||
msgid "Next"
|
||||
#: mod/videos.php:134
|
||||
msgid "No videos selected"
|
||||
msgstr ""
|
||||
|
||||
#: mod/cal.php:280 mod/events.php:426 src/Model/Event.php:463
|
||||
msgid "today"
|
||||
#: mod/videos.php:252 src/Model/Item.php:2664
|
||||
msgid "View Video"
|
||||
msgstr ""
|
||||
|
||||
#: mod/cal.php:281 mod/events.php:427 src/Util/Temporal.php:330
|
||||
#: src/Model/Event.php:464
|
||||
msgid "month"
|
||||
#: mod/videos.php:267
|
||||
msgid "Recent Videos"
|
||||
msgstr ""
|
||||
|
||||
#: mod/cal.php:282 mod/events.php:428 src/Util/Temporal.php:331
|
||||
#: src/Model/Event.php:465
|
||||
msgid "week"
|
||||
#: mod/videos.php:269
|
||||
msgid "Upload New Videos"
|
||||
msgstr ""
|
||||
|
||||
#: mod/cal.php:283 mod/events.php:429 src/Util/Temporal.php:332
|
||||
#: src/Model/Event.php:466
|
||||
msgid "day"
|
||||
msgstr ""
|
||||
|
||||
#: mod/cal.php:284 mod/events.php:430
|
||||
msgid "list"
|
||||
msgstr ""
|
||||
|
||||
#: mod/cal.php:297 src/Console/User.php:152 src/Console/User.php:250
|
||||
#: src/Console/User.php:283 src/Console/User.php:309
|
||||
#: src/Module/Api/Twitter/ContactEndpoint.php:73
|
||||
#: src/Module/Admin/Users/Pending.php:71 src/Module/Admin/Users/Index.php:80
|
||||
#: src/Module/Admin/Users/Active.php:73 src/Module/Admin/Users/Blocked.php:74
|
||||
#: src/Model/User.php:607
|
||||
msgid "User not found"
|
||||
msgstr ""
|
||||
|
||||
#: mod/cal.php:306
|
||||
msgid "This calendar format is not supported"
|
||||
msgstr ""
|
||||
|
||||
#: mod/cal.php:308
|
||||
msgid "No exportable data found"
|
||||
msgstr ""
|
||||
|
||||
#: mod/cal.php:325
|
||||
msgid "calendar"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:44 mod/editpost.php:54
|
||||
msgid "Item not found"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:61
|
||||
msgid "Edit post"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:88 mod/notes.php:63 src/Module/Filer/SaveTag.php:70
|
||||
#: src/Content/Text/HTML.php:889
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:95
|
||||
msgid "web link"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:96
|
||||
msgid "Insert video link"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:97
|
||||
msgid "video link"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:98
|
||||
msgid "Insert audio link"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:99
|
||||
msgid "audio link"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:113 src/Core/ACL.php:313
|
||||
msgid "CC: email addresses"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:120 src/Core/ACL.php:314
|
||||
msgid "Example: bob@example.com, mary@example.com"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:138 mod/events.php:140
|
||||
msgid "Event can not end before it has started."
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:147 mod/events.php:149
|
||||
msgid "Event title and start time are required."
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:419
|
||||
msgid "Create New Event"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:531
|
||||
msgid "Event details"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:532
|
||||
msgid "Starting date and Title are required."
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:533 mod/events.php:538
|
||||
msgid "Event Starts:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:533 mod/events.php:565
|
||||
#: src/Module/Security/TwoFactor/Verify.php:99 src/Module/Debug/Probe.php:60
|
||||
#: src/Module/Register.php:135 src/Module/Install.php:189
|
||||
#: src/Module/Install.php:222 src/Module/Install.php:227
|
||||
#: src/Module/Install.php:246 src/Module/Install.php:257
|
||||
#: src/Module/Install.php:262 src/Module/Install.php:268
|
||||
#: src/Module/Install.php:273 src/Module/Install.php:287
|
||||
#: src/Module/Install.php:302 src/Module/Install.php:329
|
||||
#: src/Module/Admin/Blocklist/Server.php:79
|
||||
#: src/Module/Admin/Blocklist/Server.php:80
|
||||
#: src/Module/Admin/Blocklist/Server.php:99
|
||||
#: src/Module/Admin/Blocklist/Server.php:100
|
||||
#: src/Module/Admin/Item/Delete.php:70
|
||||
#: src/Module/Settings/TwoFactor/Index.php:133
|
||||
#: src/Module/Settings/TwoFactor/Verify.php:141
|
||||
msgid "Required"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:546 mod/events.php:571
|
||||
msgid "Finish date/time is not known or not relevant"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:548 mod/events.php:553
|
||||
msgid "Event Finishes:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:559 mod/events.php:572
|
||||
msgid "Adjust for viewer timezone"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:561 src/Module/Profile/Profile.php:172
|
||||
#: src/Module/Settings/Profile/Index.php:253
|
||||
msgid "Description:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:563 src/Module/Notifications/Introductions.php:172
|
||||
#: src/Module/Profile/Profile.php:190 src/Module/Contact.php:646
|
||||
#: src/Module/Directory.php:156 src/Model/Event.php:84 src/Model/Event.php:111
|
||||
#: src/Model/Event.php:472 src/Model/Event.php:959 src/Model/Profile.php:358
|
||||
msgid "Location:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:565 mod/events.php:567
|
||||
msgid "Title:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:568 mod/events.php:569
|
||||
msgid "Share this event"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:576 src/Module/Profile/Profile.php:244
|
||||
msgid "Basic"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:577 src/Module/Profile/Profile.php:245
|
||||
#: src/Module/Contact.php:953 src/Module/Admin/Site.php:587
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:594
|
||||
msgid "Failed to remove event"
|
||||
msgstr ""
|
||||
|
||||
#: mod/follow.php:84
|
||||
msgid "You already added this contact."
|
||||
msgstr ""
|
||||
|
||||
#: mod/follow.php:100
|
||||
msgid "The network type couldn't be detected. Contact can't be added."
|
||||
msgstr ""
|
||||
|
||||
#: mod/follow.php:108
|
||||
msgid "Diaspora support isn't enabled. Contact can't be added."
|
||||
msgstr ""
|
||||
|
||||
#: mod/follow.php:113
|
||||
msgid "OStatus support is disabled. Contact can't be added."
|
||||
msgstr ""
|
||||
|
||||
#: mod/follow.php:150 src/Module/Notifications/Introductions.php:176
|
||||
#: src/Module/Profile/Profile.php:203 src/Module/Contact.php:652
|
||||
msgid "Tags:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/follow.php:203
|
||||
msgid "The contact could not be added."
|
||||
msgstr ""
|
||||
|
||||
#: mod/fbrowser.php:107 mod/fbrowser.php:136
|
||||
#: src/Module/Settings/Profile/Photo/Index.php:130
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
#: mod/fbrowser.php:131
|
||||
msgid "Files"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notes.php:51 src/Module/BaseProfile.php:110
|
||||
msgid "Personal Notes"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notes.php:59
|
||||
msgid "Personal notes are visible only by yourself."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:129 src/Module/BaseProfile.php:71
|
||||
msgid "Photo Albums"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:130 mod/photos.php:1638
|
||||
msgid "Recent Photos"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:132 mod/photos.php:1105 mod/photos.php:1640
|
||||
msgid "Upload New Photos"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:150 src/Module/BaseSettings.php:37
|
||||
msgid "everybody"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:183
|
||||
msgid "Contact information unavailable"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:222
|
||||
msgid "Album not found."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:280
|
||||
msgid "Album successfully deleted"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:282
|
||||
msgid "Album was empty."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:314
|
||||
msgid "Failed to delete the photo."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:589
|
||||
msgid "a photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:589
|
||||
#: mod/wallmessage.php:68 mod/wallmessage.php:129
|
||||
#, php-format
|
||||
msgid "%1$s was tagged in %2$s by %3$s"
|
||||
msgid "Number of daily wall messages for %s exceeded. Message failed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:678
|
||||
msgid "Image upload didn't complete, please try again"
|
||||
#: mod/wallmessage.php:79
|
||||
msgid "Unable to check your home location."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:681
|
||||
msgid "Image file is missing"
|
||||
#: mod/wallmessage.php:103 mod/wallmessage.php:112
|
||||
msgid "No recipient."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:686
|
||||
#: mod/wallmessage.php:143
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Server can't accept new file upload at this time, please contact your "
|
||||
"administrator"
|
||||
"If you wish for %s to respond, please check that the privacy settings on "
|
||||
"your site allow private mail from unknown senders."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:710
|
||||
msgid "Image file is empty."
|
||||
#: mod/wall_attach.php:42 mod/wall_attach.php:49 mod/wall_attach.php:87
|
||||
#: mod/wall_upload.php:52 mod/wall_upload.php:63 mod/wall_upload.php:108
|
||||
#: mod/wall_upload.php:159 mod/wall_upload.php:162
|
||||
msgid "Invalid request."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:841
|
||||
msgid "No photos selected"
|
||||
#: mod/wall_attach.php:105
|
||||
msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:961
|
||||
msgid "Upload Photos"
|
||||
#: mod/wall_attach.php:105
|
||||
msgid "Or - did you try to upload an empty file?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:965 mod/photos.php:1050
|
||||
msgid "New album name: "
|
||||
#: mod/wall_attach.php:116
|
||||
#, php-format
|
||||
msgid "File exceeds size limit of %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:966
|
||||
msgid "or select existing album:"
|
||||
#: mod/wall_attach.php:131
|
||||
msgid "File upload failed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:967
|
||||
msgid "Do not show a status post for this upload"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1033
|
||||
msgid "Do you really want to delete this photo album and all its photos?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1034 mod/photos.php:1055
|
||||
msgid "Delete Album"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1061
|
||||
msgid "Edit Album"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1062
|
||||
msgid "Drop Album"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1067
|
||||
msgid "Show Newest First"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1069
|
||||
msgid "Show Oldest First"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1090 mod/photos.php:1623
|
||||
msgid "View Photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1127
|
||||
msgid "Permission denied. Access to this item may be restricted."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1129
|
||||
msgid "Photo not available"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1139
|
||||
msgid "Do you really want to delete this photo?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1140 mod/photos.php:1340
|
||||
msgid "Delete Photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1231
|
||||
msgid "View photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1233
|
||||
msgid "Edit photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1234
|
||||
msgid "Delete photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1235
|
||||
msgid "Use as profile photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1242
|
||||
msgid "Private Photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1248
|
||||
msgid "View Full Size"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1308
|
||||
msgid "Tags: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1311
|
||||
msgid "[Select tags to remove]"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1326
|
||||
msgid "New album name"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1327
|
||||
msgid "Caption"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1328
|
||||
msgid "Add a Tag"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1328
|
||||
msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1329
|
||||
msgid "Do not rotate"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1330
|
||||
msgid "Rotate CW (right)"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1331
|
||||
msgid "Rotate CCW (left)"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1377 mod/photos.php:1434 mod/photos.php:1509
|
||||
#: src/Object/Post.php:951 src/Module/Contact.php:1096
|
||||
#: src/Module/Item/Compose.php:142
|
||||
msgid "This is you"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1379 mod/photos.php:1436 mod/photos.php:1511
|
||||
#: src/Object/Post.php:491 src/Object/Post.php:953
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1533
|
||||
msgid "Like"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1534 src/Object/Post.php:350
|
||||
msgid "I like this (toggle)"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1535
|
||||
msgid "Dislike"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1537 src/Object/Post.php:351
|
||||
msgid "I don't like this (toggle)"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1559
|
||||
msgid "Map"
|
||||
#: mod/wall_upload.php:233
|
||||
msgid "Wall Photos"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Module.php:241
|
||||
|
|
@ -3426,167 +3036,831 @@ msgstr ""
|
|||
msgid "Page not found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Security/Authentication.php:209 src/Security/Authentication.php:261
|
||||
msgid "Login failed."
|
||||
#: src/App.php:311
|
||||
msgid "No system theme config value set."
|
||||
msgstr ""
|
||||
|
||||
#: src/Security/Authentication.php:223 src/Model/User.php:843
|
||||
#: src/BaseModule.php:150
|
||||
msgid ""
|
||||
"We encountered a problem while logging in with the OpenID you provided. "
|
||||
"Please check the correct spelling of the ID."
|
||||
"The form security token was not correct. This probably happened because the "
|
||||
"form has been opened for too long (>3 hours) before submitting it."
|
||||
msgstr ""
|
||||
|
||||
#: src/Security/Authentication.php:223 src/Model/User.php:843
|
||||
msgid "The error message was:"
|
||||
#: src/BaseModule.php:179
|
||||
msgid "All contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Security/Authentication.php:272
|
||||
msgid "Login failed. Please check your credentials."
|
||||
#: src/BaseModule.php:184 src/Content/Widget.php:238 src/Core/ACL.php:183
|
||||
#: src/Module/Contact.php:852 src/Module/PermissionTooltip.php:77
|
||||
#: src/Module/PermissionTooltip.php:99
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#: src/Security/Authentication.php:391
|
||||
#: src/BaseModule.php:189 src/Content/Widget.php:239 src/Module/Contact.php:853
|
||||
msgid "Following"
|
||||
msgstr ""
|
||||
|
||||
#: src/BaseModule.php:194 src/Content/Widget.php:240 src/Module/Contact.php:854
|
||||
msgid "Mutual friends"
|
||||
msgstr ""
|
||||
|
||||
#: src/BaseModule.php:202
|
||||
msgid "Common"
|
||||
msgstr ""
|
||||
|
||||
#: src/Console/ArchiveContact.php:105
|
||||
#, php-format
|
||||
msgid "Welcome %s"
|
||||
msgid "Could not find any unarchived contact entry for this URL (%s)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Security/Authentication.php:392
|
||||
msgid "Please upload a profile photo."
|
||||
#: src/Console/ArchiveContact.php:108
|
||||
msgid "The contact entries have been archived"
|
||||
msgstr ""
|
||||
|
||||
#: src/Database/DBStructure.php:64
|
||||
#: src/Console/GlobalCommunityBlock.php:96
|
||||
#: src/Module/Admin/Blocklist/Contact.php:49
|
||||
#, php-format
|
||||
msgid "The database version had been set to %s."
|
||||
msgid "Could not find any contact entry for this URL (%s)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Database/DBStructure.php:77
|
||||
#: src/Console/GlobalCommunityBlock.php:101
|
||||
#: src/Module/Admin/Blocklist/Contact.php:47
|
||||
msgid "The contact has been blocked from the node"
|
||||
msgstr ""
|
||||
|
||||
#: src/Console/PostUpdate.php:87
|
||||
#, php-format
|
||||
msgid "Post update version number has been set to %s."
|
||||
msgstr ""
|
||||
|
||||
#: src/Console/PostUpdate.php:95
|
||||
msgid "Check for pending update actions."
|
||||
msgstr ""
|
||||
|
||||
#: src/Console/PostUpdate.php:97
|
||||
msgid "Done."
|
||||
msgstr ""
|
||||
|
||||
#: src/Console/PostUpdate.php:99
|
||||
msgid "Execute pending post updates."
|
||||
msgstr ""
|
||||
|
||||
#: src/Console/PostUpdate.php:105
|
||||
msgid "All pending post updates are done."
|
||||
msgstr ""
|
||||
|
||||
#: src/Console/User.php:158
|
||||
msgid "Enter new password: "
|
||||
msgstr ""
|
||||
|
||||
#: src/Console/User.php:193
|
||||
msgid "Enter user name: "
|
||||
msgstr ""
|
||||
|
||||
#: src/Console/User.php:201 src/Console/User.php:241 src/Console/User.php:274
|
||||
#: src/Console/User.php:300
|
||||
msgid "Enter user nickname: "
|
||||
msgstr ""
|
||||
|
||||
#: src/Console/User.php:209
|
||||
msgid "Enter user email address: "
|
||||
msgstr ""
|
||||
|
||||
#: src/Console/User.php:217
|
||||
msgid "Enter a language (optional): "
|
||||
msgstr ""
|
||||
|
||||
#: src/Console/User.php:255
|
||||
msgid "User is not pending."
|
||||
msgstr ""
|
||||
|
||||
#: src/Console/User.php:313
|
||||
msgid "User has already been marked for deletion."
|
||||
msgstr ""
|
||||
|
||||
#: src/Console/User.php:318
|
||||
#, php-format
|
||||
msgid "Type \"yes\" to delete %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Console/User.php:320
|
||||
msgid "Deletion aborted."
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171
|
||||
msgid "newer"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176
|
||||
msgid "older"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:51
|
||||
msgid "Frequently"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:52
|
||||
msgid "Hourly"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:53
|
||||
msgid "Twice daily"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:54
|
||||
msgid "Daily"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:55
|
||||
msgid "Weekly"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:56
|
||||
msgid "Monthly"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:123
|
||||
msgid "DFRN"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:124
|
||||
msgid "OStatus"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:125
|
||||
msgid "RSS/Atom"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:126 src/Module/Admin/Users/Active.php:129
|
||||
#: src/Module/Admin/Users/Blocked.php:130 src/Module/Admin/Users/Create.php:73
|
||||
#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:142
|
||||
#: src/Module/Admin/Users/Index.php:162 src/Module/Admin/Users/Pending.php:104
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:127 src/Module/Debug/Babel.php:309
|
||||
msgid "Diaspora"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:128
|
||||
msgid "Zot!"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:129
|
||||
msgid "LinkedIn"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:130
|
||||
msgid "XMPP/IM"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:131
|
||||
msgid "MySpace"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:132
|
||||
msgid "Google+"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:133
|
||||
msgid "pump.io"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:134
|
||||
msgid "Twitter"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:135
|
||||
msgid "Discourse"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:136
|
||||
msgid "Diaspora Connector"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:137
|
||||
msgid "GNU Social Connector"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:138
|
||||
msgid "ActivityPub"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:139
|
||||
msgid "pnut"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:175
|
||||
#, php-format
|
||||
msgid "%s (via %s)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:96
|
||||
msgid "General Features"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:98
|
||||
msgid "Photo Location"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:98
|
||||
msgid ""
|
||||
"Photo metadata is normally stripped. This extracts the location (if present) "
|
||||
"prior to stripping metadata and links it to a map."
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:99
|
||||
msgid "Trending Tags"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:99
|
||||
msgid ""
|
||||
"Show a community page widget with a list of the most popular tags in recent "
|
||||
"public posts."
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:104
|
||||
msgid "Post Composition Features"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:105
|
||||
msgid "Auto-mention Forums"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:105
|
||||
msgid ""
|
||||
"Add/remove mention when a forum page is selected/deselected in ACL window."
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:106
|
||||
msgid "Explicit Mentions"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:106
|
||||
msgid ""
|
||||
"Add explicit mentions to comment box for manual control over who gets "
|
||||
"mentioned in replies."
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:111
|
||||
msgid "Post/Comment Tools"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:112
|
||||
msgid "Post Categories"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:112
|
||||
msgid "Add categories to your posts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:117
|
||||
msgid "Advanced Profile Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:118
|
||||
msgid "List Forums"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:118
|
||||
msgid "Show visitors public community forums at the Advanced Profile Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:119
|
||||
msgid "Tag Cloud"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:119
|
||||
msgid "Provide a personal tag cloud on your profile page"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:120
|
||||
msgid "Display Membership Date"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:120
|
||||
msgid "Display membership date in profile"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ForumManager.php:145 src/Content/Nav.php:229
|
||||
#: src/Content/Text/HTML.php:910 src/Content/Widget.php:533
|
||||
msgid "Forums"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ForumManager.php:147
|
||||
msgid "External link to forum"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ForumManager.php:150 src/Content/Widget.php:512
|
||||
msgid "show less"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ForumManager.php:151 src/Content/Widget.php:411
|
||||
#: src/Content/Widget.php:513
|
||||
msgid "show more"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:90
|
||||
msgid "Nothing new here"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:94 src/Module/Special/HTTPException.php:75
|
||||
msgid "Go back"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:95
|
||||
msgid "Clear notifications"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:96 src/Content/Text/HTML.php:897
|
||||
msgid "@name, !forum, #tags, content"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:169 src/Module/Security/Login.php:141
|
||||
msgid "Logout"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:169
|
||||
msgid "End this session"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:171 src/Module/Bookmarklet.php:46
|
||||
#: src/Module/Security/Login.php:142
|
||||
msgid "Login"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:171
|
||||
msgid "Sign in"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:177 src/Module/BaseProfile.php:60
|
||||
#: src/Module/Contact.php:655 src/Module/Contact.php:920
|
||||
#: src/Module/Settings/TwoFactor/Index.php:112 view/theme/frio/theme.php:225
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:177 src/Content/Nav.php:263
|
||||
#: view/theme/frio/theme.php:225
|
||||
msgid "Your posts and conversations"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:178 src/Module/BaseProfile.php:52
|
||||
#: src/Module/BaseSettings.php:57 src/Module/Contact.php:657
|
||||
#: src/Module/Contact.php:936 src/Module/Profile/Profile.php:237
|
||||
#: src/Module/Welcome.php:57 view/theme/frio/theme.php:226
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:178 view/theme/frio/theme.php:226
|
||||
msgid "Your profile page"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:179 view/theme/frio/theme.php:227
|
||||
msgid "Your photos"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:180 src/Module/BaseProfile.php:76
|
||||
#: src/Module/BaseProfile.php:79 view/theme/frio/theme.php:228
|
||||
msgid "Videos"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:180 view/theme/frio/theme.php:228
|
||||
msgid "Your videos"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:181 view/theme/frio/theme.php:229
|
||||
msgid "Your events"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:182
|
||||
msgid "Personal notes"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:182
|
||||
msgid "Your personal notes"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:202 src/Content/Nav.php:263
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:202
|
||||
msgid "Home Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:206 src/Module/Register.php:155
|
||||
#: src/Module/Security/Login.php:102
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:206
|
||||
msgid "Create an account"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:212 src/Module/Help.php:69
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:115
|
||||
#: src/Module/Settings/TwoFactor/Index.php:111
|
||||
#: src/Module/Settings/TwoFactor/Recovery.php:93
|
||||
#: src/Module/Settings/TwoFactor/Verify.php:132 view/theme/vier/theme.php:217
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:212
|
||||
msgid "Help and documentation"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:216
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:216
|
||||
msgid "Addon applications, utilities, games"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:220 src/Content/Text/HTML.php:895
|
||||
#: src/Module/Search/Index.php:100
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:220
|
||||
msgid "Search site content"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:223 src/Content/Text/HTML.php:904
|
||||
msgid "Full Text"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:224 src/Content/Text/HTML.php:905
|
||||
#: src/Content/Widget/TagCloud.php:68
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:225 src/Content/Nav.php:284
|
||||
#: src/Content/Text/HTML.php:906 src/Module/BaseProfile.php:121
|
||||
#: src/Module/BaseProfile.php:124 src/Module/Contact.php:855
|
||||
#: src/Module/Contact.php:943 view/theme/frio/theme.php:236
|
||||
msgid "Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:244
|
||||
msgid "Community"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:244
|
||||
msgid "Conversations on this and other servers"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:248 src/Module/BaseProfile.php:91
|
||||
#: src/Module/BaseProfile.php:102 view/theme/frio/theme.php:233
|
||||
msgid "Events and Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:251
|
||||
msgid "Directory"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:251
|
||||
msgid "People directory"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:253 src/Module/BaseAdmin.php:85
|
||||
msgid "Information"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:253
|
||||
msgid "Information about this friendica instance"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:256 src/Module/Admin/Tos.php:59
|
||||
#: src/Module/BaseAdmin.php:95 src/Module/Register.php:163
|
||||
#: src/Module/Tos.php:84
|
||||
msgid "Terms of Service"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:256
|
||||
msgid "Terms of Service of this Friendica instance"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:261 view/theme/frio/theme.php:232
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:261 view/theme/frio/theme.php:232
|
||||
msgid "Conversations from your friends"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:267
|
||||
msgid "Introductions"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:267
|
||||
msgid "Friend Requests"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:268 src/Module/BaseNotifications.php:139
|
||||
#: src/Module/Notifications/Introductions.php:54
|
||||
msgid "Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:269
|
||||
msgid "See all notifications"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:270
|
||||
msgid "Mark all system notifications seen"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:273 view/theme/frio/theme.php:234
|
||||
msgid "Private mail"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:274
|
||||
msgid "Inbox"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:275
|
||||
msgid "Outbox"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:279
|
||||
msgid "Accounts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:279
|
||||
msgid "Manage other pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:282 src/Module/Admin/Addons/Details.php:114
|
||||
#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:124
|
||||
#: src/Module/Welcome.php:52 view/theme/frio/theme.php:235
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:282 view/theme/frio/theme.php:235
|
||||
msgid "Account settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:284 view/theme/frio/theme.php:236
|
||||
msgid "Manage/edit friends and contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:289 src/Module/BaseAdmin.php:125
|
||||
msgid "Admin"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:289
|
||||
msgid "Site setup and configuration"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:292
|
||||
msgid "Navigation"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:292
|
||||
msgid "Site map"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/OEmbed.php:269
|
||||
msgid "Embedding disabled"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/OEmbed.php:387
|
||||
msgid "Embedded content"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Pager.php:221
|
||||
msgid "prev"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Pager.php:281
|
||||
msgid "last"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Text/BBCode.php:963 src/Content/Text/BBCode.php:1607
|
||||
#: src/Content/Text/BBCode.php:1608
|
||||
msgid "Image/photo"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Text/BBCode.php:1065
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The post update is at version %d, it has to be at %d to safely drop the "
|
||||
"tables."
|
||||
"<a href=\"%1$s\" target=\"_blank\" rel=\"noopener noreferrer\">%2$s</a> %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Database/DBStructure.php:89
|
||||
msgid "No unused tables found."
|
||||
#: src/Content/Text/BBCode.php:1090 src/Model/Item.php:2732
|
||||
#: src/Model/Item.php:2738
|
||||
msgid "link to source"
|
||||
msgstr ""
|
||||
|
||||
#: src/Database/DBStructure.php:94
|
||||
msgid ""
|
||||
"These tables are not used for friendica and will be deleted when you execute "
|
||||
"\"dbstructure drop -e\":"
|
||||
#: src/Content/Text/BBCode.php:1525 src/Content/Text/HTML.php:947
|
||||
msgid "Click to open/close"
|
||||
msgstr ""
|
||||
|
||||
#: src/Database/DBStructure.php:132
|
||||
msgid "There are no tables on MyISAM or InnoDB with the Antelope file format."
|
||||
#: src/Content/Text/BBCode.php:1556
|
||||
msgid "$1 wrote:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Database/DBStructure.php:156
|
||||
#: src/Content/Text/BBCode.php:1610 src/Content/Text/BBCode.php:1611
|
||||
msgid "Encrypted content"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Text/BBCode.php:1824
|
||||
msgid "Invalid source protocol"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Text/BBCode.php:1839
|
||||
msgid "Invalid link protocol"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Text/HTML.php:795
|
||||
msgid "Loading more entries..."
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Text/HTML.php:796
|
||||
msgid "The end"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Text/HTML.php:889 src/Model/Profile.php:439
|
||||
#: src/Module/Contact.php:340
|
||||
msgid "Follow"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget/CalendarExport.php:63
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget/CalendarExport.php:64
|
||||
msgid "Export calendar as ical"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget/CalendarExport.php:65
|
||||
msgid "Export calendar as csv"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget/ContactBlock.php:73
|
||||
msgid "No contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget/ContactBlock.php:105
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"Error %d occurred during database update:\n"
|
||||
"%s\n"
|
||||
msgid "%d Contact"
|
||||
msgid_plural "%d Contacts"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Content/Widget/ContactBlock.php:124
|
||||
msgid "View Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Database/DBStructure.php:159
|
||||
msgid "Errors encountered performing database changes: "
|
||||
#: src/Content/Widget/SavedSearches.php:47
|
||||
msgid "Remove term"
|
||||
msgstr ""
|
||||
|
||||
#: src/Database/DBStructure.php:436
|
||||
msgid "Another database update is currently running."
|
||||
#: src/Content/Widget/SavedSearches.php:60
|
||||
msgid "Saved Searches"
|
||||
msgstr ""
|
||||
|
||||
#: src/Database/DBStructure.php:440
|
||||
#: src/Content/Widget/TrendingTags.php:51
|
||||
#, php-format
|
||||
msgid "%s: Database update"
|
||||
msgid "Trending Tags (last %d hour)"
|
||||
msgid_plural "Trending Tags (last %d hours)"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Content/Widget/TrendingTags.php:52
|
||||
msgid "More Trending Tags"
|
||||
msgstr ""
|
||||
|
||||
#: src/Database/DBStructure.php:740
|
||||
#: src/Content/Widget.php:49
|
||||
msgid "Add New Contact"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:50
|
||||
msgid "Enter address or web location"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:51
|
||||
msgid "Example: bob@example.com, http://example.com/barbara"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:53
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:68
|
||||
#, php-format
|
||||
msgid "%s: updating %s table."
|
||||
msgid "%d invitation available"
|
||||
msgid_plural "%d invitations available"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Content/Widget.php:74 view/theme/vier/theme.php:170
|
||||
msgid "Find People"
|
||||
msgstr ""
|
||||
|
||||
#: src/Core/Renderer.php:90 src/Core/Renderer.php:119 src/Core/Renderer.php:146
|
||||
#: src/Core/Renderer.php:180 src/Render/FriendicaSmartyEngine.php:56
|
||||
msgid ""
|
||||
"Friendica can't display this page at the moment, please contact the "
|
||||
"administrator."
|
||||
#: src/Content/Widget.php:75 view/theme/vier/theme.php:171
|
||||
msgid "Enter name or interest"
|
||||
msgstr ""
|
||||
|
||||
#: src/Core/Renderer.php:142
|
||||
msgid "template engine cannot be registered without a name."
|
||||
#: src/Content/Widget.php:77 view/theme/vier/theme.php:173
|
||||
msgid "Examples: Robert Morgenstein, Fishing"
|
||||
msgstr ""
|
||||
|
||||
#: src/Core/Renderer.php:176
|
||||
msgid "template engine is not registered!"
|
||||
#: src/Content/Widget.php:78 src/Module/Contact.php:876
|
||||
#: src/Module/Directory.php:105 view/theme/vier/theme.php:174
|
||||
msgid "Find"
|
||||
msgstr ""
|
||||
|
||||
#: src/Core/Update.php:67
|
||||
#: src/Content/Widget.php:80 view/theme/vier/theme.php:176
|
||||
msgid "Similar Interests"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:81 view/theme/vier/theme.php:177
|
||||
msgid "Random Profile"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:82 view/theme/vier/theme.php:178
|
||||
msgid "Invite Friends"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:83 src/Module/Directory.php:97
|
||||
#: view/theme/vier/theme.php:179
|
||||
msgid "Global Directory"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:85 view/theme/vier/theme.php:181
|
||||
msgid "Local Directory"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:214 src/Model/Group.php:535
|
||||
#: src/Module/Contact.php:839 src/Module/Welcome.php:76
|
||||
msgid "Groups"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:216
|
||||
msgid "Everyone"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:245
|
||||
msgid "Relationships"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:247 src/Module/Contact.php:791
|
||||
#: src/Module/Group.php:292
|
||||
msgid "All Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:286
|
||||
msgid "Protocols"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:288
|
||||
msgid "All Protocols"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:316
|
||||
msgid "Saved Folders"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:318 src/Content/Widget.php:352
|
||||
msgid "Everything"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:350
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:407
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Updates from version %s are not supported. Please update at least to version "
|
||||
"2021.01 and wait until the postupdate finished version 1383."
|
||||
msgid "%d contact in common"
|
||||
msgid_plural "%d contacts in common"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Content/Widget.php:506
|
||||
msgid "Archives"
|
||||
msgstr ""
|
||||
|
||||
#: src/Core/Update.php:78
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Updates from postupdate version %s are not supported. Please update at least "
|
||||
"to version 2021.01 and wait until the postupdate finished version 1383."
|
||||
#: src/Content/Widget.php:530
|
||||
msgid "Persons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Core/Update.php:152
|
||||
#, php-format
|
||||
msgid "%s: executing pre update %d"
|
||||
#: src/Content/Widget.php:531
|
||||
msgid "Organisations"
|
||||
msgstr ""
|
||||
|
||||
#: src/Core/Update.php:190
|
||||
#, php-format
|
||||
msgid "%s: executing post update %d"
|
||||
#: src/Content/Widget.php:532 src/Model/Contact.php:1409
|
||||
msgid "News"
|
||||
msgstr ""
|
||||
|
||||
#: src/Core/Update.php:259
|
||||
#, php-format
|
||||
msgid "Update %s failed. See error logs."
|
||||
msgstr ""
|
||||
|
||||
#: src/Core/Update.php:312
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\t\t\tThe friendica developers released update %s recently,\n"
|
||||
"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n"
|
||||
"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact "
|
||||
"a\n"
|
||||
"\t\t\t\tfriendica developer if you can not help me on your own. My database "
|
||||
"might be invalid."
|
||||
msgstr ""
|
||||
|
||||
#: src/Core/Update.php:318
|
||||
#, php-format
|
||||
msgid "The error message is\\n[pre]%s[/pre]"
|
||||
msgstr ""
|
||||
|
||||
#: src/Core/Update.php:322 src/Core/Update.php:364
|
||||
msgid "[Friendica Notify] Database update"
|
||||
msgstr ""
|
||||
|
||||
#: src/Core/Update.php:358
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\t\t\t\tThe friendica database was successfully updated from %s to %s."
|
||||
#: src/Content/Widget.php:537 src/Module/Admin/BaseUsers.php:50
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: src/Core/ACL.php:154 src/Module/Profile/Profile.php:238
|
||||
msgid "Yourself"
|
||||
msgstr ""
|
||||
|
||||
#: src/Core/ACL.php:183 src/Module/PermissionTooltip.php:77
|
||||
#: src/Module/PermissionTooltip.php:99 src/Module/Contact.php:852
|
||||
#: src/Content/Widget.php:238 src/BaseModule.php:184
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#: src/Core/ACL.php:190 src/Module/PermissionTooltip.php:83
|
||||
#: src/Module/PermissionTooltip.php:105
|
||||
msgid "Mutuals"
|
||||
|
|
@ -3908,8 +4182,8 @@ msgstr ""
|
|||
msgid "Could not connect to database."
|
||||
msgstr ""
|
||||
|
||||
#: src/Core/L10n.php:371 src/Module/Settings/Display.php:178
|
||||
#: src/Model/Event.php:431
|
||||
#: src/Core/L10n.php:371 src/Model/Event.php:431
|
||||
#: src/Module/Settings/Display.php:178
|
||||
msgid "Monday"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3933,8 +4207,8 @@ msgstr ""
|
|||
msgid "Saturday"
|
||||
msgstr ""
|
||||
|
||||
#: src/Core/L10n.php:371 src/Module/Settings/Display.php:178
|
||||
#: src/Model/Event.php:430
|
||||
#: src/Core/L10n.php:371 src/Model/Event.php:430
|
||||
#: src/Module/Settings/Display.php:178
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -4106,6 +4380,78 @@ msgstr ""
|
|||
msgid "rebuffed"
|
||||
msgstr ""
|
||||
|
||||
#: src/Core/Renderer.php:90 src/Core/Renderer.php:119 src/Core/Renderer.php:146
|
||||
#: src/Core/Renderer.php:180 src/Render/FriendicaSmartyEngine.php:56
|
||||
msgid ""
|
||||
"Friendica can't display this page at the moment, please contact the "
|
||||
"administrator."
|
||||
msgstr ""
|
||||
|
||||
#: src/Core/Renderer.php:142
|
||||
msgid "template engine cannot be registered without a name."
|
||||
msgstr ""
|
||||
|
||||
#: src/Core/Renderer.php:176
|
||||
msgid "template engine is not registered!"
|
||||
msgstr ""
|
||||
|
||||
#: src/Core/Update.php:67
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Updates from version %s are not supported. Please update at least to version "
|
||||
"2021.01 and wait until the postupdate finished version 1383."
|
||||
msgstr ""
|
||||
|
||||
#: src/Core/Update.php:78
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Updates from postupdate version %s are not supported. Please update at least "
|
||||
"to version 2021.01 and wait until the postupdate finished version 1383."
|
||||
msgstr ""
|
||||
|
||||
#: src/Core/Update.php:152
|
||||
#, php-format
|
||||
msgid "%s: executing pre update %d"
|
||||
msgstr ""
|
||||
|
||||
#: src/Core/Update.php:190
|
||||
#, php-format
|
||||
msgid "%s: executing post update %d"
|
||||
msgstr ""
|
||||
|
||||
#: src/Core/Update.php:259
|
||||
#, php-format
|
||||
msgid "Update %s failed. See error logs."
|
||||
msgstr ""
|
||||
|
||||
#: src/Core/Update.php:312
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\t\t\tThe friendica developers released update %s recently,\n"
|
||||
"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n"
|
||||
"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact "
|
||||
"a\n"
|
||||
"\t\t\t\tfriendica developer if you can not help me on your own. My database "
|
||||
"might be invalid."
|
||||
msgstr ""
|
||||
|
||||
#: src/Core/Update.php:318
|
||||
#, php-format
|
||||
msgid "The error message is\\n[pre]%s[/pre]"
|
||||
msgstr ""
|
||||
|
||||
#: src/Core/Update.php:322 src/Core/Update.php:364
|
||||
msgid "[Friendica Notify] Database update"
|
||||
msgstr ""
|
||||
|
||||
#: src/Core/Update.php:358
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\t\t\t\tThe friendica database was successfully updated from %s to %s."
|
||||
msgstr ""
|
||||
|
||||
#: src/Core/UserImport.php:126
|
||||
msgid "Error decoding account file"
|
||||
msgstr ""
|
||||
|
|
@ -4138,414 +4484,56 @@ msgstr ""
|
|||
msgid "Done. You can now login with your username and password"
|
||||
msgstr ""
|
||||
|
||||
#: src/LegacyModule.php:49
|
||||
#: src/Database/DBStructure.php:64
|
||||
#, php-format
|
||||
msgid "Legacy module file not found: %s"
|
||||
msgid "The database version had been set to %s."
|
||||
msgstr ""
|
||||
|
||||
#: src/Worker/Delivery.php:570
|
||||
msgid "(no subject)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/EMail/ItemCCEMail.php:39
|
||||
#: src/Database/DBStructure.php:77
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This message was sent to you by %s, a member of the Friendica social network."
|
||||
"The post update is at version %d, it has to be at %d to safely drop the "
|
||||
"tables."
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/EMail/ItemCCEMail.php:41
|
||||
#, php-format
|
||||
msgid "You may visit them online at %s"
|
||||
#: src/Database/DBStructure.php:89
|
||||
msgid "No unused tables found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/EMail/ItemCCEMail.php:42
|
||||
#: src/Database/DBStructure.php:94
|
||||
msgid ""
|
||||
"Please contact the sender by replying to this post if you do not wish to "
|
||||
"receive these messages."
|
||||
"These tables are not used for friendica and will be deleted when you execute "
|
||||
"\"dbstructure drop -e\":"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/EMail/ItemCCEMail.php:46
|
||||
#: src/Database/DBStructure.php:132
|
||||
msgid "There are no tables on MyISAM or InnoDB with the Antelope file format."
|
||||
msgstr ""
|
||||
|
||||
#: src/Database/DBStructure.php:156
|
||||
#, php-format
|
||||
msgid "%s posted an update."
|
||||
msgid ""
|
||||
"\n"
|
||||
"Error %d occurred during database update:\n"
|
||||
"%s\n"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:148
|
||||
msgid "This entry was edited"
|
||||
#: src/Database/DBStructure.php:159
|
||||
msgid "Errors encountered performing database changes: "
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:176
|
||||
msgid "Private Message"
|
||||
#: src/Database/DBStructure.php:436
|
||||
msgid "Another database update is currently running."
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:214
|
||||
msgid "pinned item"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:219
|
||||
msgid "Delete locally"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:222
|
||||
msgid "Delete globally"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:222
|
||||
msgid "Remove locally"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:236
|
||||
#: src/Database/DBStructure.php:440
|
||||
#, php-format
|
||||
msgid "Block %s"
|
||||
msgid "%s: Database update"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:241
|
||||
msgid "save to folder"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:275
|
||||
msgid "I will attend"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:275
|
||||
msgid "I will not attend"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:275
|
||||
msgid "I might attend"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:305
|
||||
msgid "ignore thread"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:306
|
||||
msgid "unignore thread"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:307
|
||||
msgid "toggle ignore status"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:319
|
||||
msgid "pin"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:320
|
||||
msgid "unpin"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:321
|
||||
msgid "toggle pin status"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:324
|
||||
msgid "pinned"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:331
|
||||
msgid "add star"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:332
|
||||
msgid "remove star"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:333
|
||||
msgid "toggle star status"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:336
|
||||
msgid "starred"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:340
|
||||
msgid "add tag"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:350
|
||||
msgid "like"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:351
|
||||
msgid "dislike"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:353
|
||||
msgid "Quote share this"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:353
|
||||
msgid "Quote Share"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:356
|
||||
msgid "Reshare this"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:356
|
||||
msgid "Reshare"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:357
|
||||
msgid "Cancel your Reshare"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:357
|
||||
msgid "Unshare"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:402
|
||||
#: src/Database/DBStructure.php:740
|
||||
#, php-format
|
||||
msgid "%s (Received %s)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:407
|
||||
msgid "Comment this item on your system"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:407
|
||||
msgid "remote comment"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:419
|
||||
msgid "Pushed"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:419
|
||||
msgid "Pulled"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:451
|
||||
msgid "to"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:452
|
||||
msgid "via"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:453
|
||||
msgid "Wall-to-Wall"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:454
|
||||
msgid "via Wall-To-Wall:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:492
|
||||
#, php-format
|
||||
msgid "Reply to %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:495
|
||||
msgid "More"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:513
|
||||
msgid "Notifier task is pending"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:514
|
||||
msgid "Delivery to remote servers is pending"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:515
|
||||
msgid "Delivery to remote servers is underway"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:516
|
||||
msgid "Delivery to remote servers is mostly done"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:517
|
||||
msgid "Delivery to remote servers is done"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:537
|
||||
#, php-format
|
||||
msgid "%d comment"
|
||||
msgid_plural "%d comments"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Object/Post.php:538
|
||||
msgid "Show more"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:539
|
||||
msgid "Show fewer"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:550 src/Model/Item.php:2497
|
||||
msgid "comment"
|
||||
msgid_plural "comments"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Console/ArchiveContact.php:105
|
||||
#, php-format
|
||||
msgid "Could not find any unarchived contact entry for this URL (%s)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Console/ArchiveContact.php:108
|
||||
msgid "The contact entries have been archived"
|
||||
msgstr ""
|
||||
|
||||
#: src/Console/GlobalCommunityBlock.php:96
|
||||
#: src/Module/Admin/Blocklist/Contact.php:49
|
||||
#, php-format
|
||||
msgid "Could not find any contact entry for this URL (%s)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Console/GlobalCommunityBlock.php:101
|
||||
#: src/Module/Admin/Blocklist/Contact.php:47
|
||||
msgid "The contact has been blocked from the node"
|
||||
msgstr ""
|
||||
|
||||
#: src/Console/User.php:158
|
||||
msgid "Enter new password: "
|
||||
msgstr ""
|
||||
|
||||
#: src/Console/User.php:193
|
||||
msgid "Enter user name: "
|
||||
msgstr ""
|
||||
|
||||
#: src/Console/User.php:201 src/Console/User.php:241 src/Console/User.php:274
|
||||
#: src/Console/User.php:300
|
||||
msgid "Enter user nickname: "
|
||||
msgstr ""
|
||||
|
||||
#: src/Console/User.php:209
|
||||
msgid "Enter user email address: "
|
||||
msgstr ""
|
||||
|
||||
#: src/Console/User.php:217
|
||||
msgid "Enter a language (optional): "
|
||||
msgstr ""
|
||||
|
||||
#: src/Console/User.php:255
|
||||
msgid "User is not pending."
|
||||
msgstr ""
|
||||
|
||||
#: src/Console/User.php:313
|
||||
msgid "User has already been marked for deletion."
|
||||
msgstr ""
|
||||
|
||||
#: src/Console/User.php:318
|
||||
#, php-format
|
||||
msgid "Type \"yes\" to delete %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Console/User.php:320
|
||||
msgid "Deletion aborted."
|
||||
msgstr ""
|
||||
|
||||
#: src/Console/PostUpdate.php:87
|
||||
#, php-format
|
||||
msgid "Post update version number has been set to %s."
|
||||
msgstr ""
|
||||
|
||||
#: src/Console/PostUpdate.php:95
|
||||
msgid "Check for pending update actions."
|
||||
msgstr ""
|
||||
|
||||
#: src/Console/PostUpdate.php:97
|
||||
msgid "Done."
|
||||
msgstr ""
|
||||
|
||||
#: src/Console/PostUpdate.php:99
|
||||
msgid "Execute pending post updates."
|
||||
msgstr ""
|
||||
|
||||
#: src/Console/PostUpdate.php:105
|
||||
msgid "All pending post updates are done."
|
||||
msgstr ""
|
||||
|
||||
#: src/Render/FriendicaSmartyEngine.php:52
|
||||
msgid "The folder view/smarty3/ must be writable by webserver."
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:275
|
||||
msgid "Hometown:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:276
|
||||
msgid "Marital Status:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:277
|
||||
msgid "With:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:278
|
||||
msgid "Since:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:279
|
||||
msgid "Sexual Preference:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:280
|
||||
msgid "Political Views:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:281
|
||||
msgid "Religious Views:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:282
|
||||
msgid "Likes:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:283
|
||||
msgid "Dislikes:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:284
|
||||
msgid "Title/Description:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:285 src/Module/Admin/Summary.php:233
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:286
|
||||
msgid "Musical interests"
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:287
|
||||
msgid "Books, literature"
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:288
|
||||
msgid "Television"
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:289
|
||||
msgid "Film/dance/culture/entertainment"
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:290
|
||||
msgid "Hobbies/Interests"
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:291
|
||||
msgid "Love/romance"
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:292
|
||||
msgid "Work/employment"
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:293
|
||||
msgid "School/education"
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:294
|
||||
msgid "Contact information and Social Networks"
|
||||
msgstr ""
|
||||
|
||||
#: src/App.php:309
|
||||
msgid "No system theme config value set."
|
||||
msgid "%s: updating %s table."
|
||||
msgstr ""
|
||||
|
||||
#: src/Factory/Api/Mastodon/Error.php:32
|
||||
|
|
@ -4605,2251 +4593,680 @@ msgstr ""
|
|||
msgid "%s is now friends with %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Notifications.php:50
|
||||
msgid "Network Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Notifications.php:58
|
||||
msgid "System Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Notifications.php:66
|
||||
msgid "Personal Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Notifications.php:74
|
||||
msgid "Home Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Notifications.php:133
|
||||
#: src/Module/Notifications/Introductions.php:202
|
||||
#: src/LegacyModule.php:49
|
||||
#, php-format
|
||||
msgid "No more %s notifications."
|
||||
msgid "Legacy module file not found: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Notifications.php:138
|
||||
msgid "Show unread"
|
||||
#: src/Model/Contact.php:981 src/Model/Contact.php:994
|
||||
msgid "UnFollow"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Notifications.php:138
|
||||
msgid "Show all"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Notification.php:103
|
||||
msgid "You must be logged in to show this page."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Introductions.php:54
|
||||
#: src/Module/BaseNotifications.php:139 src/Content/Nav.php:268
|
||||
msgid "Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Introductions.php:78
|
||||
msgid "Show Ignored Requests"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Introductions.php:78
|
||||
msgid "Hide Ignored Requests"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Introductions.php:94
|
||||
#: src/Module/Notifications/Introductions.php:163
|
||||
msgid "Notification type:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Introductions.php:97
|
||||
msgid "Suggested by:"
|
||||
#: src/Model/Contact.php:990
|
||||
msgid "Drop Contact"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Contact.php:1000 src/Module/Admin/Users/Pending.php:107
|
||||
#: src/Module/Notifications/Introductions.php:111
|
||||
#: src/Module/Notifications/Introductions.php:189
|
||||
#: src/Module/Admin/Users/Pending.php:107 src/Model/Contact.php:1000
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Introductions.php:122
|
||||
msgid "Claims to be known to you: "
|
||||
#: src/Model/Contact.php:1405
|
||||
msgid "Organisation"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Introductions.php:131
|
||||
msgid "Shall your connection be bidirectional or not?"
|
||||
#: src/Model/Contact.php:1413
|
||||
msgid "Forum"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Introductions.php:132
|
||||
#, php-format
|
||||
#: src/Model/Contact.php:2168
|
||||
msgid "Connect URL missing."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Contact.php:2177
|
||||
msgid ""
|
||||
"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
|
||||
"also receive updates from them in your news feed."
|
||||
"The contact could not be added. Please check the relevant network "
|
||||
"credentials in your Settings -> Social Networks page."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Introductions.php:133
|
||||
#, php-format
|
||||
#: src/Model/Contact.php:2218
|
||||
msgid ""
|
||||
"Accepting %s as a subscriber allows them to subscribe to your posts, but you "
|
||||
"will not receive updates from them in your news feed."
|
||||
"This site is not configured to allow communications with other networks."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Introductions.php:135
|
||||
msgid "Friend"
|
||||
#: src/Model/Contact.php:2219 src/Model/Contact.php:2232
|
||||
msgid "No compatible communication protocols or feeds were discovered."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Introductions.php:136
|
||||
msgid "Subscriber"
|
||||
#: src/Model/Contact.php:2230
|
||||
msgid "The profile address specified does not provide adequate information."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Introductions.php:174 src/Module/Contact.php:650
|
||||
#: src/Model/Profile.php:362
|
||||
msgid "About:"
|
||||
#: src/Model/Contact.php:2235
|
||||
msgid "An author or name was not found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Introductions.php:177 src/Module/Contact.php:634
|
||||
msgid "Hide this contact from others"
|
||||
#: src/Model/Contact.php:2238
|
||||
msgid "No browser URL could be matched to this address."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Introductions.php:186 src/Module/Contact.php:338
|
||||
#: src/Model/Profile.php:451
|
||||
msgid "Network:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Introductions.php:201
|
||||
msgid "No introductions."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Manifest.php:42
|
||||
msgid "A Decentralized Social Network"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/Logout.php:61
|
||||
msgid "Logged out."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/TwoFactor/Verify.php:75
|
||||
#: src/Module/Security/TwoFactor/Recovery.php:64
|
||||
#: src/Module/Settings/TwoFactor/Verify.php:82
|
||||
msgid "Invalid code, please retry."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/TwoFactor/Verify.php:94 src/Module/BaseSettings.php:50
|
||||
#: src/Module/Settings/TwoFactor/Index.php:110
|
||||
msgid "Two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/TwoFactor/Verify.php:95
|
||||
#: src/Model/Contact.php:2241
|
||||
msgid ""
|
||||
"<p>Open the two-factor authentication app on your device to get an "
|
||||
"authentication code and verify your identity.</p>"
|
||||
"Unable to match @-style Identity Address with a known protocol or email "
|
||||
"contact."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/TwoFactor/Verify.php:98
|
||||
#: src/Module/Security/TwoFactor/Recovery.php:85
|
||||
#, php-format
|
||||
#: src/Model/Contact.php:2242
|
||||
msgid "Use mailto: in front of address to force email check."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Contact.php:2248
|
||||
msgid ""
|
||||
"Don’t have your phone? <a href=\"%s\">Enter a two-factor recovery code</a>"
|
||||
"The profile address specified belongs to a network which has been disabled "
|
||||
"on this site."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/TwoFactor/Verify.php:99
|
||||
#: src/Module/Settings/TwoFactor/Verify.php:141
|
||||
msgid "Please enter a code from your authentication app"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/TwoFactor/Verify.php:100
|
||||
msgid "This is my two-factor authenticator app device"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/TwoFactor/Verify.php:101
|
||||
msgid "Verify code and complete login"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/TwoFactor/Recovery.php:60
|
||||
#, php-format
|
||||
msgid "Remaining recovery codes: %d"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/TwoFactor/Recovery.php:83
|
||||
msgid "Two-factor recovery"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/TwoFactor/Recovery.php:84
|
||||
#: src/Model/Contact.php:2253
|
||||
msgid ""
|
||||
"<p>You can enter one of your one-time recovery codes in case you lost access "
|
||||
"to your mobile device.</p>"
|
||||
"Limited profile. This person will be unable to receive direct/personal "
|
||||
"notifications from you."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/TwoFactor/Recovery.php:86
|
||||
msgid "Please enter a recovery code"
|
||||
#: src/Model/Contact.php:2312
|
||||
msgid "Unable to retrieve contact information."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/TwoFactor/Recovery.php:87
|
||||
msgid "Submit recovery code and complete login"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/Login.php:101
|
||||
msgid "Create a New Account"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/Login.php:102 src/Module/Register.php:155
|
||||
#: src/Content/Nav.php:206
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/Login.php:126
|
||||
msgid "Your OpenID: "
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/Login.php:129
|
||||
msgid ""
|
||||
"Please enter your username and password to add the OpenID to your existing "
|
||||
"account."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/Login.php:131
|
||||
msgid "Or login using OpenID: "
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/Login.php:141 src/Content/Nav.php:169
|
||||
msgid "Logout"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/Login.php:142 src/Module/Bookmarklet.php:46
|
||||
#: src/Content/Nav.php:171
|
||||
msgid "Login"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/Login.php:145
|
||||
msgid "Password: "
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/Login.php:146
|
||||
msgid "Remember me"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/Login.php:155
|
||||
msgid "Forgot your password?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/Login.php:158
|
||||
msgid "Website Terms of Service"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/Login.php:159
|
||||
msgid "terms of service"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/Login.php:161
|
||||
msgid "Website Privacy Policy"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/Login.php:162
|
||||
msgid "privacy policy"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/OpenID.php:54
|
||||
msgid "OpenID protocol error. No ID returned"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/OpenID.php:92
|
||||
msgid ""
|
||||
"Account not found. Please login to your existing account to add the OpenID "
|
||||
"to it."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/OpenID.php:94
|
||||
msgid ""
|
||||
"Account not found. Please register a new account or login to your existing "
|
||||
"account to add the OpenID to it."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Localtime.php:36 src/Model/Event.php:50
|
||||
#: src/Model/Event.php:871
|
||||
#: src/Model/Event.php:50 src/Model/Event.php:871
|
||||
#: src/Module/Debug/Localtime.php:36
|
||||
msgid "l F d, Y \\@ g:i A"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Localtime.php:49
|
||||
msgid "Time Conversion"
|
||||
#: src/Model/Event.php:77 src/Model/Event.php:94 src/Model/Event.php:470
|
||||
#: src/Model/Event.php:941
|
||||
msgid "Starts:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Localtime.php:50
|
||||
#: src/Model/Event.php:80 src/Model/Event.php:100 src/Model/Event.php:471
|
||||
#: src/Model/Event.php:945
|
||||
msgid "Finishes:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Event.php:420
|
||||
msgid "all-day"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Event.php:446
|
||||
msgid "Sept"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Event.php:468
|
||||
msgid "No events to display"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Event.php:587
|
||||
msgid "l, F j"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Event.php:618
|
||||
msgid "Edit event"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Event.php:619
|
||||
msgid "Duplicate event"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Event.php:620
|
||||
msgid "Delete event"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Event.php:872
|
||||
msgid "D g:i A"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Event.php:873
|
||||
msgid "g:i A"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Event.php:960 src/Model/Event.php:962
|
||||
msgid "Show map"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Event.php:961
|
||||
msgid "Hide map"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Event.php:1053
|
||||
#, php-format
|
||||
msgid "%s's birthday"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Event.php:1054
|
||||
#, php-format
|
||||
msgid "Happy Birthday %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Group.php:92
|
||||
msgid ""
|
||||
"Friendica provides this service for sharing events with other networks and "
|
||||
"friends in unknown timezones."
|
||||
"A deleted group with this name was revived. Existing item permissions "
|
||||
"<strong>may</strong> apply to this group and any future members. If this is "
|
||||
"not what you intended, please create another group with a different name."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Localtime.php:51
|
||||
#: src/Model/Group.php:451
|
||||
msgid "Default privacy group for new contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Group.php:483
|
||||
msgid "Everybody"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Group.php:502
|
||||
msgid "edit"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Group.php:534
|
||||
msgid "add"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Group.php:539
|
||||
msgid "Edit group"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Group.php:540 src/Module/Group.php:193
|
||||
msgid "Contacts not in any group"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Group.php:542
|
||||
msgid "Create a new group"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Group.php:543 src/Module/Group.php:178 src/Module/Group.php:201
|
||||
#: src/Module/Group.php:276
|
||||
msgid "Group Name: "
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Group.php:544
|
||||
msgid "Edit groups"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Item.php:1550
|
||||
#, php-format
|
||||
msgid "UTC time: %s"
|
||||
msgid "Detected languages in this post:\\n%s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Localtime.php:54
|
||||
#, php-format
|
||||
msgid "Current timezone: %s"
|
||||
#: src/Model/Item.php:2495
|
||||
msgid "activity"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Localtime.php:58
|
||||
#, php-format
|
||||
msgid "Converted localtime: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Localtime.php:62
|
||||
msgid "Please select your timezone:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:51
|
||||
msgid "Source input"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:57
|
||||
msgid "BBCode::toPlaintext"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:63
|
||||
msgid "BBCode::convert (raw HTML)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:68
|
||||
msgid "BBCode::convert (hex)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:73
|
||||
msgid "BBCode::convert"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:79
|
||||
msgid "BBCode::convert => HTML::toBBCode"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:85
|
||||
msgid "BBCode::toMarkdown"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:91
|
||||
msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:95
|
||||
msgid "BBCode::toMarkdown => Markdown::convert"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:101
|
||||
msgid "BBCode::toMarkdown => Markdown::toBBCode"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:107
|
||||
msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:115
|
||||
msgid "Item Body"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:119
|
||||
msgid "Item Tags"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:125
|
||||
msgid "PageInfo::appendToBody"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:130
|
||||
msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:134
|
||||
msgid "PageInfo::appendToBody => BBCode::convert"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:141
|
||||
msgid "Source input (Diaspora format)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:150
|
||||
msgid "Source input (Markdown)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:156
|
||||
msgid "Markdown::convert (raw HTML)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:161
|
||||
msgid "Markdown::convert"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:167
|
||||
msgid "Markdown::toBBCode"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:174
|
||||
msgid "Raw HTML input"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:179
|
||||
msgid "HTML Input"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:188
|
||||
msgid "HTML Purified (raw)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:193
|
||||
msgid "HTML Purified (hex)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:198
|
||||
msgid "HTML Purified"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:204
|
||||
msgid "HTML::toBBCode"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:210
|
||||
msgid "HTML::toBBCode => BBCode::convert"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:215
|
||||
msgid "HTML::toBBCode => BBCode::convert (raw HTML)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:221
|
||||
msgid "HTML::toBBCode => BBCode::toPlaintext"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:227
|
||||
msgid "HTML::toMarkdown"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:233
|
||||
msgid "HTML::toPlaintext"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:239
|
||||
msgid "HTML::toPlaintext (compact)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:257
|
||||
msgid "Decoded post"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:278
|
||||
msgid "Post array before expand entities"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:285
|
||||
msgid "Post converted"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:290
|
||||
msgid "Converted body"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:296
|
||||
msgid "Twitter addon is absent from the addon/ folder."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:306
|
||||
msgid "Babel Diagnostic"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:307
|
||||
msgid "Source text"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:308
|
||||
msgid "BBCode"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:309 src/Content/ContactSelector.php:127
|
||||
msgid "Diaspora"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:310
|
||||
msgid "Markdown"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:311
|
||||
msgid "HTML"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:313
|
||||
msgid "Twitter Source / Tweet URL (requires API key)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/WebFinger.php:37 src/Module/Debug/Probe.php:38
|
||||
msgid "Only logged in users are permitted to perform a probing."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/WebFinger.php:52
|
||||
msgid "Webfinger Diagnostic"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/WebFinger.php:54
|
||||
msgid "Lookup address:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/ActivityPubConversion.php:58
|
||||
msgid "Formatted"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/ActivityPubConversion.php:62
|
||||
#: src/Module/Admin/Item/Source.php:73
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/ActivityPubConversion.php:70
|
||||
msgid "Activity"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/ActivityPubConversion.php:118
|
||||
msgid "Object data"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/ActivityPubConversion.php:125
|
||||
msgid "Result Item"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/ActivityPubConversion.php:138 src/Module/BaseAdmin.php:117
|
||||
msgid "ActivityPub Conversion"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/ActivityPubConversion.php:139
|
||||
msgid "Source activity"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Feed.php:38 src/Module/Filer/SaveTag.php:40
|
||||
#: src/Module/Settings/Profile/Index.php:158
|
||||
msgid "You must be logged in to use this module"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Feed.php:63
|
||||
msgid "Source URL"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Probe.php:53
|
||||
msgid "Probe Diagnostic"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Probe.php:54
|
||||
msgid "Output"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Probe.php:57
|
||||
msgid "Lookup address"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Profile/Common.php:87 src/Module/Contact/Contacts.php:96
|
||||
#, php-format
|
||||
msgid "Common contact (%s)"
|
||||
msgid_plural "Common contacts (%s)"
|
||||
#: src/Model/Item.php:2497 src/Object/Post.php:550
|
||||
msgid "comment"
|
||||
msgid_plural "comments"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Module/Profile/Common.php:89 src/Module/Contact/Contacts.php:98
|
||||
#: src/Model/Item.php:2500
|
||||
msgid "post"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Item.php:2614
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Both <strong>%s</strong> and yourself have publicly interacted with these "
|
||||
"contacts (follow, comment or likes on public posts)."
|
||||
msgid "Content warning: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Profile/Common.php:99 src/Module/Contact/Contacts.php:68
|
||||
msgid "No common contacts."
|
||||
#: src/Model/Item.php:2681
|
||||
msgid "bytes"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Profile/Status.php:65 src/Module/Profile/Status.php:68
|
||||
#: src/Module/Profile/Profile.php:322 src/Module/Profile/Profile.php:325
|
||||
#: src/Protocol/OStatus.php:1258 src/Protocol/Feed.php:940
|
||||
#, php-format
|
||||
msgid "%s's timeline"
|
||||
#: src/Model/Item.php:2726
|
||||
msgid "View on separate page"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Profile/Status.php:66 src/Module/Profile/Profile.php:323
|
||||
#: src/Protocol/OStatus.php:1262 src/Protocol/Feed.php:944
|
||||
#, php-format
|
||||
msgid "%s's posts"
|
||||
#: src/Model/Item.php:2727
|
||||
msgid "view on separate page"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Profile/Status.php:67 src/Module/Profile/Profile.php:324
|
||||
#: src/Protocol/OStatus.php:1265 src/Protocol/Feed.php:947
|
||||
#, php-format
|
||||
msgid "%s's comments"
|
||||
#: src/Model/Mail.php:120 src/Model/Mail.php:258
|
||||
msgid "[no subject]"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Profile/Contacts.php:97 src/Module/Contact/Contacts.php:80
|
||||
#, php-format
|
||||
msgid "Follower (%s)"
|
||||
msgid_plural "Followers (%s)"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Module/Profile/Contacts.php:100 src/Module/Contact/Contacts.php:84
|
||||
#, php-format
|
||||
msgid "Following (%s)"
|
||||
msgid_plural "Following (%s)"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Module/Profile/Contacts.php:103 src/Module/Contact/Contacts.php:88
|
||||
#, php-format
|
||||
msgid "Mutual friend (%s)"
|
||||
msgid_plural "Mutual friends (%s)"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Module/Profile/Contacts.php:105 src/Module/Contact/Contacts.php:90
|
||||
#, php-format
|
||||
msgid "These contacts both follow and are followed by <strong>%s</strong>."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Profile/Contacts.php:111 src/Module/Contact/Contacts.php:104
|
||||
#, php-format
|
||||
msgid "Contact (%s)"
|
||||
msgid_plural "Contacts (%s)"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Module/Profile/Contacts.php:121
|
||||
msgid "No contacts."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Profile/Profile.php:135
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You're currently viewing your profile as <b>%s</b> <a href=\"%s\" class="
|
||||
"\"btn btn-sm pull-right\">Cancel</a>"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Profile/Profile.php:149
|
||||
msgid "Member since:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Profile/Profile.php:155
|
||||
msgid "j F, Y"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Profile/Profile.php:156
|
||||
msgid "j F"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Profile/Profile.php:164 src/Util/Temporal.php:163
|
||||
msgid "Birthday:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Profile/Profile.php:167 src/Module/Settings/Profile/Index.php:260
|
||||
#: src/Util/Temporal.php:165
|
||||
msgid "Age: "
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Profile/Profile.php:167 src/Module/Settings/Profile/Index.php:260
|
||||
#: src/Util/Temporal.php:165
|
||||
#, php-format
|
||||
msgid "%d year old"
|
||||
msgid_plural "%d years old"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Module/Profile/Profile.php:176 src/Module/Contact.php:648
|
||||
#: src/Model/Profile.php:363
|
||||
msgid "XMPP:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Profile/Profile.php:180 src/Module/Directory.php:161
|
||||
#: src/Model/Profile.php:361
|
||||
msgid "Homepage:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Profile/Profile.php:230
|
||||
msgid "Forums:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Profile/Profile.php:242
|
||||
msgid "View profile as:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Profile/Profile.php:252 src/Module/Profile/Profile.php:254
|
||||
#: src/Model/Profile.php:346
|
||||
#: src/Model/Profile.php:346 src/Module/Profile/Profile.php:252
|
||||
#: src/Module/Profile/Profile.php:254
|
||||
msgid "Edit profile"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Profile/Profile.php:259
|
||||
msgid "View as"
|
||||
#: src/Model/Profile.php:348
|
||||
msgid "Change profile photo"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:69
|
||||
msgid "Only parent users can create additional accounts."
|
||||
#: src/Model/Profile.php:361 src/Module/Directory.php:161
|
||||
#: src/Module/Profile/Profile.php:180
|
||||
msgid "Homepage:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:101
|
||||
msgid ""
|
||||
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
|
||||
"and clicking \"Register\"."
|
||||
#: src/Model/Profile.php:362 src/Module/Contact.php:650
|
||||
#: src/Module/Notifications/Introductions.php:174
|
||||
msgid "About:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:102
|
||||
msgid ""
|
||||
"If you are not familiar with OpenID, please leave that field blank and fill "
|
||||
"in the rest of the items."
|
||||
#: src/Model/Profile.php:363 src/Module/Contact.php:648
|
||||
#: src/Module/Profile/Profile.php:176
|
||||
msgid "XMPP:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:103
|
||||
msgid "Your OpenID (optional): "
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:112
|
||||
msgid "Include your profile in member directory?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:135
|
||||
msgid "Note for the admin"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:135
|
||||
msgid "Leave a message for the admin, why you want to join this node"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:136
|
||||
msgid "Membership on this site is by invitation only."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:137
|
||||
msgid "Your invitation code: "
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:139 src/Module/Admin/Site.php:584
|
||||
msgid "Registration"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:145
|
||||
msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:146
|
||||
msgid ""
|
||||
"Your Email Address: (Initial information will be send there, so this has to "
|
||||
"be an existing address.)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:147
|
||||
msgid "Please repeat your e-mail address:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:149
|
||||
msgid "Leave empty for an auto generated password."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:151
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Choose a profile nickname. This must begin with a text character. Your "
|
||||
"profile address on this site will then be \"<strong>nickname@%s</strong>\"."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:152
|
||||
msgid "Choose a nickname: "
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:161
|
||||
msgid "Import your profile to this friendica instance"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:163 src/Module/BaseAdmin.php:95
|
||||
#: src/Module/Tos.php:84 src/Module/Admin/Tos.php:59 src/Content/Nav.php:256
|
||||
msgid "Terms of Service"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:168
|
||||
msgid "Note: This node explicitly contains adult content"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:155
|
||||
msgid "Parent Password:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:155
|
||||
msgid ""
|
||||
"Please enter the password of the parent account to legitimize your request."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:199
|
||||
msgid "Password doesn't match."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:205
|
||||
msgid "Please enter your password."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:247
|
||||
msgid "You have entered too much information."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:271
|
||||
msgid "Please enter the identical mail address in the second field."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:298
|
||||
msgid "The additional account was created."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:323
|
||||
msgid ""
|
||||
"Registration successful. Please check your email for further instructions."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:327
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Failed to send email message. Here your accout details:<br> login: %s<br> "
|
||||
"password: %s<br><br>You can change your password after login."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:333
|
||||
msgid "Registration successful."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:338 src/Module/Register.php:345
|
||||
msgid "Your registration can not be processed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:344
|
||||
msgid "You have to leave a request note for the admin."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:390
|
||||
msgid "Your registration is pending approval by the site owner."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Special/HTTPException.php:49
|
||||
msgid "Bad Request"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Special/HTTPException.php:50
|
||||
msgid "Unauthorized"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Special/HTTPException.php:51
|
||||
msgid "Forbidden"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Special/HTTPException.php:52
|
||||
msgid "Not Found"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Special/HTTPException.php:53
|
||||
msgid "Internal Server Error"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Special/HTTPException.php:54
|
||||
msgid "Service Unavailable"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Special/HTTPException.php:61
|
||||
msgid ""
|
||||
"The server cannot or will not process the request due to an apparent client "
|
||||
"error."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Special/HTTPException.php:62
|
||||
msgid "Authentication is required and has failed or has not yet been provided."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Special/HTTPException.php:63
|
||||
msgid ""
|
||||
"The request was valid, but the server is refusing action. The user might not "
|
||||
"have the necessary permissions for a resource, or may need an account."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Special/HTTPException.php:64
|
||||
msgid ""
|
||||
"The requested resource could not be found but may be available in the future."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Special/HTTPException.php:65
|
||||
msgid ""
|
||||
"An unexpected condition was encountered and no more specific message is "
|
||||
"suitable."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Special/HTTPException.php:66
|
||||
msgid ""
|
||||
"The server is currently unavailable (because it is overloaded or down for "
|
||||
"maintenance). Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Special/HTTPException.php:75 src/Content/Nav.php:94
|
||||
msgid "Go back"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Special/HTTPException.php:76
|
||||
msgid "Stack trace:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Special/HTTPException.php:80
|
||||
#, php-format
|
||||
msgid "Exception thrown in %s:%d"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Home.php:54
|
||||
#, php-format
|
||||
msgid "Welcome to %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/FriendSuggest.php:65
|
||||
msgid "Suggested contact not found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/FriendSuggest.php:84
|
||||
msgid "Friend suggestion sent."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/FriendSuggest.php:121
|
||||
msgid "Suggest Friends"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/FriendSuggest.php:124
|
||||
#, php-format
|
||||
msgid "Suggest a friend for %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Credits.php:44
|
||||
msgid "Credits"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Credits.php:45
|
||||
msgid ""
|
||||
"Friendica is a community project, that would not be possible without the "
|
||||
"help of many people. Here is a list of those who have contributed to the "
|
||||
"code or the translation of Friendica. Thank you all!"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:177
|
||||
msgid "Friendica Communications Server - Setup"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:188
|
||||
msgid "System check"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:190 src/Module/Install.php:247
|
||||
#: src/Module/Install.php:330
|
||||
msgid "Requirement not satisfied"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:191
|
||||
msgid "Optional requirement not satisfied"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:192
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:197
|
||||
msgid "Check again"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:204 src/Module/Admin/Site.php:522
|
||||
msgid "No SSL policy, links will track page SSL state"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:205 src/Module/Admin/Site.php:523
|
||||
msgid "Force all links to use SSL"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:206 src/Module/Admin/Site.php:524
|
||||
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:212
|
||||
msgid "Base settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:214 src/Module/Admin/Site.php:608
|
||||
msgid "SSL link policy"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:216 src/Module/Admin/Site.php:608
|
||||
msgid "Determines whether generated links should be forced to use SSL"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:219
|
||||
msgid "Host name"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:221
|
||||
msgid ""
|
||||
"Overwrite this field in case the determinated hostname isn't right, "
|
||||
"otherweise leave it as is."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:224
|
||||
msgid "Base path to installation"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:226
|
||||
msgid ""
|
||||
"If the system cannot detect the correct path to your installation, enter the "
|
||||
"correct path here. This setting should only be set if you are using a "
|
||||
"restricted system and symbolic links to your webroot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:229
|
||||
msgid "Sub path of the URL"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:231
|
||||
msgid ""
|
||||
"Overwrite this field in case the sub path determination isn't right, "
|
||||
"otherwise leave it as is. Leaving this field blank means the installation is "
|
||||
"at the base URL without sub path."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:242
|
||||
msgid "Database connection"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:243
|
||||
msgid ""
|
||||
"In order to install Friendica we need to know how to connect to your "
|
||||
"database."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:244
|
||||
msgid ""
|
||||
"Please contact your hosting provider or site administrator if you have "
|
||||
"questions about these settings."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:245
|
||||
msgid ""
|
||||
"The database you specify below should already exist. If it does not, please "
|
||||
"create it before continuing."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:254
|
||||
msgid "Database Server Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:259
|
||||
msgid "Database Login Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:265
|
||||
msgid "Database Login Password"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:267
|
||||
msgid "For security reasons the password must not be empty"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:270
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:274 src/Module/Install.php:304
|
||||
msgid "Please select a default timezone for your website"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:289
|
||||
msgid "Site settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:299
|
||||
msgid "Site administrator email address"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:301
|
||||
msgid ""
|
||||
"Your account email address must match this in order to use the web admin "
|
||||
"panel."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:308
|
||||
msgid "System Language:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:310
|
||||
msgid ""
|
||||
"Set the default language for your Friendica installation interface and to "
|
||||
"send emails."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:322
|
||||
msgid "Your Friendica site database has been installed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:332
|
||||
msgid "Installation finished"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:352
|
||||
msgid "<h1>What next</h1>"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:353
|
||||
msgid ""
|
||||
"IMPORTANT: You will need to [manually] setup a scheduled task for the worker."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:356
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Go to your new Friendica node <a href=\"%s/register\">registration page</a> "
|
||||
"and register as new user. Remember to use the same email you have entered as "
|
||||
"administrator email. This will allow you to enter the site admin panel."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Filer/SaveTag.php:69
|
||||
msgid "- select -"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Filer/RemoveTag.php:69
|
||||
msgid "Item was not removed"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Filer/RemoveTag.php:72
|
||||
msgid "Item was not deleted"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/PermissionTooltip.php:25
|
||||
#, php-format
|
||||
msgid "Wrong type \"%s\", expected one of: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/PermissionTooltip.php:38
|
||||
msgid "Model not found"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/PermissionTooltip.php:60
|
||||
msgid "Remote privacy information not available."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/PermissionTooltip.php:71
|
||||
msgid "Visible to:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Delegation.php:147
|
||||
msgid "Switch between your accounts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Delegation.php:148
|
||||
msgid "Manage your accounts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Delegation.php:149
|
||||
msgid ""
|
||||
"Toggle between different identities or community/group pages which share "
|
||||
"your account details or which you have been granted \"manage\" permissions"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Delegation.php:150
|
||||
msgid "Select an identity to manage: "
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Community.php:69
|
||||
msgid "Local Community"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Community.php:72
|
||||
msgid "Posts from local users on this server"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Community.php:80
|
||||
msgid "Global Community"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Community.php:83
|
||||
msgid "Posts from users of the whole federated network"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Community.php:116
|
||||
msgid "Own Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Community.php:120
|
||||
msgid "Include"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Community.php:121
|
||||
msgid "Hide"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Community.php:149 src/Module/Search/Index.php:140
|
||||
#: src/Module/Search/Index.php:180
|
||||
msgid "No results."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Community.php:174
|
||||
msgid ""
|
||||
"This community stream shows all public posts received by this node. They may "
|
||||
"not reflect the opinions of this node’s users."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Community.php:212
|
||||
msgid "Community option not available."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Community.php:228
|
||||
msgid "Not available."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Network.php:161
|
||||
msgid "No such group"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Network.php:165
|
||||
#, php-format
|
||||
msgid "Group: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Network.php:175 src/Module/Contact/Contacts.php:31
|
||||
msgid "Invalid contact."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Network.php:241
|
||||
msgid "Latest Activity"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Network.php:244
|
||||
msgid "Sort by latest activity"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Network.php:249
|
||||
msgid "Latest Posts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Network.php:252
|
||||
msgid "Sort by post received date"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Network.php:257
|
||||
#: src/Module/Settings/Profile/Index.php:242
|
||||
msgid "Personal"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Network.php:260
|
||||
msgid "Posts that mention or involve you"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Network.php:265
|
||||
msgid "Starred"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Network.php:268
|
||||
msgid "Favourite Posts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:44
|
||||
msgid "Welcome to Friendica"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:45
|
||||
msgid "New Member Checklist"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:46
|
||||
msgid ""
|
||||
"We would like to offer some tips and links to help make your experience "
|
||||
"enjoyable. Click any item to visit the relevant page. A link to this page "
|
||||
"will be visible from your home page for two weeks after your initial "
|
||||
"registration and then will quietly disappear."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:48
|
||||
msgid "Getting Started"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:49
|
||||
msgid "Friendica Walk-Through"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:50
|
||||
msgid ""
|
||||
"On your <em>Quick Start</em> page - find a brief introduction to your "
|
||||
"profile and network tabs, make some new connections, and find some groups to "
|
||||
"join."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:53
|
||||
msgid "Go to Your Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:54
|
||||
msgid ""
|
||||
"On your <em>Settings</em> page - change your initial password. Also make a "
|
||||
"note of your Identity Address. This looks just like an email address - and "
|
||||
"will be useful in making friends on the free social web."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:55
|
||||
msgid ""
|
||||
"Review the other settings, particularly the privacy settings. An unpublished "
|
||||
"directory listing is like having an unlisted phone number. In general, you "
|
||||
"should probably publish your listing - unless all of your friends and "
|
||||
"potential friends know exactly how to find you."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:58 src/Module/Settings/Profile/Index.php:248
|
||||
msgid "Upload Profile Photo"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:59
|
||||
msgid ""
|
||||
"Upload a profile photo if you have not done so already. Studies have shown "
|
||||
"that people with real photos of themselves are ten times more likely to make "
|
||||
"friends than people who do not."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:60
|
||||
msgid "Edit Your Profile"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:61
|
||||
msgid ""
|
||||
"Edit your <strong>default</strong> profile to your liking. Review the "
|
||||
"settings for hiding your list of friends and hiding the profile from unknown "
|
||||
"visitors."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:62
|
||||
msgid "Profile Keywords"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:63
|
||||
msgid ""
|
||||
"Set some public keywords for your profile which describe your interests. We "
|
||||
"may be able to find other people with similar interests and suggest "
|
||||
"friendships."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:65
|
||||
msgid "Connecting"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:67
|
||||
msgid "Importing Emails"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:68
|
||||
msgid ""
|
||||
"Enter your email access information on your Connector Settings page if you "
|
||||
"wish to import and interact with friends or mailing lists from your email "
|
||||
"INBOX"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:69
|
||||
msgid "Go to Your Contacts Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:70
|
||||
msgid ""
|
||||
"Your Contacts page is your gateway to managing friendships and connecting "
|
||||
"with friends on other networks. Typically you enter their address or site "
|
||||
"URL in the <em>Add New Contact</em> dialog."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:71
|
||||
msgid "Go to Your Site's Directory"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:72
|
||||
msgid ""
|
||||
"The Directory page lets you find other people in this network or other "
|
||||
"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
|
||||
"their profile page. Provide your own Identity Address if requested."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:73
|
||||
msgid "Finding New People"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:74
|
||||
msgid ""
|
||||
"On the side panel of the Contacts page are several tools to find new "
|
||||
"friends. We can match people by interest, look up people by name or "
|
||||
"interest, and provide suggestions based on network relationships. On a brand "
|
||||
"new site, friend suggestions will usually begin to be populated within 24 "
|
||||
"hours."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:76 src/Module/Contact.php:839 src/Model/Group.php:535
|
||||
#: src/Content/Widget.php:214
|
||||
msgid "Groups"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:77
|
||||
msgid "Group Your Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:78
|
||||
msgid ""
|
||||
"Once you have made some friends, organize them into private conversation "
|
||||
"groups from the sidebar of your Contacts page and then you can interact with "
|
||||
"each group privately on your Network page."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:80
|
||||
msgid "Why Aren't My Posts Public?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:81
|
||||
msgid ""
|
||||
"Friendica respects your privacy. By default, your posts will only show up to "
|
||||
"people you've added as friends. For more information, see the help section "
|
||||
"from the link above."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:83
|
||||
msgid "Getting Help"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:84
|
||||
msgid "Go to the Help Section"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:85
|
||||
msgid ""
|
||||
"Our <strong>help</strong> pages may be consulted for detail on other program "
|
||||
"features and resources."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Bookmarklet.php:56
|
||||
msgid "This page is missing a url parameter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Bookmarklet.php:78
|
||||
msgid "The post was created"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:63
|
||||
msgid "You don't have access to administration pages."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:67
|
||||
msgid ""
|
||||
"Submanaged account can't access the administration pages. Please log back in "
|
||||
"as the main account."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:85 src/Content/Nav.php:253
|
||||
msgid "Information"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:86
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:87 src/Module/Admin/Federation.php:141
|
||||
msgid "Federation Statistics"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:89
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:90 src/Module/Admin/Site.php:580
|
||||
msgid "Site"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:91 src/Module/Admin/Users/Index.php:150
|
||||
#: src/Module/Admin/Users/Index.php:160
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:92 src/Module/Admin/Addons/Details.php:112
|
||||
#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseSettings.php:87
|
||||
msgid "Addons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:93 src/Module/Admin/Themes/Details.php:91
|
||||
#: src/Module/Admin/Themes/Index.php:112
|
||||
msgid "Themes"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:65
|
||||
msgid "Additional features"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:97
|
||||
msgid "Database"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:98
|
||||
msgid "DB updates"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:99
|
||||
msgid "Inspect Deferred Workers"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:100
|
||||
msgid "Inspect worker Queue"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:102
|
||||
msgid "Tools"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:103
|
||||
msgid "Contact Blocklist"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:104
|
||||
msgid "Server Blocklist"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:105 src/Module/Admin/Item/Delete.php:66
|
||||
msgid "Delete Item"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:107 src/Module/BaseAdmin.php:108
|
||||
#: src/Module/Admin/Logs/Settings.php:81
|
||||
msgid "Logs"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:109 src/Module/Admin/Logs/View.php:65
|
||||
msgid "View Logs"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:111
|
||||
msgid "Diagnostics"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:112
|
||||
msgid "PHP Info"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:113
|
||||
msgid "probe address"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:114
|
||||
msgid "check webfinger"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:115 src/Module/Admin/Item/Source.php:57
|
||||
msgid "Item Source"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:116
|
||||
msgid "Babel"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:125 src/Content/Nav.php:289
|
||||
msgid "Admin"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:126
|
||||
msgid "Addon Features"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:127
|
||||
msgid "User registrations waiting for confirmation"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:94
|
||||
#, php-format
|
||||
msgid "%d contact edited."
|
||||
msgid_plural "%d contacts edited."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Module/Contact.php:121
|
||||
msgid "Could not access contact record."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:340 src/Model/Profile.php:439
|
||||
#: src/Content/Text/HTML.php:889
|
||||
msgid "Follow"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:342 src/Model/Profile.php:441
|
||||
#: src/Model/Profile.php:441 src/Module/Contact.php:342
|
||||
msgid "Unfollow"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:400 src/Module/Api/Twitter/ContactEndpoint.php:65
|
||||
msgid "Contact not found"
|
||||
#: src/Model/Profile.php:443
|
||||
msgid "Atom feed"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:419
|
||||
msgid "Contact has been blocked"
|
||||
#: src/Model/Profile.php:451 src/Module/Contact.php:338
|
||||
#: src/Module/Notifications/Introductions.php:186
|
||||
msgid "Network:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:419
|
||||
msgid "Contact has been unblocked"
|
||||
#: src/Model/Profile.php:481 src/Model/Profile.php:578
|
||||
msgid "g A l F d"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:429
|
||||
msgid "Contact has been ignored"
|
||||
#: src/Model/Profile.php:482
|
||||
msgid "F d"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:429
|
||||
msgid "Contact has been unignored"
|
||||
#: src/Model/Profile.php:544 src/Model/Profile.php:629
|
||||
msgid "[today]"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:439
|
||||
msgid "Contact has been archived"
|
||||
#: src/Model/Profile.php:554
|
||||
msgid "Birthday Reminders"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:439
|
||||
msgid "Contact has been unarchived"
|
||||
#: src/Model/Profile.php:555
|
||||
msgid "Birthdays this week:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:452
|
||||
msgid "Drop contact"
|
||||
#: src/Model/Profile.php:616
|
||||
msgid "[No description]"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:455 src/Module/Contact.php:879
|
||||
msgid "Do you really want to delete this contact?"
|
||||
#: src/Model/Profile.php:642
|
||||
msgid "Event Reminders"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:468
|
||||
msgid "Contact has been removed."
|
||||
#: src/Model/Profile.php:643
|
||||
msgid "Upcoming events the next 7 days:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:496
|
||||
#: src/Model/Profile.php:818
|
||||
#, php-format
|
||||
msgid "You are mutual friends with %s"
|
||||
msgid "OpenWebAuth: %1$s welcomes %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:500
|
||||
#: src/Model/Storage/Database.php:74
|
||||
#, php-format
|
||||
msgid "You are sharing with %s"
|
||||
msgid "Database storage failed to update %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:504
|
||||
#, php-format
|
||||
msgid "%s is sharing with you"
|
||||
#: src/Model/Storage/Database.php:82
|
||||
msgid "Database storage failed to insert data"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:528
|
||||
msgid "Private communications are not available for this contact."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:530
|
||||
msgid "Never"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:533
|
||||
msgid "(Update was not successful)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:533
|
||||
msgid "(Update was successful)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:535 src/Module/Contact.php:1136
|
||||
msgid "Suggest friends"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:539
|
||||
#, php-format
|
||||
msgid "Network type: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:544
|
||||
msgid "Communications lost with this contact!"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:550
|
||||
msgid "Fetch further information for feeds"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:552
|
||||
msgid ""
|
||||
"Fetch information like preview pictures, title and teaser from the feed "
|
||||
"item. You can activate this if the feed doesn't contain much text. Keywords "
|
||||
"are taken from the meta header in the feed item and are posted as hash tags."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:554 src/Module/Admin/Site.php:686
|
||||
#: src/Module/Admin/Site.php:694 src/Module/Settings/TwoFactor/Index.php:118
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:555
|
||||
msgid "Fetch information"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:556
|
||||
msgid "Fetch keywords"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:557
|
||||
msgid "Fetch information and keywords"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:569 src/Module/Contact.php:573
|
||||
#: src/Module/Contact.php:576 src/Module/Contact.php:580
|
||||
msgid "No mirroring"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:570
|
||||
msgid "Mirror as forwarded posting"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:571 src/Module/Contact.php:577
|
||||
#: src/Module/Contact.php:581
|
||||
msgid "Mirror as my own posting"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:574 src/Module/Contact.php:578
|
||||
msgid "Native reshare"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:593
|
||||
msgid "Contact Information / Notes"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:594
|
||||
msgid "Contact Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:602
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:606
|
||||
msgid "Their personal note"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:608
|
||||
msgid "Edit contact notes"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:611 src/Module/Contact.php:1104
|
||||
#, php-format
|
||||
msgid "Visit %s's profile [%s]"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:612
|
||||
msgid "Block/Unblock contact"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:613
|
||||
msgid "Ignore contact"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:614
|
||||
msgid "View conversations"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:619
|
||||
msgid "Last update:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:621
|
||||
msgid "Update public posts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:623 src/Module/Contact.php:1146
|
||||
msgid "Update now"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:625 src/Module/Contact.php:883
|
||||
#: src/Module/Contact.php:1165 src/Module/Admin/Users/Index.php:156
|
||||
#: src/Module/Admin/Users/Blocked.php:142
|
||||
#: src/Module/Admin/Blocklist/Contact.php:85
|
||||
msgid "Unblock"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:626 src/Module/Contact.php:884
|
||||
#: src/Module/Contact.php:1173
|
||||
msgid "Unignore"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:630
|
||||
msgid "Currently blocked"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:631
|
||||
msgid "Currently ignored"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:632
|
||||
msgid "Currently archived"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:633
|
||||
msgid "Awaiting connection acknowledge"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:634
|
||||
msgid ""
|
||||
"Replies/likes to your public posts <strong>may</strong> still be visible"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:635
|
||||
msgid "Notification for new posts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:635
|
||||
msgid "Send a notification of every new post of this contact"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:637
|
||||
msgid "Keyword Deny List"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:637
|
||||
msgid ""
|
||||
"Comma separated list of keywords that should not be converted to hashtags, "
|
||||
"when \"Fetch information and keywords\" is selected"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:653 src/Module/Settings/TwoFactor/Index.php:132
|
||||
msgid "Actions"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:660
|
||||
msgid "Mirror postings from this contact"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:662
|
||||
msgid ""
|
||||
"Mark this contact as remote_self, this will cause friendica to repost new "
|
||||
"entries from this contact."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:791 src/Module/Group.php:292
|
||||
#: src/Content/Widget.php:247
|
||||
msgid "All Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:794
|
||||
msgid "Show all contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:799 src/Module/Contact.php:859
|
||||
#: src/Module/Admin/BaseUsers.php:66
|
||||
msgid "Pending"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:802
|
||||
msgid "Only show pending contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:807 src/Module/Contact.php:860
|
||||
#: src/Module/Admin/BaseUsers.php:74
|
||||
msgid "Blocked"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:810
|
||||
msgid "Only show blocked contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:815 src/Module/Contact.php:862
|
||||
msgid "Ignored"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:818
|
||||
msgid "Only show ignored contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:823 src/Module/Contact.php:863
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:826
|
||||
msgid "Only show archived contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:831 src/Module/Contact.php:861
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:834
|
||||
msgid "Only show hidden contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:842
|
||||
msgid "Organize your contact groups"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:853 src/Content/Widget.php:239 src/BaseModule.php:189
|
||||
msgid "Following"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:854 src/Content/Widget.php:240 src/BaseModule.php:194
|
||||
msgid "Mutual friends"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:874
|
||||
msgid "Search your contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:875 src/Module/Search/Index.php:193
|
||||
#, php-format
|
||||
msgid "Results for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:885 src/Module/Contact.php:1182
|
||||
msgid "Archive"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:885 src/Module/Contact.php:1182
|
||||
msgid "Unarchive"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:888
|
||||
msgid "Batch Actions"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:923
|
||||
msgid "Conversations started by this contact"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:928
|
||||
msgid "Posts and Comments"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:939 src/Module/BaseProfile.php:55
|
||||
msgid "Profile Details"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:946
|
||||
msgid "View all known contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:956
|
||||
msgid "Advanced Contact Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:1063
|
||||
msgid "Mutual Friendship"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:1067
|
||||
msgid "is a fan of yours"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:1071
|
||||
msgid "you are a fan of"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:1089
|
||||
msgid "Pending outgoing contact request"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:1091
|
||||
msgid "Pending incoming contact request"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:1156
|
||||
msgid "Refetch contact data"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:1167
|
||||
msgid "Toggle Blocked status"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:1175
|
||||
msgid "Toggle Ignored status"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:1184
|
||||
msgid "Toggle Archive status"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:1192
|
||||
msgid "Delete contact"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Tos.php:46 src/Module/Tos.php:88
|
||||
msgid ""
|
||||
"At the time of registration, and for providing communications between the "
|
||||
"user account and their contacts, the user has to provide a display name (pen "
|
||||
"name), an username (nickname) and a working email address. The names will be "
|
||||
"accessible on the profile page of the account by any visitor of the page, "
|
||||
"even if other profile details are not displayed. The email address will only "
|
||||
"be used to send the user notifications about interactions, but wont be "
|
||||
"visibly displayed. The listing of an account in the node's user directory or "
|
||||
"the global user directory is optional and can be controlled in the user "
|
||||
"settings, it is not necessary for communication."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Tos.php:47 src/Module/Tos.php:89
|
||||
msgid ""
|
||||
"This data is required for communication and is passed on to the nodes of the "
|
||||
"communication partners and is stored there. Users can enter additional "
|
||||
"private data that may be transmitted to the communication partners accounts."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Tos.php:48 src/Module/Tos.php:90
|
||||
#: src/Model/Storage/Filesystem.php:100
|
||||
#, php-format
|
||||
msgid ""
|
||||
"At any point in time a logged in user can export their account data from the "
|
||||
"<a href=\"%1$s/settings/userexport\">account settings</a>. If the user wants "
|
||||
"to delete their account they can do so at <a href=\"%1$s/removeme\">%1$s/"
|
||||
"removeme</a>. The deletion of the account will be permanent. Deletion of the "
|
||||
"data will also be requested from the nodes of the communication partners."
|
||||
"Filesystem storage failed to create \"%s\". Check you write permissions."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Tos.php:51 src/Module/Tos.php:87
|
||||
msgid "Privacy Statement"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Help.php:62
|
||||
msgid "Help:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/HTTPException/MethodNotAllowed.php:32
|
||||
msgid "Method Not Allowed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Api/Twitter/ContactEndpoint.php:135
|
||||
msgid "Profile not found"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Api/Mastodon/Unimplemented.php:42
|
||||
#: src/Model/Storage/Filesystem.php:148
|
||||
#, php-format
|
||||
msgid "API endpoint \"%s\" is not implemented"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Api/Mastodon/Unimplemented.php:43
|
||||
msgid ""
|
||||
"The API endpoint is currently not implemented but might be in the future."
|
||||
"Filesystem storage failed to save data to \"%s\". Check your write "
|
||||
"permissions"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Invite.php:55
|
||||
msgid "Total invitation limit exceeded."
|
||||
#: src/Model/Storage/Filesystem.php:176
|
||||
msgid "Storage base path"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Invite.php:78
|
||||
#: src/Model/Storage/Filesystem.php:178
|
||||
msgid ""
|
||||
"Folder where uploaded files are saved. For maximum security, This should be "
|
||||
"a path outside web server folder tree"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Storage/Filesystem.php:191
|
||||
msgid "Enter a valid existing folder"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:186 src/Model/User.php:931
|
||||
msgid "SERIOUS ERROR: Generation of security keys failed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:549
|
||||
msgid "Login failed"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:581
|
||||
msgid "Not enough information to authenticate"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:676
|
||||
msgid "Password can't be empty"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:695
|
||||
msgid "Empty passwords are not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:699
|
||||
msgid ""
|
||||
"The new password has been exposed in a public data dump, please choose "
|
||||
"another."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:705
|
||||
msgid ""
|
||||
"The password can't contain accentuated letters, white spaces or colons (:)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:811
|
||||
msgid "Passwords do not match. Password unchanged."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:818
|
||||
msgid "An invitation is required."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:822
|
||||
msgid "Invitation could not be verified."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:830
|
||||
msgid "Invalid OpenID url"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:843 src/Security/Authentication.php:223
|
||||
msgid ""
|
||||
"We encountered a problem while logging in with the OpenID you provided. "
|
||||
"Please check the correct spelling of the ID."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:843 src/Security/Authentication.php:223
|
||||
msgid "The error message was:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:849
|
||||
msgid "Please enter the required information."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:863
|
||||
#, php-format
|
||||
msgid "%s : Not a valid email address."
|
||||
msgid ""
|
||||
"system.username_min_length (%s) and system.username_max_length (%s) are "
|
||||
"excluding each other, swapping values."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Invite.php:105
|
||||
msgid "Please join us on Friendica"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Invite.php:114
|
||||
msgid "Invitation limit exceeded. Please contact your site administrator."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Invite.php:118
|
||||
#: src/Model/User.php:870
|
||||
#, php-format
|
||||
msgid "%s : Message delivery failed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Invite.php:122
|
||||
#, php-format
|
||||
msgid "%d message sent."
|
||||
msgid_plural "%d messages sent."
|
||||
msgid "Username should be at least %s character."
|
||||
msgid_plural "Username should be at least %s characters."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Module/Invite.php:140
|
||||
msgid "You have no more invitations available"
|
||||
#: src/Model/User.php:874
|
||||
#, php-format
|
||||
msgid "Username should be at most %s character."
|
||||
msgid_plural "Username should be at most %s characters."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Model/User.php:882
|
||||
msgid "That doesn't appear to be your full (First Last) name."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Invite.php:147
|
||||
#: src/Model/User.php:887
|
||||
msgid "Your email domain is not among those allowed on this site."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:891
|
||||
msgid "Not a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:894
|
||||
msgid "The nickname was blocked from registration by the nodes admin."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:898 src/Model/User.php:906
|
||||
msgid "Cannot use that email."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:913
|
||||
msgid "Your nickname can only contain a-z, 0-9 and _."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:921 src/Model/User.php:978
|
||||
msgid "Nickname is already registered. Please choose another."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:965 src/Model/User.php:969
|
||||
msgid "An error occurred during registration. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:992
|
||||
msgid "An error occurred creating your default profile. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:999
|
||||
msgid "An error occurred creating your self contact. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:1004
|
||||
msgid "Friends"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:1008
|
||||
msgid ""
|
||||
"An error occurred creating your default contact group. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:1199
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Visit %s for a list of public sites that you can join. Friendica members on "
|
||||
"other sites can all connect with each other, as well as with members of many "
|
||||
"other social networks."
|
||||
"\n"
|
||||
"\t\tDear %1$s,\n"
|
||||
"\t\t\tthe administrator of %2$s has set up an account for you."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Invite.php:149
|
||||
#: src/Model/User.php:1202
|
||||
#, php-format
|
||||
msgid ""
|
||||
"To accept this invitation, please visit and register at %s or any other "
|
||||
"public Friendica website."
|
||||
"\n"
|
||||
"\t\tThe login details are as follows:\n"
|
||||
"\n"
|
||||
"\t\tSite Location:\t%1$s\n"
|
||||
"\t\tLogin Name:\t\t%2$s\n"
|
||||
"\t\tPassword:\t\t%3$s\n"
|
||||
"\n"
|
||||
"\t\tYou may change your password from your account \"Settings\" page after "
|
||||
"logging\n"
|
||||
"\t\tin.\n"
|
||||
"\n"
|
||||
"\t\tPlease take a few moments to review the other account settings on that "
|
||||
"page.\n"
|
||||
"\n"
|
||||
"\t\tYou may also wish to add some basic information to your default profile\n"
|
||||
"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
|
||||
"\n"
|
||||
"\t\tWe recommend setting your full name, adding a profile photo,\n"
|
||||
"\t\tadding some profile \"keywords\" (very useful in making new friends) - "
|
||||
"and\n"
|
||||
"\t\tperhaps what country you live in; if you do not wish to be more "
|
||||
"specific\n"
|
||||
"\t\tthan that.\n"
|
||||
"\n"
|
||||
"\t\tWe fully respect your right to privacy, and none of these items are "
|
||||
"necessary.\n"
|
||||
"\t\tIf you are new and do not know anybody here, they may help\n"
|
||||
"\t\tyou to make some new and interesting friends.\n"
|
||||
"\n"
|
||||
"\t\tIf you ever want to delete your account, you can do so at %1$s/removeme\n"
|
||||
"\n"
|
||||
"\t\tThank you and welcome to %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Invite.php:150
|
||||
#: src/Model/User.php:1235 src/Model/User.php:1342
|
||||
#, php-format
|
||||
msgid "Registration details for %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:1255
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Friendica sites all inter-connect to create a huge privacy-enhanced social "
|
||||
"web that is owned and controlled by its members. They can also connect with "
|
||||
"many traditional social networks. See %s for a list of alternate Friendica "
|
||||
"sites you can join."
|
||||
"\n"
|
||||
"\t\t\tDear %1$s,\n"
|
||||
"\t\t\t\tThank you for registering at %2$s. Your account is pending for "
|
||||
"approval by the administrator.\n"
|
||||
"\n"
|
||||
"\t\t\tYour login details are as follows:\n"
|
||||
"\n"
|
||||
"\t\t\tSite Location:\t%3$s\n"
|
||||
"\t\t\tLogin Name:\t\t%4$s\n"
|
||||
"\t\t\tPassword:\t\t%5$s\n"
|
||||
"\t\t"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Invite.php:154
|
||||
msgid ""
|
||||
"Our apologies. This system is not currently configured to connect with other "
|
||||
"public sites or invite members."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Invite.php:157
|
||||
msgid ""
|
||||
"Friendica sites all inter-connect to create a huge privacy-enhanced social "
|
||||
"web that is owned and controlled by its members. They can also connect with "
|
||||
"many traditional social networks."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Invite.php:156
|
||||
#: src/Model/User.php:1274
|
||||
#, php-format
|
||||
msgid "To accept this invitation, please visit and register at %s."
|
||||
msgid "Registration at %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Invite.php:164
|
||||
msgid "Send invitations"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Invite.php:165
|
||||
msgid "Enter email addresses, one per line:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Invite.php:169
|
||||
msgid ""
|
||||
"You are cordially invited to join me and other close friends on Friendica - "
|
||||
"and help us to create a better social web."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Invite.php:171
|
||||
msgid "You will need to supply this invitation code: $invite_code"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Invite.php:171
|
||||
msgid ""
|
||||
"Once you have registered, please connect with me via my profile page at:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Invite.php:173
|
||||
msgid ""
|
||||
"For more information about the Friendica project and why we feel it is "
|
||||
"important, please visit http://friendi.ca"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseSearch.php:69
|
||||
#: src/Model/User.php:1298
|
||||
#, php-format
|
||||
msgid "People Search - %s"
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\t\t\tDear %1$s,\n"
|
||||
"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n"
|
||||
"\t\t\t"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseSearch.php:79
|
||||
#: src/Model/User.php:1306
|
||||
#, php-format
|
||||
msgid "Forum Search - %s"
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\t\tThe login details are as follows:\n"
|
||||
"\n"
|
||||
"\t\t\tSite Location:\t%3$s\n"
|
||||
"\t\t\tLogin Name:\t\t%1$s\n"
|
||||
"\t\t\tPassword:\t\t%5$s\n"
|
||||
"\n"
|
||||
"\t\t\tYou may change your password from your account \"Settings\" page after "
|
||||
"logging\n"
|
||||
"\t\t\tin.\n"
|
||||
"\n"
|
||||
"\t\t\tPlease take a few moments to review the other account settings on that "
|
||||
"page.\n"
|
||||
"\n"
|
||||
"\t\t\tYou may also wish to add some basic information to your default "
|
||||
"profile\n"
|
||||
"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
|
||||
"\n"
|
||||
"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
|
||||
"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - "
|
||||
"and\n"
|
||||
"\t\t\tperhaps what country you live in; if you do not wish to be more "
|
||||
"specific\n"
|
||||
"\t\t\tthan that.\n"
|
||||
"\n"
|
||||
"\t\t\tWe fully respect your right to privacy, and none of these items are "
|
||||
"necessary.\n"
|
||||
"\t\t\tIf you are new and do not know anybody here, they may help\n"
|
||||
"\t\t\tyou to make some new and interesting friends.\n"
|
||||
"\n"
|
||||
"\t\t\tIf you ever want to delete your account, you can do so at %3$s/"
|
||||
"removeme\n"
|
||||
"\n"
|
||||
"\t\t\tThank you and welcome to %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Addons/Details.php:65
|
||||
msgid "Addon not found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Addons/Details.php:76 src/Module/Admin/Addons/Index.php:49
|
||||
#, php-format
|
||||
msgid "Addon %s disabled."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Addons/Details.php:79 src/Module/Admin/Addons/Index.php:51
|
||||
#, php-format
|
||||
msgid "Addon %s enabled."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Themes/Details.php:46
|
||||
#: src/Module/Admin/Addons/Details.php:88
|
||||
#: src/Module/Admin/Themes/Details.php:46
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Themes/Details.php:49
|
||||
#: src/Module/Admin/Addons/Details.php:91
|
||||
#: src/Module/Admin/Themes/Details.php:49
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Themes/Details.php:57 src/Module/Admin/Themes/Index.php:65
|
||||
#, php-format
|
||||
msgid "Theme %s disabled."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Themes/Details.php:59 src/Module/Admin/Themes/Index.php:67
|
||||
#, php-format
|
||||
msgid "Theme %s successfully enabled."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Themes/Details.php:61 src/Module/Admin/Themes/Index.php:69
|
||||
#, php-format
|
||||
msgid "Theme %s failed to install."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Themes/Details.php:83
|
||||
msgid "Screenshot"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Themes/Details.php:90 src/Module/Admin/Themes/Index.php:111
|
||||
#: src/Module/Admin/Queue.php:72 src/Module/Admin/Federation.php:140
|
||||
#: src/Module/Admin/Logs/View.php:64 src/Module/Admin/Logs/Settings.php:80
|
||||
#: src/Module/Admin/Site.php:579 src/Module/Admin/Summary.php:232
|
||||
#: src/Module/Admin/Users/Create.php:61 src/Module/Admin/Users/Pending.php:101
|
||||
#: src/Module/Admin/Users/Index.php:149 src/Module/Admin/Users/Active.php:136
|
||||
#: src/Module/Admin/Users/Blocked.php:137 src/Module/Admin/Users/Deleted.php:85
|
||||
#: src/Module/Admin/Tos.php:58 src/Module/Admin/Blocklist/Server.php:88
|
||||
#: src/Module/Admin/Addons/Details.php:111 src/Module/Admin/Addons/Index.php:67
|
||||
#: src/Module/Admin/Blocklist/Contact.php:78
|
||||
#: src/Module/Admin/Item/Delete.php:65 src/Module/Admin/Addons/Details.php:111
|
||||
#: src/Module/Admin/Addons/Index.php:67
|
||||
#: src/Module/Admin/Blocklist/Server.php:88 src/Module/Admin/Federation.php:140
|
||||
#: src/Module/Admin/Item/Delete.php:65 src/Module/Admin/Logs/Settings.php:80
|
||||
#: src/Module/Admin/Logs/View.php:64 src/Module/Admin/Queue.php:72
|
||||
#: src/Module/Admin/Site.php:579 src/Module/Admin/Summary.php:232
|
||||
#: src/Module/Admin/Themes/Details.php:90 src/Module/Admin/Themes/Index.php:111
|
||||
#: src/Module/Admin/Tos.php:58 src/Module/Admin/Users/Active.php:136
|
||||
#: src/Module/Admin/Users/Blocked.php:137 src/Module/Admin/Users/Create.php:61
|
||||
#: src/Module/Admin/Users/Deleted.php:85 src/Module/Admin/Users/Index.php:149
|
||||
#: src/Module/Admin/Users/Pending.php:101
|
||||
msgid "Administration"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Themes/Details.php:92
|
||||
#: src/Module/Admin/Addons/Details.php:112 src/Module/Admin/Addons/Index.php:68
|
||||
#: src/Module/BaseAdmin.php:92 src/Module/BaseSettings.php:87
|
||||
msgid "Addons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Addons/Details.php:113
|
||||
#: src/Module/Admin/Themes/Details.php:92
|
||||
msgid "Toggle"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Themes/Details.php:101
|
||||
#: src/Module/Admin/Addons/Details.php:121
|
||||
#: src/Module/Admin/Themes/Details.php:101
|
||||
msgid "Author: "
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Themes/Details.php:102
|
||||
#: src/Module/Admin/Addons/Details.php:122
|
||||
#: src/Module/Admin/Themes/Details.php:102
|
||||
msgid "Maintainer: "
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Themes/Embed.php:65
|
||||
msgid "Unknown theme."
|
||||
#: src/Module/Admin/Addons/Index.php:42
|
||||
msgid "Addons reloaded"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Themes/Index.php:51
|
||||
msgid "Themes reloaded"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Themes/Index.php:114
|
||||
msgid "Reload active themes"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Themes/Index.php:119
|
||||
#: src/Module/Admin/Addons/Index.php:53
|
||||
#, php-format
|
||||
msgid "No themes found on the system. They should be placed in %1$s"
|
||||
msgid "Addon %s failed to install."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Themes/Index.php:120
|
||||
msgid "[Experimental]"
|
||||
#: src/Module/Admin/Addons/Index.php:70
|
||||
msgid "Reload active addons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Themes/Index.php:121
|
||||
msgid "[Unsupported]"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Features.php:76
|
||||
#: src/Module/Admin/Addons/Index.php:75
|
||||
#, php-format
|
||||
msgid "Lock feature %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Features.php:85
|
||||
msgid "Manage Additional Features"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Queue.php:50
|
||||
msgid "Inspect Deferred Worker Queue"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Queue.php:51
|
||||
msgid ""
|
||||
"This page lists the deferred worker jobs. This are jobs that couldn't be "
|
||||
"executed at the first time."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Queue.php:54
|
||||
msgid "Inspect Worker Queue"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Queue.php:55
|
||||
msgid ""
|
||||
"This page lists the currently queued worker jobs. These jobs are handled by "
|
||||
"the worker cronjob you've set up during install."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Queue.php:75
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Queue.php:76
|
||||
msgid "Job Parameters"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Queue.php:77
|
||||
msgid "Created"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Queue.php:78
|
||||
msgid "Priority"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/BaseUsers.php:50 src/Content/Widget.php:537
|
||||
msgid "All"
|
||||
"There are currently no addons available on your node. You can find the "
|
||||
"official addon repository at %1$s and might find other interesting addons in "
|
||||
"the open addon registry at %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/BaseUsers.php:53
|
||||
|
|
@ -6864,10 +5281,20 @@ msgstr ""
|
|||
msgid "List of active accounts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/BaseUsers.php:66 src/Module/Contact.php:799
|
||||
#: src/Module/Contact.php:859
|
||||
msgid "Pending"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/BaseUsers.php:69
|
||||
msgid "List of pending registrations"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/BaseUsers.php:74 src/Module/Contact.php:807
|
||||
#: src/Module/Contact.php:860
|
||||
msgid "Blocked"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/BaseUsers.php:77
|
||||
msgid "List of blocked users"
|
||||
msgstr ""
|
||||
|
|
@ -6888,6 +5315,172 @@ msgstr ""
|
|||
msgid "Relay"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Contact.php:57
|
||||
#, php-format
|
||||
msgid "%s contact unblocked"
|
||||
msgid_plural "%s contacts unblocked"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Contact.php:79
|
||||
msgid "Remote Contact Blocklist"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Contact.php:80
|
||||
msgid ""
|
||||
"This page allows you to prevent any message from a remote contact to reach "
|
||||
"your node."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Contact.php:81
|
||||
msgid "Block Remote Contact"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Contact.php:82
|
||||
#: src/Module/Admin/Users/Active.php:138 src/Module/Admin/Users/Blocked.php:139
|
||||
#: src/Module/Admin/Users/Index.php:151 src/Module/Admin/Users/Pending.php:103
|
||||
msgid "select all"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Contact.php:83
|
||||
msgid "select none"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Contact.php:85
|
||||
#: src/Module/Admin/Users/Blocked.php:142 src/Module/Admin/Users/Index.php:156
|
||||
#: src/Module/Contact.php:625 src/Module/Contact.php:883
|
||||
#: src/Module/Contact.php:1165
|
||||
msgid "Unblock"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Contact.php:86
|
||||
msgid "No remote contact is blocked from this node."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Contact.php:88
|
||||
msgid "Blocked Remote Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Contact.php:89
|
||||
msgid "Block New Remote Contact"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Contact.php:90
|
||||
msgid "Photo"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Contact.php:90
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Contact.php:98
|
||||
#, php-format
|
||||
msgid "%s total blocked contact"
|
||||
msgid_plural "%s total blocked contacts"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Contact.php:100
|
||||
msgid "URL of the remote contact to block."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Contact.php:101
|
||||
msgid "Block Reason"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:49
|
||||
msgid "Server domain pattern added to blocklist."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:79
|
||||
#: src/Module/Admin/Blocklist/Server.php:104
|
||||
msgid "Blocked server domain pattern"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:80
|
||||
#: src/Module/Admin/Blocklist/Server.php:105 src/Module/Friendica.php:81
|
||||
msgid "Reason for the block"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:81
|
||||
msgid "Delete server domain pattern"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:81
|
||||
msgid "Check to delete this entry from the blocklist"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:89
|
||||
msgid "Server Domain Pattern Blocklist"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:90
|
||||
msgid ""
|
||||
"This page can be used to define a blocklist of server domain patterns from "
|
||||
"the federated network that are not allowed to interact with your node. For "
|
||||
"each domain pattern you should also provide the reason why you block it."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:91
|
||||
msgid ""
|
||||
"The list of blocked server domain patterns will be made publically available "
|
||||
"on the <a href=\"/friendica\">/friendica</a> page so that your users and "
|
||||
"people investigating communication problems can find the reason easily."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:92
|
||||
msgid ""
|
||||
"<p>The server domain pattern syntax is case-insensitive shell wildcard, "
|
||||
"comprising the following special characters:</p>\n"
|
||||
"<ul>\n"
|
||||
"\t<li><code>*</code>: Any number of characters</li>\n"
|
||||
"\t<li><code>?</code>: Any single character</li>\n"
|
||||
"\t<li><code>[<char1><char2>...]</code>: char1 or char2</li>\n"
|
||||
"</ul>"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:98
|
||||
msgid "Add new entry to block list"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:99
|
||||
msgid "Server Domain Pattern"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:99
|
||||
msgid ""
|
||||
"The domain pattern of the new server to add to the block list. Do not "
|
||||
"include the protocol."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:100
|
||||
msgid "Block reason"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:100
|
||||
msgid "The reason why you blocked this server domain pattern."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:101
|
||||
msgid "Add Entry"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:102
|
||||
msgid "Save changes to the blocklist"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:103
|
||||
msgid "Current Entries in the Blocklist"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:106
|
||||
msgid "Delete entry from blocklist"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:109
|
||||
msgid "Delete entry from blocklist?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/DBSync.php:51
|
||||
msgid "Update has been marked successful"
|
||||
msgstr ""
|
||||
|
|
@ -6947,6 +5540,15 @@ msgstr ""
|
|||
msgid "Attempt to execute this update step automatically"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Features.php:76
|
||||
#, php-format
|
||||
msgid "Lock feature %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Features.php:85
|
||||
msgid "Manage Additional Features"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Federation.php:53
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
|
@ -6962,6 +5564,10 @@ msgid ""
|
|||
"only reflect the part of the network your node is aware of."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Federation.php:141 src/Module/BaseAdmin.php:87
|
||||
msgid "Federation Statistics"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Federation.php:145
|
||||
#, php-format
|
||||
msgid ""
|
||||
|
|
@ -6969,18 +5575,87 @@ msgid ""
|
|||
"following platforms:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Logs/View.php:40
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Error trying to open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see "
|
||||
"if file %1$s exist and is readable."
|
||||
#: src/Module/Admin/Item/Delete.php:54
|
||||
msgid "Item marked for deletion."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Logs/View.php:44
|
||||
#, php-format
|
||||
#: src/Module/Admin/Item/Delete.php:66 src/Module/BaseAdmin.php:105
|
||||
msgid "Delete Item"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Item/Delete.php:67
|
||||
msgid "Delete this Item"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Item/Delete.php:68
|
||||
msgid ""
|
||||
"Couldn't open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see if file "
|
||||
"%1$s is readable."
|
||||
"On this page you can delete an item from your node. If the item is a top "
|
||||
"level posting, the entire thread will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Item/Delete.php:69
|
||||
msgid ""
|
||||
"You need to know the GUID of the item. You can find it e.g. by looking at "
|
||||
"the display URL. The last part of http://example.com/display/123456 is the "
|
||||
"GUID, here 123456."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Item/Delete.php:70
|
||||
msgid "GUID"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Item/Delete.php:70
|
||||
msgid "The GUID of the item you want to delete."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Item/Source.php:57 src/Module/BaseAdmin.php:115
|
||||
msgid "Item Source"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Item/Source.php:58
|
||||
msgid "Item Guid"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Item/Source.php:63
|
||||
msgid "Item Id"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Item/Source.php:64
|
||||
msgid "Item URI"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Item/Source.php:66
|
||||
msgid "Terms"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Item/Source.php:67
|
||||
msgid "Tag"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Item/Source.php:68 src/Module/Admin/Users/Active.php:129
|
||||
#: src/Module/Admin/Users/Blocked.php:130 src/Module/Admin/Users/Index.php:142
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Item/Source.php:69
|
||||
msgid "Term"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Item/Source.php:70
|
||||
msgid "URL"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Item/Source.php:71
|
||||
msgid "Mention"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Item/Source.php:72
|
||||
msgid "Implicit Mention"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Item/Source.php:73
|
||||
#: src/Module/Debug/ActivityPubConversion.php:62
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Logs/Settings.php:48
|
||||
|
|
@ -6996,6 +5671,11 @@ msgstr ""
|
|||
msgid "PHP log currently disabled."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Logs/Settings.php:81 src/Module/BaseAdmin.php:107
|
||||
#: src/Module/BaseAdmin.php:108
|
||||
msgid "Logs"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Logs/Settings.php:83
|
||||
msgid "Clear"
|
||||
msgstr ""
|
||||
|
|
@ -7031,6 +5711,60 @@ msgid ""
|
|||
"'display_errors' is to enable these options, set to '0' to disable them."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Logs/View.php:40
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Error trying to open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see "
|
||||
"if file %1$s exist and is readable."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Logs/View.php:44
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Couldn't open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see if file "
|
||||
"%1$s is readable."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Logs/View.php:65 src/Module/BaseAdmin.php:109
|
||||
msgid "View Logs"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Queue.php:50
|
||||
msgid "Inspect Deferred Worker Queue"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Queue.php:51
|
||||
msgid ""
|
||||
"This page lists the deferred worker jobs. This are jobs that couldn't be "
|
||||
"executed at the first time."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Queue.php:54
|
||||
msgid "Inspect Worker Queue"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Queue.php:55
|
||||
msgid ""
|
||||
"This page lists the currently queued worker jobs. These jobs are handled by "
|
||||
"the worker cronjob you've set up during install."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Queue.php:75
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Queue.php:76
|
||||
msgid "Job Parameters"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Queue.php:77
|
||||
msgid "Created"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Queue.php:78
|
||||
msgid "Priority"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:69
|
||||
msgid "Can not parse base url. Must have at least <scheme>://<domain>"
|
||||
msgstr ""
|
||||
|
|
@ -7088,6 +5822,18 @@ msgstr ""
|
|||
msgid "Open"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:522 src/Module/Install.php:204
|
||||
msgid "No SSL policy, links will track page SSL state"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:523 src/Module/Install.php:205
|
||||
msgid "Force all links to use SSL"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:524 src/Module/Install.php:206
|
||||
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:528
|
||||
msgid "Don't check"
|
||||
msgstr ""
|
||||
|
|
@ -7116,6 +5862,10 @@ msgstr ""
|
|||
msgid "Database (legacy)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:580 src/Module/BaseAdmin.php:90
|
||||
msgid "Site"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:581
|
||||
msgid "General Information"
|
||||
msgstr ""
|
||||
|
|
@ -7124,6 +5874,10 @@ msgstr ""
|
|||
msgid "Republish users to directory"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:584 src/Module/Register.php:139
|
||||
msgid "Registration"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:585
|
||||
msgid "File upload"
|
||||
msgstr ""
|
||||
|
|
@ -7239,6 +5993,14 @@ msgstr ""
|
|||
msgid "Theme for mobile devices"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:608 src/Module/Install.php:214
|
||||
msgid "SSL link policy"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:608 src/Module/Install.php:216
|
||||
msgid "Determines whether generated links should be forced to use SSL"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:609
|
||||
msgid "Force SSL"
|
||||
msgstr ""
|
||||
|
|
@ -7862,6 +6624,11 @@ msgstr ""
|
|||
msgid "Encryption layer between nodes."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:686 src/Module/Admin/Site.php:694
|
||||
#: src/Module/Contact.php:554 src/Module/Settings/TwoFactor/Index.php:118
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:686
|
||||
msgid "Enabled"
|
||||
msgstr ""
|
||||
|
|
@ -8123,6 +6890,10 @@ msgstr ""
|
|||
msgid "Server Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Summary.php:233 src/Repository/ProfileField.php:285
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Summary.php:235
|
||||
msgid "Registered users"
|
||||
msgstr ""
|
||||
|
|
@ -8139,203 +6910,53 @@ msgstr ""
|
|||
msgid "Active addons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Create.php:62
|
||||
msgid "New User"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Create.php:63
|
||||
msgid "Add User"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Create.php:71
|
||||
msgid "Name of the new user."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Create.php:72
|
||||
msgid "Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Create.php:72
|
||||
msgid "Nickname of the new user."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Create.php:73 src/Module/Admin/Users/Pending.php:104
|
||||
#: src/Module/Admin/Users/Index.php:142 src/Module/Admin/Users/Index.php:162
|
||||
#: src/Module/Admin/Users/Active.php:129 src/Module/Admin/Users/Blocked.php:130
|
||||
#: src/Module/Admin/Users/Deleted.php:88 src/Content/ContactSelector.php:126
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Create.php:73
|
||||
msgid "Email address of the new user."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Pending.php:48
|
||||
#: src/Module/Admin/Themes/Details.php:57 src/Module/Admin/Themes/Index.php:65
|
||||
#, php-format
|
||||
msgid "%s user approved"
|
||||
msgid_plural "%s users approved"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgid "Theme %s disabled."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Pending.php:55
|
||||
#: src/Module/Admin/Themes/Details.php:59 src/Module/Admin/Themes/Index.php:67
|
||||
#, php-format
|
||||
msgid "%s registration revoked"
|
||||
msgid_plural "%s registrations revoked"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Module/Admin/Users/Pending.php:81
|
||||
msgid "Account approved."
|
||||
msgid "Theme %s successfully enabled."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Pending.php:87
|
||||
msgid "Registration revoked"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Pending.php:102
|
||||
msgid "User registrations awaiting review"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Pending.php:103 src/Module/Admin/Users/Index.php:151
|
||||
#: src/Module/Admin/Users/Active.php:138 src/Module/Admin/Users/Blocked.php:139
|
||||
#: src/Module/Admin/Blocklist/Contact.php:82
|
||||
msgid "select all"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Pending.php:104
|
||||
msgid "Request date"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Pending.php:105
|
||||
msgid "No registrations."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Pending.php:106
|
||||
msgid "Note from the user"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Pending.php:108
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Index.php:45 src/Module/Admin/Users/Active.php:45
|
||||
#: src/Module/Admin/Themes/Details.php:61 src/Module/Admin/Themes/Index.php:69
|
||||
#, php-format
|
||||
msgid "%s user blocked"
|
||||
msgid_plural "%s users blocked"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgid "Theme %s failed to install."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Index.php:52 src/Module/Admin/Users/Blocked.php:46
|
||||
#: src/Module/Admin/Themes/Details.php:83
|
||||
msgid "Screenshot"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Themes/Details.php:91 src/Module/Admin/Themes/Index.php:112
|
||||
#: src/Module/BaseAdmin.php:93
|
||||
msgid "Themes"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Themes/Embed.php:65
|
||||
msgid "Unknown theme."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Themes/Index.php:51
|
||||
msgid "Themes reloaded"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Themes/Index.php:114
|
||||
msgid "Reload active themes"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Themes/Index.php:119
|
||||
#, php-format
|
||||
msgid "%s user unblocked"
|
||||
msgid_plural "%s users unblocked"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Module/Admin/Users/Index.php:60 src/Module/Admin/Users/Index.php:95
|
||||
#: src/Module/Admin/Users/Active.php:53 src/Module/Admin/Users/Active.php:88
|
||||
#: src/Module/Admin/Users/Blocked.php:54 src/Module/Admin/Users/Blocked.php:89
|
||||
msgid "You can't remove yourself"
|
||||
msgid "No themes found on the system. They should be placed in %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Index.php:64 src/Module/Admin/Users/Active.php:57
|
||||
#: src/Module/Admin/Users/Blocked.php:58
|
||||
#, php-format
|
||||
msgid "%s user deleted"
|
||||
msgid_plural "%s users deleted"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Module/Admin/Users/Index.php:93 src/Module/Admin/Users/Active.php:86
|
||||
#: src/Module/Admin/Users/Blocked.php:87
|
||||
#, php-format
|
||||
msgid "User \"%s\" deleted"
|
||||
#: src/Module/Admin/Themes/Index.php:120
|
||||
msgid "[Experimental]"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Index.php:103 src/Module/Admin/Users/Active.php:96
|
||||
#, php-format
|
||||
msgid "User \"%s\" blocked"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Index.php:109 src/Module/Admin/Users/Blocked.php:96
|
||||
#, php-format
|
||||
msgid "User \"%s\" unblocked"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Index.php:142 src/Module/Admin/Users/Index.php:162
|
||||
#: src/Module/Admin/Users/Active.php:129 src/Module/Admin/Users/Blocked.php:130
|
||||
#: src/Module/Admin/Users/Deleted.php:88
|
||||
msgid "Register date"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Index.php:142 src/Module/Admin/Users/Index.php:162
|
||||
#: src/Module/Admin/Users/Active.php:129 src/Module/Admin/Users/Blocked.php:130
|
||||
#: src/Module/Admin/Users/Deleted.php:88
|
||||
msgid "Last login"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Index.php:142 src/Module/Admin/Users/Index.php:162
|
||||
#: src/Module/Admin/Users/Active.php:129 src/Module/Admin/Users/Blocked.php:130
|
||||
#: src/Module/Admin/Users/Deleted.php:88
|
||||
msgid "Last public item"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Index.php:142 src/Module/Admin/Users/Active.php:129
|
||||
#: src/Module/Admin/Users/Blocked.php:130 src/Module/Admin/Item/Source.php:68
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Index.php:152
|
||||
msgid "User waiting for permanent deletion"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Index.php:155 src/Module/Admin/Users/Active.php:141
|
||||
#: src/Module/Admin/Users/Blocked.php:141
|
||||
msgid "User blocked"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Index.php:157 src/Module/Admin/Users/Active.php:142
|
||||
#: src/Module/Admin/Users/Blocked.php:143
|
||||
msgid "Site admin"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Index.php:158 src/Module/Admin/Users/Active.php:143
|
||||
#: src/Module/Admin/Users/Blocked.php:144
|
||||
msgid "Account expired"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Index.php:161 src/Module/Admin/Users/Active.php:144
|
||||
msgid "Create a new user"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Index.php:162 src/Module/Admin/Users/Deleted.php:88
|
||||
msgid "Permanent deletion"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Index.php:167 src/Module/Admin/Users/Active.php:150
|
||||
#: src/Module/Admin/Users/Blocked.php:150
|
||||
msgid ""
|
||||
"Selected users will be deleted!\\n\\nEverything these users had posted on "
|
||||
"this site will be permanently deleted!\\n\\nAre you sure?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Index.php:168 src/Module/Admin/Users/Active.php:151
|
||||
#: src/Module/Admin/Users/Blocked.php:151
|
||||
msgid ""
|
||||
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
|
||||
"site will be permanently deleted!\\n\\nAre you sure?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Active.php:137
|
||||
msgid "Active Accounts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Blocked.php:138
|
||||
msgid "Blocked Users"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Deleted.php:86
|
||||
msgid "Users awaiting permanent deletion"
|
||||
#: src/Module/Admin/Themes/Index.php:121
|
||||
msgid "[Unsupported]"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Tos.php:60
|
||||
|
|
@ -8374,358 +6995,306 @@ msgid ""
|
|||
"of sections should be [h2] and below."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:49
|
||||
msgid "Server domain pattern added to blocklist."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:79
|
||||
#: src/Module/Admin/Blocklist/Server.php:104
|
||||
msgid "Blocked server domain pattern"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:80
|
||||
#: src/Module/Admin/Blocklist/Server.php:105 src/Module/Friendica.php:81
|
||||
msgid "Reason for the block"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:81
|
||||
msgid "Delete server domain pattern"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:81
|
||||
msgid "Check to delete this entry from the blocklist"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:89
|
||||
msgid "Server Domain Pattern Blocklist"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:90
|
||||
msgid ""
|
||||
"This page can be used to define a blocklist of server domain patterns from "
|
||||
"the federated network that are not allowed to interact with your node. For "
|
||||
"each domain pattern you should also provide the reason why you block it."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:91
|
||||
msgid ""
|
||||
"The list of blocked server domain patterns will be made publically available "
|
||||
"on the <a href=\"/friendica\">/friendica</a> page so that your users and "
|
||||
"people investigating communication problems can find the reason easily."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:92
|
||||
msgid ""
|
||||
"<p>The server domain pattern syntax is case-insensitive shell wildcard, "
|
||||
"comprising the following special characters:</p>\n"
|
||||
"<ul>\n"
|
||||
"\t<li><code>*</code>: Any number of characters</li>\n"
|
||||
"\t<li><code>?</code>: Any single character</li>\n"
|
||||
"\t<li><code>[<char1><char2>...]</code>: char1 or char2</li>\n"
|
||||
"</ul>"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:98
|
||||
msgid "Add new entry to block list"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:99
|
||||
msgid "Server Domain Pattern"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:99
|
||||
msgid ""
|
||||
"The domain pattern of the new server to add to the block list. Do not "
|
||||
"include the protocol."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:100
|
||||
msgid "Block reason"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:100
|
||||
msgid "The reason why you blocked this server domain pattern."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:101
|
||||
msgid "Add Entry"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:102
|
||||
msgid "Save changes to the blocklist"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:103
|
||||
msgid "Current Entries in the Blocklist"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:106
|
||||
msgid "Delete entry from blocklist"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Server.php:109
|
||||
msgid "Delete entry from blocklist?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Contact.php:57
|
||||
#: src/Module/Admin/Users/Active.php:45 src/Module/Admin/Users/Index.php:45
|
||||
#, php-format
|
||||
msgid "%s contact unblocked"
|
||||
msgid_plural "%s contacts unblocked"
|
||||
msgid "%s user blocked"
|
||||
msgid_plural "%s users blocked"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Contact.php:79
|
||||
msgid "Remote Contact Blocklist"
|
||||
#: src/Module/Admin/Users/Active.php:53 src/Module/Admin/Users/Active.php:88
|
||||
#: src/Module/Admin/Users/Blocked.php:54 src/Module/Admin/Users/Blocked.php:89
|
||||
#: src/Module/Admin/Users/Index.php:60 src/Module/Admin/Users/Index.php:95
|
||||
msgid "You can't remove yourself"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Contact.php:80
|
||||
msgid ""
|
||||
"This page allows you to prevent any message from a remote contact to reach "
|
||||
"your node."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Contact.php:81
|
||||
msgid "Block Remote Contact"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Contact.php:83
|
||||
msgid "select none"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Contact.php:86
|
||||
msgid "No remote contact is blocked from this node."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Contact.php:88
|
||||
msgid "Blocked Remote Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Contact.php:89
|
||||
msgid "Block New Remote Contact"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Contact.php:90
|
||||
msgid "Photo"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Contact.php:90
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Contact.php:98
|
||||
#: src/Module/Admin/Users/Active.php:57 src/Module/Admin/Users/Blocked.php:58
|
||||
#: src/Module/Admin/Users/Index.php:64
|
||||
#, php-format
|
||||
msgid "%s total blocked contact"
|
||||
msgid_plural "%s total blocked contacts"
|
||||
msgid "%s user deleted"
|
||||
msgid_plural "%s users deleted"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Contact.php:100
|
||||
msgid "URL of the remote contact to block."
|
||||
#: src/Module/Admin/Users/Active.php:86 src/Module/Admin/Users/Blocked.php:87
|
||||
#: src/Module/Admin/Users/Index.php:93
|
||||
#, php-format
|
||||
msgid "User \"%s\" deleted"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Blocklist/Contact.php:101
|
||||
msgid "Block Reason"
|
||||
#: src/Module/Admin/Users/Active.php:96 src/Module/Admin/Users/Index.php:103
|
||||
#, php-format
|
||||
msgid "User \"%s\" blocked"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Item/Source.php:58
|
||||
msgid "Item Guid"
|
||||
#: src/Module/Admin/Users/Active.php:129 src/Module/Admin/Users/Blocked.php:130
|
||||
#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:142
|
||||
#: src/Module/Admin/Users/Index.php:162
|
||||
msgid "Register date"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Item/Source.php:63
|
||||
msgid "Item Id"
|
||||
#: src/Module/Admin/Users/Active.php:129 src/Module/Admin/Users/Blocked.php:130
|
||||
#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:142
|
||||
#: src/Module/Admin/Users/Index.php:162
|
||||
msgid "Last login"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Item/Source.php:64
|
||||
msgid "Item URI"
|
||||
#: src/Module/Admin/Users/Active.php:129 src/Module/Admin/Users/Blocked.php:130
|
||||
#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:142
|
||||
#: src/Module/Admin/Users/Index.php:162
|
||||
msgid "Last public item"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Item/Source.php:66
|
||||
msgid "Terms"
|
||||
#: src/Module/Admin/Users/Active.php:137
|
||||
msgid "Active Accounts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Item/Source.php:67
|
||||
msgid "Tag"
|
||||
#: src/Module/Admin/Users/Active.php:141 src/Module/Admin/Users/Blocked.php:141
|
||||
#: src/Module/Admin/Users/Index.php:155
|
||||
msgid "User blocked"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Item/Source.php:69
|
||||
msgid "Term"
|
||||
#: src/Module/Admin/Users/Active.php:142 src/Module/Admin/Users/Blocked.php:143
|
||||
#: src/Module/Admin/Users/Index.php:157
|
||||
msgid "Site admin"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Item/Source.php:70
|
||||
msgid "URL"
|
||||
#: src/Module/Admin/Users/Active.php:143 src/Module/Admin/Users/Blocked.php:144
|
||||
#: src/Module/Admin/Users/Index.php:158
|
||||
msgid "Account expired"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Item/Source.php:71
|
||||
msgid "Mention"
|
||||
#: src/Module/Admin/Users/Active.php:144 src/Module/Admin/Users/Index.php:161
|
||||
msgid "Create a new user"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Item/Source.php:72
|
||||
msgid "Implicit Mention"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Item/Delete.php:54
|
||||
msgid "Item marked for deletion."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Item/Delete.php:67
|
||||
msgid "Delete this Item"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Item/Delete.php:68
|
||||
#: src/Module/Admin/Users/Active.php:150 src/Module/Admin/Users/Blocked.php:150
|
||||
#: src/Module/Admin/Users/Index.php:167
|
||||
msgid ""
|
||||
"On this page you can delete an item from your node. If the item is a top "
|
||||
"level posting, the entire thread will be deleted."
|
||||
"Selected users will be deleted!\\n\\nEverything these users had posted on "
|
||||
"this site will be permanently deleted!\\n\\nAre you sure?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Item/Delete.php:69
|
||||
#: src/Module/Admin/Users/Active.php:151 src/Module/Admin/Users/Blocked.php:151
|
||||
#: src/Module/Admin/Users/Index.php:168
|
||||
msgid ""
|
||||
"You need to know the GUID of the item. You can find it e.g. by looking at "
|
||||
"the display URL. The last part of http://example.com/display/123456 is the "
|
||||
"GUID, here 123456."
|
||||
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
|
||||
"site will be permanently deleted!\\n\\nAre you sure?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Item/Delete.php:70
|
||||
msgid "GUID"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Item/Delete.php:70
|
||||
msgid "The GUID of the item you want to delete."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Addons/Details.php:65
|
||||
msgid "Addon not found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Addons/Details.php:76 src/Module/Admin/Addons/Index.php:49
|
||||
#: src/Module/Admin/Users/Blocked.php:46 src/Module/Admin/Users/Index.php:52
|
||||
#, php-format
|
||||
msgid "Addon %s disabled."
|
||||
msgstr ""
|
||||
msgid "%s user unblocked"
|
||||
msgid_plural "%s users unblocked"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Module/Admin/Addons/Details.php:79 src/Module/Admin/Addons/Index.php:51
|
||||
#: src/Module/Admin/Users/Blocked.php:96 src/Module/Admin/Users/Index.php:109
|
||||
#, php-format
|
||||
msgid "Addon %s enabled."
|
||||
msgid "User \"%s\" unblocked"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Addons/Index.php:42
|
||||
msgid "Addons reloaded"
|
||||
#: src/Module/Admin/Users/Blocked.php:138
|
||||
msgid "Blocked Users"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Addons/Index.php:53
|
||||
#: src/Module/Admin/Users/Create.php:62
|
||||
msgid "New User"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Create.php:63
|
||||
msgid "Add User"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Create.php:71
|
||||
msgid "Name of the new user."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Create.php:72
|
||||
msgid "Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Create.php:72
|
||||
msgid "Nickname of the new user."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Create.php:73
|
||||
msgid "Email address of the new user."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Deleted.php:86
|
||||
msgid "Users awaiting permanent deletion"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:162
|
||||
msgid "Permanent deletion"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Index.php:150 src/Module/Admin/Users/Index.php:160
|
||||
#: src/Module/BaseAdmin.php:91
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Index.php:152
|
||||
msgid "User waiting for permanent deletion"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Pending.php:48
|
||||
#, php-format
|
||||
msgid "Addon %s failed to install."
|
||||
msgstr ""
|
||||
msgid "%s user approved"
|
||||
msgid_plural "%s users approved"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Module/Admin/Addons/Index.php:70
|
||||
msgid "Reload active addons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Addons/Index.php:75
|
||||
#: src/Module/Admin/Users/Pending.php:55
|
||||
#, php-format
|
||||
msgid "%s registration revoked"
|
||||
msgid_plural "%s registrations revoked"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Module/Admin/Users/Pending.php:81
|
||||
msgid "Account approved."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Pending.php:87
|
||||
msgid "Registration revoked"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Pending.php:102
|
||||
msgid "User registrations awaiting review"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Pending.php:104
|
||||
msgid "Request date"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Pending.php:105
|
||||
msgid "No registrations."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Pending.php:106
|
||||
msgid "Note from the user"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Users/Pending.php:108
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Api/Mastodon/Unimplemented.php:42
|
||||
#, php-format
|
||||
msgid "API endpoint \"%s\" is not implemented"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Api/Mastodon/Unimplemented.php:43
|
||||
msgid ""
|
||||
"There are currently no addons available on your node. You can find the "
|
||||
"official addon repository at %1$s and might find other interesting addons in "
|
||||
"the open addon registry at %2$s"
|
||||
"The API endpoint is currently not implemented but might be in the future."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Directory.php:77
|
||||
msgid "No entries (some entries may be hidden)."
|
||||
#: src/Module/Api/Twitter/ContactEndpoint.php:65 src/Module/Contact.php:400
|
||||
msgid "Contact not found"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Directory.php:99
|
||||
msgid "Find on this site"
|
||||
#: src/Module/Api/Twitter/ContactEndpoint.php:135
|
||||
msgid "Profile not found"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Directory.php:101
|
||||
msgid "Results for:"
|
||||
#: src/Module/Apps.php:47
|
||||
msgid "No installed applications."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Directory.php:103
|
||||
msgid "Site Directory"
|
||||
#: src/Module/Apps.php:52
|
||||
msgid "Applications"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Attach.php:50 src/Module/Attach.php:62
|
||||
msgid "Item was not found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Item/Compose.php:46
|
||||
msgid "Please enter a post body."
|
||||
#: src/Module/BaseAdmin.php:63
|
||||
msgid "You don't have access to administration pages."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Item/Compose.php:59
|
||||
msgid "This feature is only available with the frio theme."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Item/Compose.php:86
|
||||
msgid "Compose new personal note"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Item/Compose.php:95
|
||||
msgid "Compose new post"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Item/Compose.php:135
|
||||
msgid "Visibility"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Item/Compose.php:156
|
||||
msgid "Clear the location"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Item/Compose.php:157
|
||||
msgid "Location services are unavailable on your device"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Item/Compose.php:158
|
||||
#: src/Module/BaseAdmin.php:67
|
||||
msgid ""
|
||||
"Location services are disabled. Please check the website's permissions on "
|
||||
"your device"
|
||||
"Submanaged account can't access the administration pages. Please log back in "
|
||||
"as the main account."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Item/Follow.php:52
|
||||
msgid "Unable to follow this item."
|
||||
#: src/Module/BaseAdmin.php:86
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Friendica.php:61
|
||||
msgid "Installed addons/apps:"
|
||||
#: src/Module/BaseAdmin.php:89
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Friendica.php:66
|
||||
msgid "No installed addons/apps"
|
||||
#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:65
|
||||
msgid "Additional features"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Friendica.php:71
|
||||
#, php-format
|
||||
msgid "Read about the <a href=\"%1$s/tos\">Terms of Service</a> of this node."
|
||||
#: src/Module/BaseAdmin.php:97
|
||||
msgid "Database"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Friendica.php:78
|
||||
msgid "On this server the following remote servers are blocked."
|
||||
#: src/Module/BaseAdmin.php:98
|
||||
msgid "DB updates"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Friendica.php:96
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is Friendica, version %s that is running at the web location %s. The "
|
||||
"database version is %s, the post update version is %s."
|
||||
#: src/Module/BaseAdmin.php:99
|
||||
msgid "Inspect Deferred Workers"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Friendica.php:101
|
||||
msgid ""
|
||||
"Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more "
|
||||
"about the Friendica project."
|
||||
#: src/Module/BaseAdmin.php:100
|
||||
msgid "Inspect worker Queue"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Friendica.php:102
|
||||
msgid "Bug reports and issues: please visit"
|
||||
#: src/Module/BaseAdmin.php:102
|
||||
msgid "Tools"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Friendica.php:102
|
||||
msgid "the bugtracker at github"
|
||||
#: src/Module/BaseAdmin.php:103
|
||||
msgid "Contact Blocklist"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Friendica.php:103
|
||||
msgid ""
|
||||
"Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
|
||||
#: src/Module/BaseAdmin.php:104
|
||||
msgid "Server Blocklist"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:111
|
||||
msgid "Diagnostics"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:112
|
||||
msgid "PHP Info"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:113
|
||||
msgid "probe address"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:114
|
||||
msgid "check webfinger"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:116
|
||||
msgid "Babel"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:117 src/Module/Debug/ActivityPubConversion.php:138
|
||||
msgid "ActivityPub Conversion"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:126
|
||||
msgid "Addon Features"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:127
|
||||
msgid "User registrations waiting for confirmation"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseProfile.php:55 src/Module/Contact.php:939
|
||||
msgid "Profile Details"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseProfile.php:113
|
||||
|
|
@ -8736,32 +7305,25 @@ msgstr ""
|
|||
msgid "Tips for New Members"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Photo.php:93
|
||||
#: src/Module/BaseSearch.php:69
|
||||
#, php-format
|
||||
msgid "The Photo with id %s is not available."
|
||||
msgid "People Search - %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Photo.php:111
|
||||
#: src/Module/BaseSearch.php:79
|
||||
#, php-format
|
||||
msgid "Invalid photo with id %s."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/RemoteFollow.php:67
|
||||
msgid "The provided profile link doesn't seem to be valid"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/RemoteFollow.php:105
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Enter your Webfinger address (user@domain.tld) or profile URL here. If this "
|
||||
"isn't supported by your system, you have to subscribe to <strong>%s</strong> "
|
||||
"or <strong>%s</strong> directly on your system."
|
||||
msgid "Forum Search - %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseSettings.php:43
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseSettings.php:50 src/Module/Security/TwoFactor/Verify.php:94
|
||||
#: src/Module/Settings/TwoFactor/Index.php:110
|
||||
msgid "Two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseSettings.php:73
|
||||
msgid "Display"
|
||||
msgstr ""
|
||||
|
|
@ -8782,159 +7344,12 @@ msgstr ""
|
|||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:61
|
||||
msgid "Could not create group."
|
||||
#: src/Module/Bookmarklet.php:56
|
||||
msgid "This page is missing a url parameter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:72 src/Module/Group.php:214 src/Module/Group.php:238
|
||||
msgid "Group not found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:78
|
||||
msgid "Group name was not changed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:100
|
||||
msgid "Unknown group."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:109
|
||||
msgid "Contact is deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:115
|
||||
msgid "Unable to add the contact to the group."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:118
|
||||
msgid "Contact successfully added to group."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:122
|
||||
msgid "Unable to remove the contact from the group."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:125
|
||||
msgid "Contact successfully removed from group."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:128
|
||||
msgid "Unknown group command."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:131
|
||||
msgid "Bad request."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:170
|
||||
msgid "Save Group"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:171
|
||||
msgid "Filter"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:177
|
||||
msgid "Create a group of contacts/friends."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:178 src/Module/Group.php:201 src/Module/Group.php:276
|
||||
#: src/Model/Group.php:543
|
||||
msgid "Group Name: "
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:193 src/Model/Group.php:540
|
||||
msgid "Contacts not in any group"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:219
|
||||
msgid "Unable to remove group."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:270
|
||||
msgid "Delete Group"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:280
|
||||
msgid "Edit Group Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:290
|
||||
msgid "Members"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:293
|
||||
msgid "Group is empty"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:306
|
||||
msgid "Remove contact from group"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:327
|
||||
msgid "Click on a contact to add or remove."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:341
|
||||
msgid "Add contact to group"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Search/Index.php:55
|
||||
msgid "Only logged in users are permitted to perform a search."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Search/Index.php:77
|
||||
msgid "Only one search per minute is permitted for not logged in users."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Search/Index.php:100 src/Content/Nav.php:220
|
||||
#: src/Content/Text/HTML.php:895
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Search/Index.php:191
|
||||
#, php-format
|
||||
msgid "Items tagged with: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Search/Acl.php:55 src/Module/Contact/Poke.php:126
|
||||
msgid "You must be logged in to use this module."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Search/Saved.php:45
|
||||
msgid "Search term was not saved."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Search/Saved.php:48
|
||||
msgid "Search term already saved."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Search/Saved.php:54
|
||||
msgid "Search term was not removed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/HoverCard.php:47
|
||||
msgid "No profile"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact/Poke.php:113
|
||||
msgid "Error while sending poke, please retry."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact/Poke.php:149
|
||||
msgid "Poke/Prod"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact/Poke.php:150
|
||||
msgid "poke, prod or do other things to somebody"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact/Poke.php:152
|
||||
msgid "Choose what you wish to do to recipient"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact/Poke.php:153
|
||||
msgid "Make this post private"
|
||||
#: src/Module/Bookmarklet.php:78
|
||||
msgid "The post was created"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact/Advanced.php:92
|
||||
|
|
@ -8993,16 +7408,2009 @@ msgstr ""
|
|||
msgid "New photo from this URL"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact/Contacts.php:31 src/Module/Conversation/Network.php:175
|
||||
msgid "Invalid contact."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact/Contacts.php:54
|
||||
msgid "No known contacts."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Apps.php:47
|
||||
msgid "No installed applications."
|
||||
#: src/Module/Contact/Contacts.php:68 src/Module/Profile/Common.php:99
|
||||
msgid "No common contacts."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Apps.php:52
|
||||
msgid "Applications"
|
||||
#: src/Module/Contact/Contacts.php:80 src/Module/Profile/Contacts.php:97
|
||||
#, php-format
|
||||
msgid "Follower (%s)"
|
||||
msgid_plural "Followers (%s)"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Module/Contact/Contacts.php:84 src/Module/Profile/Contacts.php:100
|
||||
#, php-format
|
||||
msgid "Following (%s)"
|
||||
msgid_plural "Following (%s)"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Module/Contact/Contacts.php:88 src/Module/Profile/Contacts.php:103
|
||||
#, php-format
|
||||
msgid "Mutual friend (%s)"
|
||||
msgid_plural "Mutual friends (%s)"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Module/Contact/Contacts.php:90 src/Module/Profile/Contacts.php:105
|
||||
#, php-format
|
||||
msgid "These contacts both follow and are followed by <strong>%s</strong>."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact/Contacts.php:96 src/Module/Profile/Common.php:87
|
||||
#, php-format
|
||||
msgid "Common contact (%s)"
|
||||
msgid_plural "Common contacts (%s)"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Module/Contact/Contacts.php:98 src/Module/Profile/Common.php:89
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Both <strong>%s</strong> and yourself have publicly interacted with these "
|
||||
"contacts (follow, comment or likes on public posts)."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact/Contacts.php:104 src/Module/Profile/Contacts.php:111
|
||||
#, php-format
|
||||
msgid "Contact (%s)"
|
||||
msgid_plural "Contacts (%s)"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Module/Contact/Poke.php:113
|
||||
msgid "Error while sending poke, please retry."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact/Poke.php:126 src/Module/Search/Acl.php:55
|
||||
msgid "You must be logged in to use this module."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact/Poke.php:149
|
||||
msgid "Poke/Prod"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact/Poke.php:150
|
||||
msgid "poke, prod or do other things to somebody"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact/Poke.php:152
|
||||
msgid "Choose what you wish to do to recipient"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact/Poke.php:153
|
||||
msgid "Make this post private"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:94
|
||||
#, php-format
|
||||
msgid "%d contact edited."
|
||||
msgid_plural "%d contacts edited."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Module/Contact.php:121
|
||||
msgid "Could not access contact record."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:419
|
||||
msgid "Contact has been blocked"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:419
|
||||
msgid "Contact has been unblocked"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:429
|
||||
msgid "Contact has been ignored"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:429
|
||||
msgid "Contact has been unignored"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:439
|
||||
msgid "Contact has been archived"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:439
|
||||
msgid "Contact has been unarchived"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:452
|
||||
msgid "Drop contact"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:455 src/Module/Contact.php:879
|
||||
msgid "Do you really want to delete this contact?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:468
|
||||
msgid "Contact has been removed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:496
|
||||
#, php-format
|
||||
msgid "You are mutual friends with %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:500
|
||||
#, php-format
|
||||
msgid "You are sharing with %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:504
|
||||
#, php-format
|
||||
msgid "%s is sharing with you"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:528
|
||||
msgid "Private communications are not available for this contact."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:530
|
||||
msgid "Never"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:533
|
||||
msgid "(Update was not successful)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:533
|
||||
msgid "(Update was successful)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:535 src/Module/Contact.php:1136
|
||||
msgid "Suggest friends"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:539
|
||||
#, php-format
|
||||
msgid "Network type: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:544
|
||||
msgid "Communications lost with this contact!"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:550
|
||||
msgid "Fetch further information for feeds"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:552
|
||||
msgid ""
|
||||
"Fetch information like preview pictures, title and teaser from the feed "
|
||||
"item. You can activate this if the feed doesn't contain much text. Keywords "
|
||||
"are taken from the meta header in the feed item and are posted as hash tags."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:555
|
||||
msgid "Fetch information"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:556
|
||||
msgid "Fetch keywords"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:557
|
||||
msgid "Fetch information and keywords"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:569 src/Module/Contact.php:573
|
||||
#: src/Module/Contact.php:576 src/Module/Contact.php:580
|
||||
msgid "No mirroring"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:570
|
||||
msgid "Mirror as forwarded posting"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:571 src/Module/Contact.php:577
|
||||
#: src/Module/Contact.php:581
|
||||
msgid "Mirror as my own posting"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:574 src/Module/Contact.php:578
|
||||
msgid "Native reshare"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:593
|
||||
msgid "Contact Information / Notes"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:594
|
||||
msgid "Contact Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:602
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:606
|
||||
msgid "Their personal note"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:608
|
||||
msgid "Edit contact notes"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:611 src/Module/Contact.php:1104
|
||||
#, php-format
|
||||
msgid "Visit %s's profile [%s]"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:612
|
||||
msgid "Block/Unblock contact"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:613
|
||||
msgid "Ignore contact"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:614
|
||||
msgid "View conversations"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:619
|
||||
msgid "Last update:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:621
|
||||
msgid "Update public posts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:623 src/Module/Contact.php:1146
|
||||
msgid "Update now"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:626 src/Module/Contact.php:884
|
||||
#: src/Module/Contact.php:1173
|
||||
msgid "Unignore"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:630
|
||||
msgid "Currently blocked"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:631
|
||||
msgid "Currently ignored"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:632
|
||||
msgid "Currently archived"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:633
|
||||
msgid "Awaiting connection acknowledge"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:634 src/Module/Notifications/Introductions.php:177
|
||||
msgid "Hide this contact from others"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:634
|
||||
msgid ""
|
||||
"Replies/likes to your public posts <strong>may</strong> still be visible"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:635
|
||||
msgid "Notification for new posts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:635
|
||||
msgid "Send a notification of every new post of this contact"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:637
|
||||
msgid "Keyword Deny List"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:637
|
||||
msgid ""
|
||||
"Comma separated list of keywords that should not be converted to hashtags, "
|
||||
"when \"Fetch information and keywords\" is selected"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:653 src/Module/Settings/TwoFactor/Index.php:132
|
||||
msgid "Actions"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:660
|
||||
msgid "Mirror postings from this contact"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:662
|
||||
msgid ""
|
||||
"Mark this contact as remote_self, this will cause friendica to repost new "
|
||||
"entries from this contact."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:794
|
||||
msgid "Show all contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:802
|
||||
msgid "Only show pending contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:810
|
||||
msgid "Only show blocked contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:815 src/Module/Contact.php:862
|
||||
msgid "Ignored"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:818
|
||||
msgid "Only show ignored contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:823 src/Module/Contact.php:863
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:826
|
||||
msgid "Only show archived contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:831 src/Module/Contact.php:861
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:834
|
||||
msgid "Only show hidden contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:842
|
||||
msgid "Organize your contact groups"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:874
|
||||
msgid "Search your contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:875 src/Module/Search/Index.php:193
|
||||
#, php-format
|
||||
msgid "Results for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:885 src/Module/Contact.php:1182
|
||||
msgid "Archive"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:885 src/Module/Contact.php:1182
|
||||
msgid "Unarchive"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:888
|
||||
msgid "Batch Actions"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:923
|
||||
msgid "Conversations started by this contact"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:928
|
||||
msgid "Posts and Comments"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:946
|
||||
msgid "View all known contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:956
|
||||
msgid "Advanced Contact Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:1063
|
||||
msgid "Mutual Friendship"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:1067
|
||||
msgid "is a fan of yours"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:1071
|
||||
msgid "you are a fan of"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:1089
|
||||
msgid "Pending outgoing contact request"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:1091
|
||||
msgid "Pending incoming contact request"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:1156
|
||||
msgid "Refetch contact data"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:1167
|
||||
msgid "Toggle Blocked status"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:1175
|
||||
msgid "Toggle Ignored status"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:1184
|
||||
msgid "Toggle Archive status"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:1192
|
||||
msgid "Delete contact"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Community.php:69
|
||||
msgid "Local Community"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Community.php:72
|
||||
msgid "Posts from local users on this server"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Community.php:80
|
||||
msgid "Global Community"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Community.php:83
|
||||
msgid "Posts from users of the whole federated network"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Community.php:116
|
||||
msgid "Own Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Community.php:120
|
||||
msgid "Include"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Community.php:121
|
||||
msgid "Hide"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Community.php:149 src/Module/Search/Index.php:140
|
||||
#: src/Module/Search/Index.php:180
|
||||
msgid "No results."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Community.php:174
|
||||
msgid ""
|
||||
"This community stream shows all public posts received by this node. They may "
|
||||
"not reflect the opinions of this node’s users."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Community.php:212
|
||||
msgid "Community option not available."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Community.php:228
|
||||
msgid "Not available."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Network.php:161
|
||||
msgid "No such group"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Network.php:165
|
||||
#, php-format
|
||||
msgid "Group: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Network.php:241
|
||||
msgid "Latest Activity"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Network.php:244
|
||||
msgid "Sort by latest activity"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Network.php:249
|
||||
msgid "Latest Posts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Network.php:252
|
||||
msgid "Sort by post received date"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Network.php:257
|
||||
#: src/Module/Settings/Profile/Index.php:242
|
||||
msgid "Personal"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Network.php:260
|
||||
msgid "Posts that mention or involve you"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Network.php:265
|
||||
msgid "Starred"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Network.php:268
|
||||
msgid "Favourite Posts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Credits.php:44
|
||||
msgid "Credits"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Credits.php:45
|
||||
msgid ""
|
||||
"Friendica is a community project, that would not be possible without the "
|
||||
"help of many people. Here is a list of those who have contributed to the "
|
||||
"code or the translation of Friendica. Thank you all!"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/ActivityPubConversion.php:58
|
||||
msgid "Formatted"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/ActivityPubConversion.php:70
|
||||
msgid "Activity"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/ActivityPubConversion.php:118
|
||||
msgid "Object data"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/ActivityPubConversion.php:125
|
||||
msgid "Result Item"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/ActivityPubConversion.php:139
|
||||
msgid "Source activity"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:51
|
||||
msgid "Source input"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:57
|
||||
msgid "BBCode::toPlaintext"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:63
|
||||
msgid "BBCode::convert (raw HTML)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:68
|
||||
msgid "BBCode::convert (hex)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:73
|
||||
msgid "BBCode::convert"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:79
|
||||
msgid "BBCode::convert => HTML::toBBCode"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:85
|
||||
msgid "BBCode::toMarkdown"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:91
|
||||
msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:95
|
||||
msgid "BBCode::toMarkdown => Markdown::convert"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:101
|
||||
msgid "BBCode::toMarkdown => Markdown::toBBCode"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:107
|
||||
msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:115
|
||||
msgid "Item Body"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:119
|
||||
msgid "Item Tags"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:125
|
||||
msgid "PageInfo::appendToBody"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:130
|
||||
msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:134
|
||||
msgid "PageInfo::appendToBody => BBCode::convert"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:141
|
||||
msgid "Source input (Diaspora format)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:150
|
||||
msgid "Source input (Markdown)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:156
|
||||
msgid "Markdown::convert (raw HTML)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:161
|
||||
msgid "Markdown::convert"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:167
|
||||
msgid "Markdown::toBBCode"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:174
|
||||
msgid "Raw HTML input"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:179
|
||||
msgid "HTML Input"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:188
|
||||
msgid "HTML Purified (raw)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:193
|
||||
msgid "HTML Purified (hex)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:198
|
||||
msgid "HTML Purified"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:204
|
||||
msgid "HTML::toBBCode"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:210
|
||||
msgid "HTML::toBBCode => BBCode::convert"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:215
|
||||
msgid "HTML::toBBCode => BBCode::convert (raw HTML)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:221
|
||||
msgid "HTML::toBBCode => BBCode::toPlaintext"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:227
|
||||
msgid "HTML::toMarkdown"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:233
|
||||
msgid "HTML::toPlaintext"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:239
|
||||
msgid "HTML::toPlaintext (compact)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:257
|
||||
msgid "Decoded post"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:278
|
||||
msgid "Post array before expand entities"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:285
|
||||
msgid "Post converted"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:290
|
||||
msgid "Converted body"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:296
|
||||
msgid "Twitter addon is absent from the addon/ folder."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:306
|
||||
msgid "Babel Diagnostic"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:307
|
||||
msgid "Source text"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:308
|
||||
msgid "BBCode"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:310
|
||||
msgid "Markdown"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:311
|
||||
msgid "HTML"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Babel.php:313
|
||||
msgid "Twitter Source / Tweet URL (requires API key)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Feed.php:38 src/Module/Filer/SaveTag.php:40
|
||||
#: src/Module/Settings/Profile/Index.php:158
|
||||
msgid "You must be logged in to use this module"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Feed.php:63
|
||||
msgid "Source URL"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Localtime.php:49
|
||||
msgid "Time Conversion"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Localtime.php:50
|
||||
msgid ""
|
||||
"Friendica provides this service for sharing events with other networks and "
|
||||
"friends in unknown timezones."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Localtime.php:51
|
||||
#, php-format
|
||||
msgid "UTC time: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Localtime.php:54
|
||||
#, php-format
|
||||
msgid "Current timezone: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Localtime.php:58
|
||||
#, php-format
|
||||
msgid "Converted localtime: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Localtime.php:62
|
||||
msgid "Please select your timezone:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37
|
||||
msgid "Only logged in users are permitted to perform a probing."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Probe.php:53
|
||||
msgid "Probe Diagnostic"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Probe.php:54
|
||||
msgid "Output"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/Probe.php:57
|
||||
msgid "Lookup address"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/WebFinger.php:52
|
||||
msgid "Webfinger Diagnostic"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Debug/WebFinger.php:54
|
||||
msgid "Lookup address:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Delegation.php:147
|
||||
msgid "Switch between your accounts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Delegation.php:148
|
||||
msgid "Manage your accounts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Delegation.php:149
|
||||
msgid ""
|
||||
"Toggle between different identities or community/group pages which share "
|
||||
"your account details or which you have been granted \"manage\" permissions"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Delegation.php:150
|
||||
msgid "Select an identity to manage: "
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Directory.php:77
|
||||
msgid "No entries (some entries may be hidden)."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Directory.php:99
|
||||
msgid "Find on this site"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Directory.php:101
|
||||
msgid "Results for:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Directory.php:103
|
||||
msgid "Site Directory"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Filer/RemoveTag.php:69
|
||||
msgid "Item was not removed"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Filer/RemoveTag.php:72
|
||||
msgid "Item was not deleted"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Filer/SaveTag.php:69
|
||||
msgid "- select -"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Friendica.php:61
|
||||
msgid "Installed addons/apps:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Friendica.php:66
|
||||
msgid "No installed addons/apps"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Friendica.php:71
|
||||
#, php-format
|
||||
msgid "Read about the <a href=\"%1$s/tos\">Terms of Service</a> of this node."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Friendica.php:78
|
||||
msgid "On this server the following remote servers are blocked."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Friendica.php:96
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is Friendica, version %s that is running at the web location %s. The "
|
||||
"database version is %s, the post update version is %s."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Friendica.php:101
|
||||
msgid ""
|
||||
"Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more "
|
||||
"about the Friendica project."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Friendica.php:102
|
||||
msgid "Bug reports and issues: please visit"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Friendica.php:102
|
||||
msgid "the bugtracker at github"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Friendica.php:103
|
||||
msgid ""
|
||||
"Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/FriendSuggest.php:65
|
||||
msgid "Suggested contact not found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/FriendSuggest.php:84
|
||||
msgid "Friend suggestion sent."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/FriendSuggest.php:121
|
||||
msgid "Suggest Friends"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/FriendSuggest.php:124
|
||||
#, php-format
|
||||
msgid "Suggest a friend for %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:61
|
||||
msgid "Could not create group."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:72 src/Module/Group.php:214 src/Module/Group.php:238
|
||||
msgid "Group not found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:78
|
||||
msgid "Group name was not changed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:100
|
||||
msgid "Unknown group."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:109
|
||||
msgid "Contact is deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:115
|
||||
msgid "Unable to add the contact to the group."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:118
|
||||
msgid "Contact successfully added to group."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:122
|
||||
msgid "Unable to remove the contact from the group."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:125
|
||||
msgid "Contact successfully removed from group."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:128
|
||||
msgid "Unknown group command."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:131
|
||||
msgid "Bad request."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:170
|
||||
msgid "Save Group"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:171
|
||||
msgid "Filter"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:177
|
||||
msgid "Create a group of contacts/friends."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:219
|
||||
msgid "Unable to remove group."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:270
|
||||
msgid "Delete Group"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:280
|
||||
msgid "Edit Group Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:290
|
||||
msgid "Members"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:293
|
||||
msgid "Group is empty"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:306
|
||||
msgid "Remove contact from group"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:327
|
||||
msgid "Click on a contact to add or remove."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Group.php:341
|
||||
msgid "Add contact to group"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Help.php:62
|
||||
msgid "Help:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Home.php:54
|
||||
#, php-format
|
||||
msgid "Welcome to %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/HoverCard.php:47
|
||||
msgid "No profile"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/HTTPException/MethodNotAllowed.php:32
|
||||
msgid "Method Not Allowed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:177
|
||||
msgid "Friendica Communications Server - Setup"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:188
|
||||
msgid "System check"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:190 src/Module/Install.php:247
|
||||
#: src/Module/Install.php:330
|
||||
msgid "Requirement not satisfied"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:191
|
||||
msgid "Optional requirement not satisfied"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:192
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:197
|
||||
msgid "Check again"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:212
|
||||
msgid "Base settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:219
|
||||
msgid "Host name"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:221
|
||||
msgid ""
|
||||
"Overwrite this field in case the determinated hostname isn't right, "
|
||||
"otherweise leave it as is."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:224
|
||||
msgid "Base path to installation"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:226
|
||||
msgid ""
|
||||
"If the system cannot detect the correct path to your installation, enter the "
|
||||
"correct path here. This setting should only be set if you are using a "
|
||||
"restricted system and symbolic links to your webroot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:229
|
||||
msgid "Sub path of the URL"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:231
|
||||
msgid ""
|
||||
"Overwrite this field in case the sub path determination isn't right, "
|
||||
"otherwise leave it as is. Leaving this field blank means the installation is "
|
||||
"at the base URL without sub path."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:242
|
||||
msgid "Database connection"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:243
|
||||
msgid ""
|
||||
"In order to install Friendica we need to know how to connect to your "
|
||||
"database."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:244
|
||||
msgid ""
|
||||
"Please contact your hosting provider or site administrator if you have "
|
||||
"questions about these settings."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:245
|
||||
msgid ""
|
||||
"The database you specify below should already exist. If it does not, please "
|
||||
"create it before continuing."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:254
|
||||
msgid "Database Server Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:259
|
||||
msgid "Database Login Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:265
|
||||
msgid "Database Login Password"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:267
|
||||
msgid "For security reasons the password must not be empty"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:270
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:274 src/Module/Install.php:304
|
||||
msgid "Please select a default timezone for your website"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:289
|
||||
msgid "Site settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:299
|
||||
msgid "Site administrator email address"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:301
|
||||
msgid ""
|
||||
"Your account email address must match this in order to use the web admin "
|
||||
"panel."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:308
|
||||
msgid "System Language:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:310
|
||||
msgid ""
|
||||
"Set the default language for your Friendica installation interface and to "
|
||||
"send emails."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:322
|
||||
msgid "Your Friendica site database has been installed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:332
|
||||
msgid "Installation finished"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:352
|
||||
msgid "<h1>What next</h1>"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:353
|
||||
msgid ""
|
||||
"IMPORTANT: You will need to [manually] setup a scheduled task for the worker."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:356
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Go to your new Friendica node <a href=\"%s/register\">registration page</a> "
|
||||
"and register as new user. Remember to use the same email you have entered as "
|
||||
"administrator email. This will allow you to enter the site admin panel."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Invite.php:55
|
||||
msgid "Total invitation limit exceeded."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Invite.php:78
|
||||
#, php-format
|
||||
msgid "%s : Not a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Invite.php:105
|
||||
msgid "Please join us on Friendica"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Invite.php:114
|
||||
msgid "Invitation limit exceeded. Please contact your site administrator."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Invite.php:118
|
||||
#, php-format
|
||||
msgid "%s : Message delivery failed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Invite.php:122
|
||||
#, php-format
|
||||
msgid "%d message sent."
|
||||
msgid_plural "%d messages sent."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Module/Invite.php:140
|
||||
msgid "You have no more invitations available"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Invite.php:147
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Visit %s for a list of public sites that you can join. Friendica members on "
|
||||
"other sites can all connect with each other, as well as with members of many "
|
||||
"other social networks."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Invite.php:149
|
||||
#, php-format
|
||||
msgid ""
|
||||
"To accept this invitation, please visit and register at %s or any other "
|
||||
"public Friendica website."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Invite.php:150
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Friendica sites all inter-connect to create a huge privacy-enhanced social "
|
||||
"web that is owned and controlled by its members. They can also connect with "
|
||||
"many traditional social networks. See %s for a list of alternate Friendica "
|
||||
"sites you can join."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Invite.php:154
|
||||
msgid ""
|
||||
"Our apologies. This system is not currently configured to connect with other "
|
||||
"public sites or invite members."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Invite.php:157
|
||||
msgid ""
|
||||
"Friendica sites all inter-connect to create a huge privacy-enhanced social "
|
||||
"web that is owned and controlled by its members. They can also connect with "
|
||||
"many traditional social networks."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Invite.php:156
|
||||
#, php-format
|
||||
msgid "To accept this invitation, please visit and register at %s."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Invite.php:164
|
||||
msgid "Send invitations"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Invite.php:165
|
||||
msgid "Enter email addresses, one per line:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Invite.php:169
|
||||
msgid ""
|
||||
"You are cordially invited to join me and other close friends on Friendica - "
|
||||
"and help us to create a better social web."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Invite.php:171
|
||||
msgid "You will need to supply this invitation code: $invite_code"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Invite.php:171
|
||||
msgid ""
|
||||
"Once you have registered, please connect with me via my profile page at:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Invite.php:173
|
||||
msgid ""
|
||||
"For more information about the Friendica project and why we feel it is "
|
||||
"important, please visit http://friendi.ca"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Item/Compose.php:46
|
||||
msgid "Please enter a post body."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Item/Compose.php:59
|
||||
msgid "This feature is only available with the frio theme."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Item/Compose.php:86
|
||||
msgid "Compose new personal note"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Item/Compose.php:95
|
||||
msgid "Compose new post"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Item/Compose.php:135
|
||||
msgid "Visibility"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Item/Compose.php:156
|
||||
msgid "Clear the location"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Item/Compose.php:157
|
||||
msgid "Location services are unavailable on your device"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Item/Compose.php:158
|
||||
msgid ""
|
||||
"Location services are disabled. Please check the website's permissions on "
|
||||
"your device"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Item/Follow.php:52
|
||||
msgid "Unable to follow this item."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Maintenance.php:48 src/Module/Maintenance.php:53
|
||||
msgid "System down for maintenance"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Maintenance.php:54
|
||||
msgid ""
|
||||
"This Friendica node is currently in maintenance mode, either automatically "
|
||||
"because it is self-updating or manually by the node administrator. This "
|
||||
"condition should be temporary, please come back in a few minutes."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Manifest.php:42
|
||||
msgid "A Decentralized Social Network"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Introductions.php:78
|
||||
msgid "Show Ignored Requests"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Introductions.php:78
|
||||
msgid "Hide Ignored Requests"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Introductions.php:94
|
||||
#: src/Module/Notifications/Introductions.php:163
|
||||
msgid "Notification type:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Introductions.php:97
|
||||
msgid "Suggested by:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Introductions.php:122
|
||||
msgid "Claims to be known to you: "
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Introductions.php:131
|
||||
msgid "Shall your connection be bidirectional or not?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Introductions.php:132
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
|
||||
"also receive updates from them in your news feed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Introductions.php:133
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Accepting %s as a subscriber allows them to subscribe to your posts, but you "
|
||||
"will not receive updates from them in your news feed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Introductions.php:135
|
||||
msgid "Friend"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Introductions.php:136
|
||||
msgid "Subscriber"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Introductions.php:201
|
||||
msgid "No introductions."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Introductions.php:202
|
||||
#: src/Module/Notifications/Notifications.php:133
|
||||
#, php-format
|
||||
msgid "No more %s notifications."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Notification.php:103
|
||||
msgid "You must be logged in to show this page."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Notifications.php:50
|
||||
msgid "Network Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Notifications.php:58
|
||||
msgid "System Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Notifications.php:66
|
||||
msgid "Personal Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Notifications.php:74
|
||||
msgid "Home Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Notifications.php:138
|
||||
msgid "Show unread"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Notifications/Notifications.php:138
|
||||
msgid "Show all"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/PermissionTooltip.php:25
|
||||
#, php-format
|
||||
msgid "Wrong type \"%s\", expected one of: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/PermissionTooltip.php:38
|
||||
msgid "Model not found"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/PermissionTooltip.php:60
|
||||
msgid "Remote privacy information not available."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/PermissionTooltip.php:71
|
||||
msgid "Visible to:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Photo.php:93
|
||||
#, php-format
|
||||
msgid "The Photo with id %s is not available."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Photo.php:111
|
||||
#, php-format
|
||||
msgid "Invalid photo with id %s."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Profile/Contacts.php:121
|
||||
msgid "No contacts."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Profile/Profile.php:135
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You're currently viewing your profile as <b>%s</b> <a href=\"%s\" class="
|
||||
"\"btn btn-sm pull-right\">Cancel</a>"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Profile/Profile.php:149
|
||||
msgid "Member since:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Profile/Profile.php:155
|
||||
msgid "j F, Y"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Profile/Profile.php:156
|
||||
msgid "j F"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Profile/Profile.php:164 src/Util/Temporal.php:163
|
||||
msgid "Birthday:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Profile/Profile.php:167 src/Module/Settings/Profile/Index.php:260
|
||||
#: src/Util/Temporal.php:165
|
||||
msgid "Age: "
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Profile/Profile.php:167 src/Module/Settings/Profile/Index.php:260
|
||||
#: src/Util/Temporal.php:165
|
||||
#, php-format
|
||||
msgid "%d year old"
|
||||
msgid_plural "%d years old"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Module/Profile/Profile.php:230
|
||||
msgid "Forums:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Profile/Profile.php:242
|
||||
msgid "View profile as:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Profile/Profile.php:259
|
||||
msgid "View as"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Profile/Profile.php:322 src/Module/Profile/Profile.php:325
|
||||
#: src/Module/Profile/Status.php:65 src/Module/Profile/Status.php:68
|
||||
#: src/Protocol/Feed.php:940 src/Protocol/OStatus.php:1258
|
||||
#, php-format
|
||||
msgid "%s's timeline"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Profile/Profile.php:323 src/Module/Profile/Status.php:66
|
||||
#: src/Protocol/Feed.php:944 src/Protocol/OStatus.php:1262
|
||||
#, php-format
|
||||
msgid "%s's posts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Profile/Profile.php:324 src/Module/Profile/Status.php:67
|
||||
#: src/Protocol/Feed.php:947 src/Protocol/OStatus.php:1265
|
||||
#, php-format
|
||||
msgid "%s's comments"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:69
|
||||
msgid "Only parent users can create additional accounts."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:101
|
||||
msgid ""
|
||||
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
|
||||
"and clicking \"Register\"."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:102
|
||||
msgid ""
|
||||
"If you are not familiar with OpenID, please leave that field blank and fill "
|
||||
"in the rest of the items."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:103
|
||||
msgid "Your OpenID (optional): "
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:112
|
||||
msgid "Include your profile in member directory?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:135
|
||||
msgid "Note for the admin"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:135
|
||||
msgid "Leave a message for the admin, why you want to join this node"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:136
|
||||
msgid "Membership on this site is by invitation only."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:137
|
||||
msgid "Your invitation code: "
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:145
|
||||
msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:146
|
||||
msgid ""
|
||||
"Your Email Address: (Initial information will be send there, so this has to "
|
||||
"be an existing address.)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:147
|
||||
msgid "Please repeat your e-mail address:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:149
|
||||
msgid "Leave empty for an auto generated password."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:151
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Choose a profile nickname. This must begin with a text character. Your "
|
||||
"profile address on this site will then be \"<strong>nickname@%s</strong>\"."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:152
|
||||
msgid "Choose a nickname: "
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:161
|
||||
msgid "Import your profile to this friendica instance"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:168
|
||||
msgid "Note: This node explicitly contains adult content"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:155
|
||||
msgid "Parent Password:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:155
|
||||
msgid ""
|
||||
"Please enter the password of the parent account to legitimize your request."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:199
|
||||
msgid "Password doesn't match."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:205
|
||||
msgid "Please enter your password."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:247
|
||||
msgid "You have entered too much information."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:271
|
||||
msgid "Please enter the identical mail address in the second field."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:298
|
||||
msgid "The additional account was created."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:323
|
||||
msgid ""
|
||||
"Registration successful. Please check your email for further instructions."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:327
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Failed to send email message. Here your accout details:<br> login: %s<br> "
|
||||
"password: %s<br><br>You can change your password after login."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:333
|
||||
msgid "Registration successful."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:338 src/Module/Register.php:345
|
||||
msgid "Your registration can not be processed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:344
|
||||
msgid "You have to leave a request note for the admin."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:390
|
||||
msgid "Your registration is pending approval by the site owner."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/RemoteFollow.php:67
|
||||
msgid "The provided profile link doesn't seem to be valid"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/RemoteFollow.php:105
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Enter your Webfinger address (user@domain.tld) or profile URL here. If this "
|
||||
"isn't supported by your system, you have to subscribe to <strong>%s</strong> "
|
||||
"or <strong>%s</strong> directly on your system."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Search/Index.php:55
|
||||
msgid "Only logged in users are permitted to perform a search."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Search/Index.php:77
|
||||
msgid "Only one search per minute is permitted for not logged in users."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Search/Index.php:191
|
||||
#, php-format
|
||||
msgid "Items tagged with: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Search/Saved.php:45
|
||||
msgid "Search term was not saved."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Search/Saved.php:48
|
||||
msgid "Search term already saved."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Search/Saved.php:54
|
||||
msgid "Search term was not removed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/Login.php:101
|
||||
msgid "Create a New Account"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/Login.php:126
|
||||
msgid "Your OpenID: "
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/Login.php:129
|
||||
msgid ""
|
||||
"Please enter your username and password to add the OpenID to your existing "
|
||||
"account."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/Login.php:131
|
||||
msgid "Or login using OpenID: "
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/Login.php:145
|
||||
msgid "Password: "
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/Login.php:146
|
||||
msgid "Remember me"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/Login.php:155
|
||||
msgid "Forgot your password?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/Login.php:158
|
||||
msgid "Website Terms of Service"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/Login.php:159
|
||||
msgid "terms of service"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/Login.php:161
|
||||
msgid "Website Privacy Policy"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/Login.php:162
|
||||
msgid "privacy policy"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/Logout.php:61
|
||||
msgid "Logged out."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/OpenID.php:54
|
||||
msgid "OpenID protocol error. No ID returned"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/OpenID.php:92
|
||||
msgid ""
|
||||
"Account not found. Please login to your existing account to add the OpenID "
|
||||
"to it."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/OpenID.php:94
|
||||
msgid ""
|
||||
"Account not found. Please register a new account or login to your existing "
|
||||
"account to add the OpenID to it."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/TwoFactor/Recovery.php:60
|
||||
#, php-format
|
||||
msgid "Remaining recovery codes: %d"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/TwoFactor/Recovery.php:64
|
||||
#: src/Module/Security/TwoFactor/Verify.php:75
|
||||
#: src/Module/Settings/TwoFactor/Verify.php:82
|
||||
msgid "Invalid code, please retry."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/TwoFactor/Recovery.php:83
|
||||
msgid "Two-factor recovery"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/TwoFactor/Recovery.php:84
|
||||
msgid ""
|
||||
"<p>You can enter one of your one-time recovery codes in case you lost access "
|
||||
"to your mobile device.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/TwoFactor/Recovery.php:85
|
||||
#: src/Module/Security/TwoFactor/Verify.php:98
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Don’t have your phone? <a href=\"%s\">Enter a two-factor recovery code</a>"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/TwoFactor/Recovery.php:86
|
||||
msgid "Please enter a recovery code"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/TwoFactor/Recovery.php:87
|
||||
msgid "Submit recovery code and complete login"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/TwoFactor/Verify.php:95
|
||||
msgid ""
|
||||
"<p>Open the two-factor authentication app on your device to get an "
|
||||
"authentication code and verify your identity.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/TwoFactor/Verify.php:99
|
||||
#: src/Module/Settings/TwoFactor/Verify.php:141
|
||||
msgid "Please enter a code from your authentication app"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/TwoFactor/Verify.php:100
|
||||
msgid "This is my two-factor authenticator app device"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Security/TwoFactor/Verify.php:101
|
||||
msgid "Verify code and complete login"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Delegation.php:53
|
||||
msgid "Delegation successfully granted."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Delegation.php:55
|
||||
msgid "Parent user not found, unavailable or password doesn't match."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Delegation.php:59
|
||||
msgid "Delegation successfully revoked."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Delegation.php:81 src/Module/Settings/Delegation.php:103
|
||||
msgid ""
|
||||
"Delegated administrators can view but not change delegation permissions."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Delegation.php:95
|
||||
msgid "Delegate user not found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Delegation.php:143
|
||||
msgid "No parent user"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Delegation.php:154
|
||||
#: src/Module/Settings/Delegation.php:165
|
||||
msgid "Parent User"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Delegation.php:162
|
||||
msgid "Additional Accounts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Delegation.php:163
|
||||
msgid ""
|
||||
"Register additional accounts that are automatically connected to your "
|
||||
"existing account so you can manage them from this account."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Delegation.php:164
|
||||
msgid "Register an additional account"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Delegation.php:168
|
||||
msgid ""
|
||||
"Parent users have total control about this account, including the account "
|
||||
"settings. Please double check whom you give this access."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Delegation.php:172
|
||||
msgid "Delegates"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Delegation.php:174
|
||||
msgid ""
|
||||
"Delegates are able to manage all aspects of this account/page except for "
|
||||
"basic account settings. Please do not delegate your personal account to "
|
||||
"anybody that you do not trust completely."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Delegation.php:175
|
||||
msgid "Existing Page Delegates"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Delegation.php:177
|
||||
msgid "Potential Delegates"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Delegation.php:180
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Delegation.php:181
|
||||
msgid "No entries."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:105
|
||||
msgid "The theme you chose isn't available."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:142
|
||||
#, php-format
|
||||
msgid "%s - (Unsupported)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:188
|
||||
msgid "Display Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:190
|
||||
msgid "General Theme Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:191
|
||||
msgid "Custom Theme Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:192
|
||||
msgid "Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:193 view/theme/duepuntozero/config.php:70
|
||||
#: view/theme/frio/config.php:161 view/theme/quattro/config.php:72
|
||||
#: view/theme/vier/config.php:120
|
||||
msgid "Theme settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:194
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:200
|
||||
msgid "Display Theme:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:201
|
||||
msgid "Mobile Theme:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:204
|
||||
msgid "Number of items to display per page:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:204 src/Module/Settings/Display.php:205
|
||||
msgid "Maximum of 100 items"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:205
|
||||
msgid "Number of items to display per page when viewed from mobile device:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:206
|
||||
msgid "Update browser every xx seconds"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:206
|
||||
msgid "Minimum of 10 seconds. Enter -1 to disable it."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:207
|
||||
msgid "Automatic updates only at the top of the post stream pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:207
|
||||
msgid ""
|
||||
"Auto update may add new posts at the top of the post stream pages, which can "
|
||||
"affect the scroll position and perturb normal reading if it happens anywhere "
|
||||
"else the top of the page."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:208
|
||||
msgid "Don't show emoticons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:208
|
||||
msgid ""
|
||||
"Normally emoticons are replaced with matching symbols. This setting disables "
|
||||
"this behaviour."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:209
|
||||
msgid "Infinite scroll"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:209
|
||||
msgid "Automatic fetch new items when reaching the page end."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:210
|
||||
msgid "Disable Smart Threading"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:210
|
||||
msgid "Disable the automatic suppression of extraneous thread indentation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:211
|
||||
msgid "Hide the Dislike feature"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:211
|
||||
msgid "Hides the Dislike button and dislike reactions on posts and comments."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:212
|
||||
msgid "Display the resharer"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:212
|
||||
msgid "Display the first resharer as icon and text on a reshared item."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:213
|
||||
msgid "Stay local"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:213
|
||||
msgid "Don't go to a remote system when following a contact link."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:215
|
||||
msgid "Beginning of week:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Profile/Index.php:85
|
||||
|
|
@ -9066,6 +9474,10 @@ msgstr ""
|
|||
msgid "Custom Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Profile/Index.php:248 src/Module/Welcome.php:58
|
||||
msgid "Upload Profile Photo"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Profile/Index.php:252
|
||||
msgid "Display name:"
|
||||
msgstr ""
|
||||
|
|
@ -9202,81 +9614,83 @@ msgstr ""
|
|||
msgid "select a photo from your photo albums"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Delegation.php:53
|
||||
msgid "Delegation successfully granted."
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:52
|
||||
#: src/Module/Settings/TwoFactor/Recovery.php:50
|
||||
#: src/Module/Settings/TwoFactor/Trusted.php:30
|
||||
#: src/Module/Settings/TwoFactor/Verify.php:56
|
||||
msgid "Please enter your password to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Delegation.php:55
|
||||
msgid "Parent user not found, unavailable or password doesn't match."
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:70
|
||||
msgid "App-specific password generation failed: The description is empty."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Delegation.php:59
|
||||
msgid "Delegation successfully revoked."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Delegation.php:81 src/Module/Settings/Delegation.php:103
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:73
|
||||
msgid ""
|
||||
"Delegated administrators can view but not change delegation permissions."
|
||||
"App-specific password generation failed: This description already exists."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Delegation.php:95
|
||||
msgid "Delegate user not found."
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:77
|
||||
msgid "New app-specific password generated."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Delegation.php:143
|
||||
msgid "No parent user"
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:83
|
||||
msgid "App-specific passwords successfully revoked."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Delegation.php:154
|
||||
#: src/Module/Settings/Delegation.php:165
|
||||
msgid "Parent User"
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:93
|
||||
msgid "App-specific password successfully revoked."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Delegation.php:162
|
||||
msgid "Additional Accounts"
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:114
|
||||
msgid "Two-factor app-specific passwords"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Delegation.php:163
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:116
|
||||
msgid ""
|
||||
"Register additional accounts that are automatically connected to your "
|
||||
"existing account so you can manage them from this account."
|
||||
"<p>App-specific passwords are randomly generated passwords used instead your "
|
||||
"regular password to authenticate your account on third-party applications "
|
||||
"that don't support two-factor authentication.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Delegation.php:164
|
||||
msgid "Register an additional account"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Delegation.php:168
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:117
|
||||
msgid ""
|
||||
"Parent users have total control about this account, including the account "
|
||||
"settings. Please double check whom you give this access."
|
||||
"Make sure to copy your new app-specific password now. You won’t be able to "
|
||||
"see it again!"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Delegation.php:172
|
||||
msgid "Delegates"
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:120
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Delegation.php:174
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:121
|
||||
msgid "Last Used"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:122
|
||||
msgid "Revoke"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:123
|
||||
msgid "Revoke All"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:126
|
||||
msgid ""
|
||||
"Delegates are able to manage all aspects of this account/page except for "
|
||||
"basic account settings. Please do not delegate your personal account to "
|
||||
"anybody that you do not trust completely."
|
||||
"When you generate a new app-specific password, you must use it right away, "
|
||||
"it will be shown to you once after you generate it."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Delegation.php:175
|
||||
msgid "Existing Page Delegates"
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:127
|
||||
msgid "Generate new app-specific password"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Delegation.php:177
|
||||
msgid "Potential Delegates"
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:128
|
||||
msgid "Friendiqa on my Fairphone 2..."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Delegation.php:180
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Delegation.php:181
|
||||
msgid "No entries."
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:129
|
||||
msgid "Generate"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/TwoFactor/Index.php:67
|
||||
|
|
@ -9375,58 +9789,6 @@ msgstr ""
|
|||
msgid "Finish app configuration"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/TwoFactor/Verify.php:56
|
||||
#: src/Module/Settings/TwoFactor/Recovery.php:50
|
||||
#: src/Module/Settings/TwoFactor/Trusted.php:30
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:52
|
||||
msgid "Please enter your password to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/TwoFactor/Verify.php:78
|
||||
msgid "Two-factor authentication successfully activated."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/TwoFactor/Verify.php:111
|
||||
#, php-format
|
||||
msgid ""
|
||||
"<p>Or you can submit the authentication settings manually:</p>\n"
|
||||
"<dl>\n"
|
||||
"\t<dt>Issuer</dt>\n"
|
||||
"\t<dd>%s</dd>\n"
|
||||
"\t<dt>Account Name</dt>\n"
|
||||
"\t<dd>%s</dd>\n"
|
||||
"\t<dt>Secret Key</dt>\n"
|
||||
"\t<dd>%s</dd>\n"
|
||||
"\t<dt>Type</dt>\n"
|
||||
"\t<dd>Time-based</dd>\n"
|
||||
"\t<dt>Number of digits</dt>\n"
|
||||
"\t<dd>6</dd>\n"
|
||||
"\t<dt>Hashing algorithm</dt>\n"
|
||||
"\t<dd>SHA-1</dd>\n"
|
||||
"</dl>"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/TwoFactor/Verify.php:131
|
||||
msgid "Two-factor code verification"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/TwoFactor/Verify.php:133
|
||||
msgid ""
|
||||
"<p>Please scan this QR Code with your authenticator app and submit the "
|
||||
"provided code.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/TwoFactor/Verify.php:135
|
||||
#, php-format
|
||||
msgid ""
|
||||
"<p>Or you can open the following URL in your mobile device:</p><p><a href="
|
||||
"\"%s\">%s</a></p>"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/TwoFactor/Verify.php:142
|
||||
msgid "Verify code and enable two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/TwoFactor/Recovery.php:66
|
||||
msgid "New recovery codes successfully generated."
|
||||
msgstr ""
|
||||
|
|
@ -9496,198 +9858,49 @@ msgstr ""
|
|||
msgid "Remove All"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:70
|
||||
msgid "App-specific password generation failed: The description is empty."
|
||||
#: src/Module/Settings/TwoFactor/Verify.php:78
|
||||
msgid "Two-factor authentication successfully activated."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:73
|
||||
msgid ""
|
||||
"App-specific password generation failed: This description already exists."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:77
|
||||
msgid "New app-specific password generated."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:83
|
||||
msgid "App-specific passwords successfully revoked."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:93
|
||||
msgid "App-specific password successfully revoked."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:114
|
||||
msgid "Two-factor app-specific passwords"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:116
|
||||
msgid ""
|
||||
"<p>App-specific passwords are randomly generated passwords used instead your "
|
||||
"regular password to authenticate your account on third-party applications "
|
||||
"that don't support two-factor authentication.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:117
|
||||
msgid ""
|
||||
"Make sure to copy your new app-specific password now. You won’t be able to "
|
||||
"see it again!"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:120
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:121
|
||||
msgid "Last Used"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:122
|
||||
msgid "Revoke"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:123
|
||||
msgid "Revoke All"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:126
|
||||
msgid ""
|
||||
"When you generate a new app-specific password, you must use it right away, "
|
||||
"it will be shown to you once after you generate it."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:127
|
||||
msgid "Generate new app-specific password"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:128
|
||||
msgid "Friendiqa on my Fairphone 2..."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:129
|
||||
msgid "Generate"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:105
|
||||
msgid "The theme you chose isn't available."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:142
|
||||
#: src/Module/Settings/TwoFactor/Verify.php:111
|
||||
#, php-format
|
||||
msgid "%s - (Unsupported)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:188
|
||||
msgid "Display Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:190
|
||||
msgid "General Theme Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:191
|
||||
msgid "Custom Theme Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:192
|
||||
msgid "Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:194
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:200
|
||||
msgid "Display Theme:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:201
|
||||
msgid "Mobile Theme:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:204
|
||||
msgid "Number of items to display per page:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:204 src/Module/Settings/Display.php:205
|
||||
msgid "Maximum of 100 items"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:205
|
||||
msgid "Number of items to display per page when viewed from mobile device:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:206
|
||||
msgid "Update browser every xx seconds"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:206
|
||||
msgid "Minimum of 10 seconds. Enter -1 to disable it."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:207
|
||||
msgid "Automatic updates only at the top of the post stream pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:207
|
||||
msgid ""
|
||||
"Auto update may add new posts at the top of the post stream pages, which can "
|
||||
"affect the scroll position and perturb normal reading if it happens anywhere "
|
||||
"else the top of the page."
|
||||
"<p>Or you can submit the authentication settings manually:</p>\n"
|
||||
"<dl>\n"
|
||||
"\t<dt>Issuer</dt>\n"
|
||||
"\t<dd>%s</dd>\n"
|
||||
"\t<dt>Account Name</dt>\n"
|
||||
"\t<dd>%s</dd>\n"
|
||||
"\t<dt>Secret Key</dt>\n"
|
||||
"\t<dd>%s</dd>\n"
|
||||
"\t<dt>Type</dt>\n"
|
||||
"\t<dd>Time-based</dd>\n"
|
||||
"\t<dt>Number of digits</dt>\n"
|
||||
"\t<dd>6</dd>\n"
|
||||
"\t<dt>Hashing algorithm</dt>\n"
|
||||
"\t<dd>SHA-1</dd>\n"
|
||||
"</dl>"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:208
|
||||
msgid "Don't show emoticons"
|
||||
#: src/Module/Settings/TwoFactor/Verify.php:131
|
||||
msgid "Two-factor code verification"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:208
|
||||
#: src/Module/Settings/TwoFactor/Verify.php:133
|
||||
msgid ""
|
||||
"Normally emoticons are replaced with matching symbols. This setting disables "
|
||||
"this behaviour."
|
||||
"<p>Please scan this QR Code with your authenticator app and submit the "
|
||||
"provided code.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:209
|
||||
msgid "Infinite scroll"
|
||||
#: src/Module/Settings/TwoFactor/Verify.php:135
|
||||
#, php-format
|
||||
msgid ""
|
||||
"<p>Or you can open the following URL in your mobile device:</p><p><a href="
|
||||
"\"%s\">%s</a></p>"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:209
|
||||
msgid "Automatic fetch new items when reaching the page end."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:210
|
||||
msgid "Disable Smart Threading"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:210
|
||||
msgid "Disable the automatic suppression of extraneous thread indentation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:211
|
||||
msgid "Hide the Dislike feature"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:211
|
||||
msgid "Hides the Dislike button and dislike reactions on posts and comments."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:212
|
||||
msgid "Display the resharer"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:212
|
||||
msgid "Display the first resharer as icon and text on a reshared item."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:213
|
||||
msgid "Stay local"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:213
|
||||
msgid "Don't go to a remote system when following a contact link."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:215
|
||||
msgid "Beginning of week:"
|
||||
#: src/Module/Settings/TwoFactor/Verify.php:142
|
||||
msgid "Verify code and enable two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/UserExport.php:59
|
||||
|
|
@ -9721,8 +9934,501 @@ msgid ""
|
|||
"e.g. Mastodon."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Maintenance.php:46
|
||||
msgid "System down for maintenance"
|
||||
#: src/Module/Special/HTTPException.php:49
|
||||
msgid "Bad Request"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Special/HTTPException.php:50
|
||||
msgid "Unauthorized"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Special/HTTPException.php:51
|
||||
msgid "Forbidden"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Special/HTTPException.php:52
|
||||
msgid "Not Found"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Special/HTTPException.php:53
|
||||
msgid "Internal Server Error"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Special/HTTPException.php:54
|
||||
msgid "Service Unavailable"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Special/HTTPException.php:61
|
||||
msgid ""
|
||||
"The server cannot or will not process the request due to an apparent client "
|
||||
"error."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Special/HTTPException.php:62
|
||||
msgid "Authentication is required and has failed or has not yet been provided."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Special/HTTPException.php:63
|
||||
msgid ""
|
||||
"The request was valid, but the server is refusing action. The user might not "
|
||||
"have the necessary permissions for a resource, or may need an account."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Special/HTTPException.php:64
|
||||
msgid ""
|
||||
"The requested resource could not be found but may be available in the future."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Special/HTTPException.php:65
|
||||
msgid ""
|
||||
"An unexpected condition was encountered and no more specific message is "
|
||||
"suitable."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Special/HTTPException.php:66
|
||||
msgid ""
|
||||
"The server is currently unavailable (because it is overloaded or down for "
|
||||
"maintenance). Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Special/HTTPException.php:76
|
||||
msgid "Stack trace:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Special/HTTPException.php:80
|
||||
#, php-format
|
||||
msgid "Exception thrown in %s:%d"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Tos.php:46 src/Module/Tos.php:88
|
||||
msgid ""
|
||||
"At the time of registration, and for providing communications between the "
|
||||
"user account and their contacts, the user has to provide a display name (pen "
|
||||
"name), an username (nickname) and a working email address. The names will be "
|
||||
"accessible on the profile page of the account by any visitor of the page, "
|
||||
"even if other profile details are not displayed. The email address will only "
|
||||
"be used to send the user notifications about interactions, but wont be "
|
||||
"visibly displayed. The listing of an account in the node's user directory or "
|
||||
"the global user directory is optional and can be controlled in the user "
|
||||
"settings, it is not necessary for communication."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Tos.php:47 src/Module/Tos.php:89
|
||||
msgid ""
|
||||
"This data is required for communication and is passed on to the nodes of the "
|
||||
"communication partners and is stored there. Users can enter additional "
|
||||
"private data that may be transmitted to the communication partners accounts."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Tos.php:48 src/Module/Tos.php:90
|
||||
#, php-format
|
||||
msgid ""
|
||||
"At any point in time a logged in user can export their account data from the "
|
||||
"<a href=\"%1$s/settings/userexport\">account settings</a>. If the user wants "
|
||||
"to delete their account they can do so at <a href=\"%1$s/removeme\">%1$s/"
|
||||
"removeme</a>. The deletion of the account will be permanent. Deletion of the "
|
||||
"data will also be requested from the nodes of the communication partners."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Tos.php:51 src/Module/Tos.php:87
|
||||
msgid "Privacy Statement"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:44
|
||||
msgid "Welcome to Friendica"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:45
|
||||
msgid "New Member Checklist"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:46
|
||||
msgid ""
|
||||
"We would like to offer some tips and links to help make your experience "
|
||||
"enjoyable. Click any item to visit the relevant page. A link to this page "
|
||||
"will be visible from your home page for two weeks after your initial "
|
||||
"registration and then will quietly disappear."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:48
|
||||
msgid "Getting Started"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:49
|
||||
msgid "Friendica Walk-Through"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:50
|
||||
msgid ""
|
||||
"On your <em>Quick Start</em> page - find a brief introduction to your "
|
||||
"profile and network tabs, make some new connections, and find some groups to "
|
||||
"join."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:53
|
||||
msgid "Go to Your Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:54
|
||||
msgid ""
|
||||
"On your <em>Settings</em> page - change your initial password. Also make a "
|
||||
"note of your Identity Address. This looks just like an email address - and "
|
||||
"will be useful in making friends on the free social web."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:55
|
||||
msgid ""
|
||||
"Review the other settings, particularly the privacy settings. An unpublished "
|
||||
"directory listing is like having an unlisted phone number. In general, you "
|
||||
"should probably publish your listing - unless all of your friends and "
|
||||
"potential friends know exactly how to find you."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:59
|
||||
msgid ""
|
||||
"Upload a profile photo if you have not done so already. Studies have shown "
|
||||
"that people with real photos of themselves are ten times more likely to make "
|
||||
"friends than people who do not."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:60
|
||||
msgid "Edit Your Profile"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:61
|
||||
msgid ""
|
||||
"Edit your <strong>default</strong> profile to your liking. Review the "
|
||||
"settings for hiding your list of friends and hiding the profile from unknown "
|
||||
"visitors."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:62
|
||||
msgid "Profile Keywords"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:63
|
||||
msgid ""
|
||||
"Set some public keywords for your profile which describe your interests. We "
|
||||
"may be able to find other people with similar interests and suggest "
|
||||
"friendships."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:65
|
||||
msgid "Connecting"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:67
|
||||
msgid "Importing Emails"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:68
|
||||
msgid ""
|
||||
"Enter your email access information on your Connector Settings page if you "
|
||||
"wish to import and interact with friends or mailing lists from your email "
|
||||
"INBOX"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:69
|
||||
msgid "Go to Your Contacts Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:70
|
||||
msgid ""
|
||||
"Your Contacts page is your gateway to managing friendships and connecting "
|
||||
"with friends on other networks. Typically you enter their address or site "
|
||||
"URL in the <em>Add New Contact</em> dialog."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:71
|
||||
msgid "Go to Your Site's Directory"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:72
|
||||
msgid ""
|
||||
"The Directory page lets you find other people in this network or other "
|
||||
"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
|
||||
"their profile page. Provide your own Identity Address if requested."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:73
|
||||
msgid "Finding New People"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:74
|
||||
msgid ""
|
||||
"On the side panel of the Contacts page are several tools to find new "
|
||||
"friends. We can match people by interest, look up people by name or "
|
||||
"interest, and provide suggestions based on network relationships. On a brand "
|
||||
"new site, friend suggestions will usually begin to be populated within 24 "
|
||||
"hours."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:77
|
||||
msgid "Group Your Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:78
|
||||
msgid ""
|
||||
"Once you have made some friends, organize them into private conversation "
|
||||
"groups from the sidebar of your Contacts page and then you can interact with "
|
||||
"each group privately on your Network page."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:80
|
||||
msgid "Why Aren't My Posts Public?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:81
|
||||
msgid ""
|
||||
"Friendica respects your privacy. By default, your posts will only show up to "
|
||||
"people you've added as friends. For more information, see the help section "
|
||||
"from the link above."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:83
|
||||
msgid "Getting Help"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:84
|
||||
msgid "Go to the Help Section"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Welcome.php:85
|
||||
msgid ""
|
||||
"Our <strong>help</strong> pages may be consulted for detail on other program "
|
||||
"features and resources."
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/EMail/ItemCCEMail.php:39
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This message was sent to you by %s, a member of the Friendica social network."
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/EMail/ItemCCEMail.php:41
|
||||
#, php-format
|
||||
msgid "You may visit them online at %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/EMail/ItemCCEMail.php:42
|
||||
msgid ""
|
||||
"Please contact the sender by replying to this post if you do not wish to "
|
||||
"receive these messages."
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/EMail/ItemCCEMail.php:46
|
||||
#, php-format
|
||||
msgid "%s posted an update."
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:148
|
||||
msgid "This entry was edited"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:176
|
||||
msgid "Private Message"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:214
|
||||
msgid "pinned item"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:219
|
||||
msgid "Delete locally"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:222
|
||||
msgid "Delete globally"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:222
|
||||
msgid "Remove locally"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:236
|
||||
#, php-format
|
||||
msgid "Block %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:241
|
||||
msgid "save to folder"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:275
|
||||
msgid "I will attend"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:275
|
||||
msgid "I will not attend"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:275
|
||||
msgid "I might attend"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:305
|
||||
msgid "ignore thread"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:306
|
||||
msgid "unignore thread"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:307
|
||||
msgid "toggle ignore status"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:319
|
||||
msgid "pin"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:320
|
||||
msgid "unpin"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:321
|
||||
msgid "toggle pin status"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:324
|
||||
msgid "pinned"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:331
|
||||
msgid "add star"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:332
|
||||
msgid "remove star"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:333
|
||||
msgid "toggle star status"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:336
|
||||
msgid "starred"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:340
|
||||
msgid "add tag"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:350
|
||||
msgid "like"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:351
|
||||
msgid "dislike"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:353
|
||||
msgid "Quote share this"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:353
|
||||
msgid "Quote Share"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:356
|
||||
msgid "Reshare this"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:356
|
||||
msgid "Reshare"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:357
|
||||
msgid "Cancel your Reshare"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:357
|
||||
msgid "Unshare"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:402
|
||||
#, php-format
|
||||
msgid "%s (Received %s)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:407
|
||||
msgid "Comment this item on your system"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:407
|
||||
msgid "remote comment"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:419
|
||||
msgid "Pushed"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:419
|
||||
msgid "Pulled"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:451
|
||||
msgid "to"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:452
|
||||
msgid "via"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:453
|
||||
msgid "Wall-to-Wall"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:454
|
||||
msgid "via Wall-To-Wall:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:492
|
||||
#, php-format
|
||||
msgid "Reply to %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:495
|
||||
msgid "More"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:513
|
||||
msgid "Notifier task is pending"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:514
|
||||
msgid "Delivery to remote servers is pending"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:515
|
||||
msgid "Delivery to remote servers is underway"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:516
|
||||
msgid "Delivery to remote servers is mostly done"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:517
|
||||
msgid "Delivery to remote servers is done"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:537
|
||||
#, php-format
|
||||
msgid "%d comment"
|
||||
msgid_plural "%d comments"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Object/Post.php:538
|
||||
msgid "Show more"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:539
|
||||
msgid "Show fewer"
|
||||
msgstr ""
|
||||
|
||||
#: src/Protocol/Diaspora.php:3414
|
||||
msgid "Attachments:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Protocol/OStatus.php:1760
|
||||
|
|
@ -9743,8 +10449,105 @@ msgstr ""
|
|||
msgid "stopped following"
|
||||
msgstr ""
|
||||
|
||||
#: src/Protocol/Diaspora.php:3414
|
||||
msgid "Attachments:"
|
||||
#: src/Render/FriendicaSmartyEngine.php:52
|
||||
msgid "The folder view/smarty3/ must be writable by webserver."
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:275
|
||||
msgid "Hometown:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:276
|
||||
msgid "Marital Status:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:277
|
||||
msgid "With:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:278
|
||||
msgid "Since:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:279
|
||||
msgid "Sexual Preference:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:280
|
||||
msgid "Political Views:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:281
|
||||
msgid "Religious Views:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:282
|
||||
msgid "Likes:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:283
|
||||
msgid "Dislikes:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:284
|
||||
msgid "Title/Description:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:286
|
||||
msgid "Musical interests"
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:287
|
||||
msgid "Books, literature"
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:288
|
||||
msgid "Television"
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:289
|
||||
msgid "Film/dance/culture/entertainment"
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:290
|
||||
msgid "Hobbies/Interests"
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:291
|
||||
msgid "Love/romance"
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:292
|
||||
msgid "Work/employment"
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:293
|
||||
msgid "School/education"
|
||||
msgstr ""
|
||||
|
||||
#: src/Repository/ProfileField.php:294
|
||||
msgid "Contact information and Social Networks"
|
||||
msgstr ""
|
||||
|
||||
#: src/Security/Authentication.php:209 src/Security/Authentication.php:261
|
||||
msgid "Login failed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Security/Authentication.php:272
|
||||
msgid "Login failed. Please check your credentials."
|
||||
msgstr ""
|
||||
|
||||
#: src/Security/Authentication.php:391
|
||||
#, php-format
|
||||
msgid "Welcome %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Security/Authentication.php:392
|
||||
msgid "Please upload a profile photo."
|
||||
msgstr ""
|
||||
|
||||
#: src/Util/EMailer/MailBuilder.php:259
|
||||
msgid "Friendica Notification"
|
||||
msgstr ""
|
||||
|
||||
#: src/Util/EMailer/NotifyMailBuilder.php:78
|
||||
|
|
@ -9766,10 +10569,6 @@ msgstr ""
|
|||
msgid "thanks"
|
||||
msgstr ""
|
||||
|
||||
#: src/Util/EMailer/MailBuilder.php:259
|
||||
msgid "Friendica Notification"
|
||||
msgstr ""
|
||||
|
||||
#: src/Util/Temporal.php:167
|
||||
msgid "YYYY-MM-DD or MM-DD"
|
||||
msgstr ""
|
||||
|
|
@ -9836,1058 +10635,264 @@ msgstr ""
|
|||
msgid "%1$d %2$s ago"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Storage/Database.php:74
|
||||
#, php-format
|
||||
msgid "Database storage failed to update %s"
|
||||
#: src/Worker/Delivery.php:570
|
||||
msgid "(no subject)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Storage/Database.php:82
|
||||
msgid "Database storage failed to insert data"
|
||||
#: view/theme/duepuntozero/config.php:52
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Storage/Filesystem.php:100
|
||||
#, php-format
|
||||
#: view/theme/duepuntozero/config.php:53
|
||||
msgid "greenzero"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/duepuntozero/config.php:54
|
||||
msgid "purplezero"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/duepuntozero/config.php:55
|
||||
msgid "easterbunny"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/duepuntozero/config.php:56
|
||||
msgid "darkzero"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/duepuntozero/config.php:57
|
||||
msgid "comix"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/duepuntozero/config.php:58
|
||||
msgid "slackr"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/duepuntozero/config.php:71
|
||||
msgid "Variations"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:142
|
||||
msgid "Light (Accented)"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:143
|
||||
msgid "Dark (Accented)"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:144
|
||||
msgid "Black (Accented)"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:156
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:156
|
||||
msgid "Check image permissions if all users are allowed to see the image"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:162
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:163
|
||||
msgid "Legacy"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:164
|
||||
msgid "Accented"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:165
|
||||
msgid "Select color scheme"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:166
|
||||
msgid "Select scheme accent"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:166
|
||||
msgid "Blue"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:166
|
||||
msgid "Red"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:166
|
||||
msgid "Purple"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:166
|
||||
msgid "Green"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:166
|
||||
msgid "Pink"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:167
|
||||
msgid "Copy or paste schemestring"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:167
|
||||
msgid ""
|
||||
"Filesystem storage failed to create \"%s\". Check you write permissions."
|
||||
"You can copy this string to share your theme with others. Pasting here "
|
||||
"applies the schemestring"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Storage/Filesystem.php:148
|
||||
#, php-format
|
||||
#: view/theme/frio/config.php:168
|
||||
msgid "Navigation bar background color"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:169
|
||||
msgid "Navigation bar icon color "
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:170
|
||||
msgid "Link color"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:171
|
||||
msgid "Set the background color"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:172
|
||||
msgid "Content background opacity"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:173
|
||||
msgid "Set the background image"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:174
|
||||
msgid "Background image style"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:179
|
||||
msgid "Login page background image"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:183
|
||||
msgid "Login page background color"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:183
|
||||
msgid "Leave background image and color empty for theme defaults"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/php/default.php:81 view/theme/frio/php/standard.php:38
|
||||
msgid "Skip to main content"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/php/Image.php:40
|
||||
msgid "Top Banner"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/php/Image.php:40
|
||||
msgid ""
|
||||
"Filesystem storage failed to save data to \"%s\". Check your write "
|
||||
"permissions"
|
||||
"Resize image to the width of the screen and show background color below on "
|
||||
"long pages."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Storage/Filesystem.php:176
|
||||
msgid "Storage base path"
|
||||
#: view/theme/frio/php/Image.php:41
|
||||
msgid "Full screen"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Storage/Filesystem.php:178
|
||||
#: view/theme/frio/php/Image.php:41
|
||||
msgid ""
|
||||
"Folder where uploaded files are saved. For maximum security, This should be "
|
||||
"a path outside web server folder tree"
|
||||
"Resize image to fill entire screen, clipping either the right or the bottom."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Storage/Filesystem.php:191
|
||||
msgid "Enter a valid existing folder"
|
||||
#: view/theme/frio/php/Image.php:42
|
||||
msgid "Single row mosaic"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Item.php:1550
|
||||
#, php-format
|
||||
msgid "Detected languages in this post:\\n%s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Item.php:2495
|
||||
msgid "activity"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Item.php:2500
|
||||
msgid "post"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Item.php:2614
|
||||
#, php-format
|
||||
msgid "Content warning: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Item.php:2681
|
||||
msgid "bytes"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Item.php:2726
|
||||
msgid "View on separate page"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Item.php:2727
|
||||
msgid "view on separate page"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Item.php:2732 src/Model/Item.php:2738
|
||||
#: src/Content/Text/BBCode.php:1090
|
||||
msgid "link to source"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Mail.php:120 src/Model/Mail.php:258
|
||||
msgid "[no subject]"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Contact.php:981 src/Model/Contact.php:994
|
||||
msgid "UnFollow"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Contact.php:990
|
||||
msgid "Drop Contact"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Contact.php:1405
|
||||
msgid "Organisation"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Contact.php:1409 src/Content/Widget.php:532
|
||||
msgid "News"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Contact.php:1413
|
||||
msgid "Forum"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Contact.php:2168
|
||||
msgid "Connect URL missing."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Contact.php:2177
|
||||
#: view/theme/frio/php/Image.php:42
|
||||
msgid ""
|
||||
"The contact could not be added. Please check the relevant network "
|
||||
"credentials in your Settings -> Social Networks page."
|
||||
"Resize image to repeat it on a single row, either vertical or horizontal."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Contact.php:2218
|
||||
msgid ""
|
||||
"This site is not configured to allow communications with other networks."
|
||||
#: view/theme/frio/php/Image.php:43
|
||||
msgid "Mosaic"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Contact.php:2219 src/Model/Contact.php:2232
|
||||
msgid "No compatible communication protocols or feeds were discovered."
|
||||
#: view/theme/frio/php/Image.php:43
|
||||
msgid "Repeat image to fill the screen."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Contact.php:2230
|
||||
msgid "The profile address specified does not provide adequate information."
|
||||
#: view/theme/frio/theme.php:207
|
||||
msgid "Guest"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Contact.php:2235
|
||||
msgid "An author or name was not found."
|
||||
#: view/theme/frio/theme.php:210
|
||||
msgid "Visitor"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Contact.php:2238
|
||||
msgid "No browser URL could be matched to this address."
|
||||
#: view/theme/quattro/config.php:73
|
||||
msgid "Alignment"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Contact.php:2241
|
||||
msgid ""
|
||||
"Unable to match @-style Identity Address with a known protocol or email "
|
||||
"contact."
|
||||
#: view/theme/quattro/config.php:73
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Contact.php:2242
|
||||
msgid "Use mailto: in front of address to force email check."
|
||||
#: view/theme/quattro/config.php:73
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Contact.php:2248
|
||||
msgid ""
|
||||
"The profile address specified belongs to a network which has been disabled "
|
||||
"on this site."
|
||||
#: view/theme/quattro/config.php:74
|
||||
msgid "Color scheme"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Contact.php:2253
|
||||
msgid ""
|
||||
"Limited profile. This person will be unable to receive direct/personal "
|
||||
"notifications from you."
|
||||
#: view/theme/quattro/config.php:75
|
||||
msgid "Posts font size"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Contact.php:2312
|
||||
msgid "Unable to retrieve contact information."
|
||||
#: view/theme/quattro/config.php:76
|
||||
msgid "Textareas font size"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Event.php:77 src/Model/Event.php:94 src/Model/Event.php:470
|
||||
#: src/Model/Event.php:941
|
||||
msgid "Starts:"
|
||||
#: view/theme/vier/config.php:75
|
||||
msgid "Comma separated list of helper forums"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Event.php:80 src/Model/Event.php:100 src/Model/Event.php:471
|
||||
#: src/Model/Event.php:945
|
||||
msgid "Finishes:"
|
||||
#: view/theme/vier/config.php:115
|
||||
msgid "don't show"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Event.php:420
|
||||
msgid "all-day"
|
||||
#: view/theme/vier/config.php:115
|
||||
msgid "show"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Event.php:446
|
||||
msgid "Sept"
|
||||
#: view/theme/vier/config.php:121
|
||||
msgid "Set style"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Event.php:468
|
||||
msgid "No events to display"
|
||||
#: view/theme/vier/config.php:122
|
||||
msgid "Community Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Event.php:587
|
||||
msgid "l, F j"
|
||||
#: view/theme/vier/config.php:123 view/theme/vier/theme.php:125
|
||||
msgid "Community Profiles"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Event.php:618
|
||||
msgid "Edit event"
|
||||
#: view/theme/vier/config.php:124
|
||||
msgid "Help or @NewHere ?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Event.php:619
|
||||
msgid "Duplicate event"
|
||||
#: view/theme/vier/config.php:125 view/theme/vier/theme.php:296
|
||||
msgid "Connect Services"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Event.php:620
|
||||
msgid "Delete event"
|
||||
#: view/theme/vier/config.php:126
|
||||
msgid "Find Friends"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Event.php:872
|
||||
msgid "D g:i A"
|
||||
#: view/theme/vier/config.php:127 view/theme/vier/theme.php:152
|
||||
msgid "Last users"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Event.php:873
|
||||
msgid "g:i A"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Event.php:960 src/Model/Event.php:962
|
||||
msgid "Show map"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Event.php:961
|
||||
msgid "Hide map"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Event.php:1053
|
||||
#, php-format
|
||||
msgid "%s's birthday"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Event.php:1054
|
||||
#, php-format
|
||||
msgid "Happy Birthday %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:186 src/Model/User.php:931
|
||||
msgid "SERIOUS ERROR: Generation of security keys failed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:549
|
||||
msgid "Login failed"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:581
|
||||
msgid "Not enough information to authenticate"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:676
|
||||
msgid "Password can't be empty"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:695
|
||||
msgid "Empty passwords are not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:699
|
||||
msgid ""
|
||||
"The new password has been exposed in a public data dump, please choose "
|
||||
"another."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:705
|
||||
msgid ""
|
||||
"The password can't contain accentuated letters, white spaces or colons (:)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:811
|
||||
msgid "Passwords do not match. Password unchanged."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:818
|
||||
msgid "An invitation is required."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:822
|
||||
msgid "Invitation could not be verified."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:830
|
||||
msgid "Invalid OpenID url"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:849
|
||||
msgid "Please enter the required information."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:863
|
||||
#, php-format
|
||||
msgid ""
|
||||
"system.username_min_length (%s) and system.username_max_length (%s) are "
|
||||
"excluding each other, swapping values."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:870
|
||||
#, php-format
|
||||
msgid "Username should be at least %s character."
|
||||
msgid_plural "Username should be at least %s characters."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Model/User.php:874
|
||||
#, php-format
|
||||
msgid "Username should be at most %s character."
|
||||
msgid_plural "Username should be at most %s characters."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Model/User.php:882
|
||||
msgid "That doesn't appear to be your full (First Last) name."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:887
|
||||
msgid "Your email domain is not among those allowed on this site."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:891
|
||||
msgid "Not a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:894
|
||||
msgid "The nickname was blocked from registration by the nodes admin."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:898 src/Model/User.php:906
|
||||
msgid "Cannot use that email."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:913
|
||||
msgid "Your nickname can only contain a-z, 0-9 and _."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:921 src/Model/User.php:978
|
||||
msgid "Nickname is already registered. Please choose another."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:965 src/Model/User.php:969
|
||||
msgid "An error occurred during registration. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:992
|
||||
msgid "An error occurred creating your default profile. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:999
|
||||
msgid "An error occurred creating your self contact. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:1004
|
||||
msgid "Friends"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:1008
|
||||
msgid ""
|
||||
"An error occurred creating your default contact group. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:1199
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\tDear %1$s,\n"
|
||||
"\t\t\tthe administrator of %2$s has set up an account for you."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:1202
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\tThe login details are as follows:\n"
|
||||
"\n"
|
||||
"\t\tSite Location:\t%1$s\n"
|
||||
"\t\tLogin Name:\t\t%2$s\n"
|
||||
"\t\tPassword:\t\t%3$s\n"
|
||||
"\n"
|
||||
"\t\tYou may change your password from your account \"Settings\" page after "
|
||||
"logging\n"
|
||||
"\t\tin.\n"
|
||||
"\n"
|
||||
"\t\tPlease take a few moments to review the other account settings on that "
|
||||
"page.\n"
|
||||
"\n"
|
||||
"\t\tYou may also wish to add some basic information to your default profile\n"
|
||||
"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
|
||||
"\n"
|
||||
"\t\tWe recommend setting your full name, adding a profile photo,\n"
|
||||
"\t\tadding some profile \"keywords\" (very useful in making new friends) - "
|
||||
"and\n"
|
||||
"\t\tperhaps what country you live in; if you do not wish to be more "
|
||||
"specific\n"
|
||||
"\t\tthan that.\n"
|
||||
"\n"
|
||||
"\t\tWe fully respect your right to privacy, and none of these items are "
|
||||
"necessary.\n"
|
||||
"\t\tIf you are new and do not know anybody here, they may help\n"
|
||||
"\t\tyou to make some new and interesting friends.\n"
|
||||
"\n"
|
||||
"\t\tIf you ever want to delete your account, you can do so at %1$s/removeme\n"
|
||||
"\n"
|
||||
"\t\tThank you and welcome to %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:1235 src/Model/User.php:1342
|
||||
#, php-format
|
||||
msgid "Registration details for %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:1255
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\t\tDear %1$s,\n"
|
||||
"\t\t\t\tThank you for registering at %2$s. Your account is pending for "
|
||||
"approval by the administrator.\n"
|
||||
"\n"
|
||||
"\t\t\tYour login details are as follows:\n"
|
||||
"\n"
|
||||
"\t\t\tSite Location:\t%3$s\n"
|
||||
"\t\t\tLogin Name:\t\t%4$s\n"
|
||||
"\t\t\tPassword:\t\t%5$s\n"
|
||||
"\t\t"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:1274
|
||||
#, php-format
|
||||
msgid "Registration at %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:1298
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\t\t\tDear %1$s,\n"
|
||||
"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n"
|
||||
"\t\t\t"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:1306
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\t\tThe login details are as follows:\n"
|
||||
"\n"
|
||||
"\t\t\tSite Location:\t%3$s\n"
|
||||
"\t\t\tLogin Name:\t\t%1$s\n"
|
||||
"\t\t\tPassword:\t\t%5$s\n"
|
||||
"\n"
|
||||
"\t\t\tYou may change your password from your account \"Settings\" page after "
|
||||
"logging\n"
|
||||
"\t\t\tin.\n"
|
||||
"\n"
|
||||
"\t\t\tPlease take a few moments to review the other account settings on that "
|
||||
"page.\n"
|
||||
"\n"
|
||||
"\t\t\tYou may also wish to add some basic information to your default "
|
||||
"profile\n"
|
||||
"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
|
||||
"\n"
|
||||
"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
|
||||
"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - "
|
||||
"and\n"
|
||||
"\t\t\tperhaps what country you live in; if you do not wish to be more "
|
||||
"specific\n"
|
||||
"\t\t\tthan that.\n"
|
||||
"\n"
|
||||
"\t\t\tWe fully respect your right to privacy, and none of these items are "
|
||||
"necessary.\n"
|
||||
"\t\t\tIf you are new and do not know anybody here, they may help\n"
|
||||
"\t\t\tyou to make some new and interesting friends.\n"
|
||||
"\n"
|
||||
"\t\t\tIf you ever want to delete your account, you can do so at %3$s/"
|
||||
"removeme\n"
|
||||
"\n"
|
||||
"\t\t\tThank you and welcome to %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Group.php:92
|
||||
msgid ""
|
||||
"A deleted group with this name was revived. Existing item permissions "
|
||||
"<strong>may</strong> apply to this group and any future members. If this is "
|
||||
"not what you intended, please create another group with a different name."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Group.php:451
|
||||
msgid "Default privacy group for new contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Group.php:483
|
||||
msgid "Everybody"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Group.php:502
|
||||
msgid "edit"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Group.php:534
|
||||
msgid "add"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Group.php:539
|
||||
msgid "Edit group"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Group.php:542
|
||||
msgid "Create a new group"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Group.php:544
|
||||
msgid "Edit groups"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Profile.php:348
|
||||
msgid "Change profile photo"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Profile.php:443
|
||||
msgid "Atom feed"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Profile.php:481 src/Model/Profile.php:578
|
||||
msgid "g A l F d"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Profile.php:482
|
||||
msgid "F d"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Profile.php:544 src/Model/Profile.php:629
|
||||
msgid "[today]"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Profile.php:554
|
||||
msgid "Birthday Reminders"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Profile.php:555
|
||||
msgid "Birthdays this week:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Profile.php:616
|
||||
msgid "[No description]"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Profile.php:642
|
||||
msgid "Event Reminders"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Profile.php:643
|
||||
msgid "Upcoming events the next 7 days:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Profile.php:818
|
||||
#, php-format
|
||||
msgid "OpenWebAuth: %1$s welcomes %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:49
|
||||
msgid "Add New Contact"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:50
|
||||
msgid "Enter address or web location"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:51
|
||||
msgid "Example: bob@example.com, http://example.com/barbara"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:53
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:68
|
||||
#, php-format
|
||||
msgid "%d invitation available"
|
||||
msgid_plural "%d invitations available"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Content/Widget.php:216
|
||||
msgid "Everyone"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:245
|
||||
msgid "Relationships"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:286
|
||||
msgid "Protocols"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:288
|
||||
msgid "All Protocols"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:316
|
||||
msgid "Saved Folders"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:318 src/Content/Widget.php:352
|
||||
msgid "Everything"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:350
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:407
|
||||
#, php-format
|
||||
msgid "%d contact in common"
|
||||
msgid_plural "%d contacts in common"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Content/Widget.php:411 src/Content/Widget.php:513
|
||||
#: src/Content/ForumManager.php:151
|
||||
msgid "show more"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:506
|
||||
msgid "Archives"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:512 src/Content/ForumManager.php:150
|
||||
msgid "show less"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:530
|
||||
msgid "Persons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:531
|
||||
msgid "Organisations"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:533 src/Content/Nav.php:229
|
||||
#: src/Content/ForumManager.php:145 src/Content/Text/HTML.php:910
|
||||
msgid "Forums"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:51
|
||||
msgid "Frequently"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:52
|
||||
msgid "Hourly"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:53
|
||||
msgid "Twice daily"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:54
|
||||
msgid "Daily"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:55
|
||||
msgid "Weekly"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:56
|
||||
msgid "Monthly"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:123
|
||||
msgid "DFRN"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:124
|
||||
msgid "OStatus"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:125
|
||||
msgid "RSS/Atom"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:128
|
||||
msgid "Zot!"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:129
|
||||
msgid "LinkedIn"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:130
|
||||
msgid "XMPP/IM"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:131
|
||||
msgid "MySpace"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:132
|
||||
msgid "Google+"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:133
|
||||
msgid "pump.io"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:134
|
||||
msgid "Twitter"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:135
|
||||
msgid "Discourse"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:136
|
||||
msgid "Diaspora Connector"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:137
|
||||
msgid "GNU Social Connector"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:138
|
||||
msgid "ActivityPub"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:139
|
||||
msgid "pnut"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ContactSelector.php:175
|
||||
#, php-format
|
||||
msgid "%s (via %s)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:96
|
||||
msgid "General Features"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:98
|
||||
msgid "Photo Location"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:98
|
||||
msgid ""
|
||||
"Photo metadata is normally stripped. This extracts the location (if present) "
|
||||
"prior to stripping metadata and links it to a map."
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:99
|
||||
msgid "Trending Tags"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:99
|
||||
msgid ""
|
||||
"Show a community page widget with a list of the most popular tags in recent "
|
||||
"public posts."
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:104
|
||||
msgid "Post Composition Features"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:105
|
||||
msgid "Auto-mention Forums"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:105
|
||||
msgid ""
|
||||
"Add/remove mention when a forum page is selected/deselected in ACL window."
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:106
|
||||
msgid "Explicit Mentions"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:106
|
||||
msgid ""
|
||||
"Add explicit mentions to comment box for manual control over who gets "
|
||||
"mentioned in replies."
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:111
|
||||
msgid "Post/Comment Tools"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:112
|
||||
msgid "Post Categories"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:112
|
||||
msgid "Add categories to your posts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:117
|
||||
msgid "Advanced Profile Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:118
|
||||
msgid "List Forums"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:118
|
||||
msgid "Show visitors public community forums at the Advanced Profile Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:119
|
||||
msgid "Tag Cloud"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:119
|
||||
msgid "Provide a personal tag cloud on your profile page"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:120
|
||||
msgid "Display Membership Date"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:120
|
||||
msgid "Display membership date in profile"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:90
|
||||
msgid "Nothing new here"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:95
|
||||
msgid "Clear notifications"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:96 src/Content/Text/HTML.php:897
|
||||
msgid "@name, !forum, #tags, content"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:169
|
||||
msgid "End this session"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:171
|
||||
msgid "Sign in"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:182
|
||||
msgid "Personal notes"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:182
|
||||
msgid "Your personal notes"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:202 src/Content/Nav.php:263
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:202
|
||||
msgid "Home Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:206
|
||||
msgid "Create an account"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:212
|
||||
msgid "Help and documentation"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:216
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:216
|
||||
msgid "Addon applications, utilities, games"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:220
|
||||
msgid "Search site content"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:223 src/Content/Text/HTML.php:904
|
||||
msgid "Full Text"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:224 src/Content/Widget/TagCloud.php:68
|
||||
#: src/Content/Text/HTML.php:905
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:244
|
||||
msgid "Community"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:244
|
||||
msgid "Conversations on this and other servers"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:251
|
||||
msgid "Directory"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:251
|
||||
msgid "People directory"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:253
|
||||
msgid "Information about this friendica instance"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:256
|
||||
msgid "Terms of Service of this Friendica instance"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:267
|
||||
msgid "Introductions"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:267
|
||||
msgid "Friend Requests"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:269
|
||||
msgid "See all notifications"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:270
|
||||
msgid "Mark all system notifications seen"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:274
|
||||
msgid "Inbox"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:275
|
||||
msgid "Outbox"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:279
|
||||
msgid "Accounts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:279
|
||||
msgid "Manage other pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:289
|
||||
msgid "Site setup and configuration"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:292
|
||||
msgid "Navigation"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:292
|
||||
msgid "Site map"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget/SavedSearches.php:47
|
||||
msgid "Remove term"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget/SavedSearches.php:60
|
||||
msgid "Saved Searches"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget/CalendarExport.php:63
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget/CalendarExport.php:64
|
||||
msgid "Export calendar as ical"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget/CalendarExport.php:65
|
||||
msgid "Export calendar as csv"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget/TrendingTags.php:51
|
||||
#, php-format
|
||||
msgid "Trending Tags (last %d hour)"
|
||||
msgid_plural "Trending Tags (last %d hours)"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Content/Widget/TrendingTags.php:52
|
||||
msgid "More Trending Tags"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget/ContactBlock.php:73
|
||||
msgid "No contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget/ContactBlock.php:105
|
||||
#, php-format
|
||||
msgid "%d Contact"
|
||||
msgid_plural "%d Contacts"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Content/Widget/ContactBlock.php:124
|
||||
msgid "View Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171
|
||||
msgid "newer"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176
|
||||
msgid "older"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/OEmbed.php:269
|
||||
msgid "Embedding disabled"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/OEmbed.php:387
|
||||
msgid "Embedded content"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Pager.php:221
|
||||
msgid "prev"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Pager.php:281
|
||||
msgid "last"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/ForumManager.php:147
|
||||
msgid "External link to forum"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Text/HTML.php:795
|
||||
msgid "Loading more entries..."
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Text/HTML.php:796
|
||||
msgid "The end"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Text/HTML.php:947 src/Content/Text/BBCode.php:1525
|
||||
msgid "Click to open/close"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Text/BBCode.php:963 src/Content/Text/BBCode.php:1607
|
||||
#: src/Content/Text/BBCode.php:1608
|
||||
msgid "Image/photo"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Text/BBCode.php:1065
|
||||
#, php-format
|
||||
msgid ""
|
||||
"<a href=\"%1$s\" target=\"_blank\" rel=\"noopener noreferrer\">%2$s</a> %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Text/BBCode.php:1556
|
||||
msgid "$1 wrote:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Text/BBCode.php:1610 src/Content/Text/BBCode.php:1611
|
||||
msgid "Encrypted content"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Text/BBCode.php:1824
|
||||
msgid "Invalid source protocol"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Text/BBCode.php:1839
|
||||
msgid "Invalid link protocol"
|
||||
msgstr ""
|
||||
|
||||
#: src/BaseModule.php:150
|
||||
msgid ""
|
||||
"The form security token was not correct. This probably happened because the "
|
||||
"form has been opened for too long (>3 hours) before submitting it."
|
||||
msgstr ""
|
||||
|
||||
#: src/BaseModule.php:179
|
||||
msgid "All contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/BaseModule.php:202
|
||||
msgid "Common"
|
||||
#: view/theme/vier/theme.php:211
|
||||
msgid "Quick Start"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -7,5 +7,7 @@
|
|||
{{$stack_trace}}
|
||||
{{$trace}}</pre>
|
||||
{{/if}}
|
||||
{{if $back}}
|
||||
<p><button type="button" onclick="window.history.back()" class="btn btn-primary">{{$back}}</button></p>
|
||||
{{/if}}
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue