diff --git a/htconfig.php b/htconfig.php index 2cbbf6335..0e838bd90 100644 --- a/htconfig.php +++ b/htconfig.php @@ -24,11 +24,15 @@ $db_data = 'mysqldatabasename'; // Use environment variables for mysql if they are set beforehand if (!empty(getenv('MYSQL_HOST')) && !empty(getenv('MYSQL_PORT')) - && !empty(getenv('MYSQL_USERNAME')) + && (!empty(getenv('MYSQL_USERNAME')) || !empty(getenv('MYSQL_USER'))) && !empty(getenv('MYSQL_PASSWORD')) && !empty(getenv('MYSQL_DATABASE'))) { $db_host = getenv('MYSQL_HOST') . ':' . getenv('MYSQL_PORT'); - $db_user = getenv('MYSQL_USERNAME'); + if (!empty(getenv('MYSQL_USERNAME'))) { + $db_user = getenv('MYSQL_USERNAME'); + } elseif (!empty(getenv('MYSQL_USER'))) { + $db_user = getenv('MYSQL_USER'); + } $db_pass = getenv('MYSQL_PASSWORD'); $db_data = getenv('MYSQL_DATABASE'); } diff --git a/include/dba.php b/include/dba.php index 1d3b43214..e64575538 100644 --- a/include/dba.php +++ b/include/dba.php @@ -52,16 +52,6 @@ class dba { return false; } - if ($a->mode == App::MODE_INSTALL) { - // server has to be a non-empty string that is not 'localhost' and not an IP - if (strlen($server) && ($server !== 'localhost') && filter_var($server, FILTER_VALIDATE_IP) === false) { - if (! dns_get_record($server, DNS_A + DNS_CNAME)) { - self::$error = L10n::t('Cannot locate DNS info for database server \'%s\'', $server); - return false; - } - } - } - if (class_exists('\PDO') && in_array('mysql', PDO::getAvailableDrivers())) { self::$driver = 'pdo'; $connect = "mysql:host=".$server.";dbname=".$db; diff --git a/mod/admin.php b/mod/admin.php index bba46c9f3..e374201ff 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -1395,7 +1395,7 @@ function admin_page_site(App $a) '$no_oembed_rich_content' => ['no_oembed_rich_content', L10n::t("No OEmbed rich content"), Config::get('system','no_oembed_rich_content'), L10n::t("Don't show the rich content \x28e.g. embedded PDF\x29, except from the domains listed below.")], '$allowed_oembed' => ['allowed_oembed', L10n::t("Allowed OEmbed domains"), Config::get('system','allowed_oembed'), L10n::t("Comma separated list of domains which oembed content is allowed to be displayed. Wildcards are accepted.")], '$block_public' => ['block_public', L10n::t("Block public"), Config::get('system','block_public'), L10n::t("Check to block public access to all otherwise public personal pages on this site unless you are currently logged in.")], - '$force_publish' => ['publish_all', L10n::t("Force publish"), Config::get('system','publish_all'), L10n::t("Check to force all profiles on this site to be listed in the site directory.")], + '$force_publish' => ['publish_all', L10n::t("Force publish"), Config::get('system','publish_all'), L10n::t("Check to force all profiles on this site to be listed in the site directory.") . '' . L10n::t('Enabling this may violate privacy laws like the GDPR') . ''], '$global_directory' => ['directory', L10n::t("Global directory URL"), Config::get('system', 'directory', 'https://dir.friendica.social'), L10n::t("URL to the global directory. If this is not set, the global directory is completely unavailable to the application.")], '$newuser_private' => ['newuser_private', L10n::t("Private posts by default for new users"), Config::get('system','newuser_private'), L10n::t("Set default post permissions for all new members to the default privacy group rather than public.")], '$enotify_no_content' => ['enotify_no_content', L10n::t("Don't include post content in email notifications"), Config::get('system','enotify_no_content'), L10n::t("Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure.")], diff --git a/mod/register.php b/mod/register.php index f1f8b7caa..81919df10 100644 --- a/mod/register.php +++ b/mod/register.php @@ -233,8 +233,8 @@ function register_content(App $a) $profile_publish = replace_macros($publish_tpl, [ '$instance' => 'reg', '$pubdesc' => L10n::t('Include your profile in member directory?'), - '$yes_selected' => ' checked="checked" ', - '$no_selected' => '', + '$yes_selected' => '', + '$no_selected' => ' checked="checked"', '$str_yes' => L10n::t('Yes'), '$str_no' => L10n::t('No'), ]); diff --git a/mod/settings.php b/mod/settings.php index 48c217bc4..f9b3aeb7c 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -1091,13 +1091,13 @@ function settings_content(App $a) $profile_in_dir = ''; } else { $profile_in_dir = replace_macros($opt_tpl, [ - '$field' => ['profile_in_directory', L10n::t('Publish your default profile in your local site directory?'), $profile['publish'], L10n::t('Your profile will be published in the global friendica directories (e.g. %s). Your profile will be visible in public.', Config::get('system', 'directory'), Config::get('system', 'directory')), [L10n::t('No'), L10n::t('Yes')]] + '$field' => ['profile_in_directory', L10n::t('Publish your default profile in your local site directory?'), $profile['publish'], L10n::t('Your profile will be published in this node\'s local directory. Your profile details may be publicly visible depending on the system settings.', System::baseUrl().'/directory'), [L10n::t('No'), L10n::t('Yes')]] ]); } if (strlen(Config::get('system', 'directory'))) { $profile_in_net_dir = replace_macros($opt_tpl, [ - '$field' => ['profile_in_netdirectory', L10n::t('Publish your default profile in the global social directory?'), $profile['net-publish'], L10n::t('Your profile will be published in this node\'s local directory. Your profile details may be publicly visible depending on the system settings.', System::baseUrl().'/directory'), [L10n::t('No'), L10n::t('Yes')]] + '$field' => ['profile_in_netdirectory', L10n::t('Publish your default profile in the global social directory?'), $profile['net-publish'], L10n::t('Your profile will be published in the global friendica directories (e.g. %s). Your profile will be visible in public.', Config::get('system', 'directory'), Config::get('system', 'directory')), [L10n::t('No'), L10n::t('Yes')]] ]); } else { $profile_in_net_dir = ''; diff --git a/mods/sample-nginx.config b/mods/sample-nginx.config index a6760c0ad..eb4ae4577 100644 --- a/mods/sample-nginx.config +++ b/mods/sample-nginx.config @@ -82,27 +82,22 @@ server { # rewrite to front controller as default rule location / { - if ($is_args != "") { - rewrite ^/(.*) /index.php?pagename=$uri&$args last; + if (!-e $request_filename) { + rewrite ^(.*)$ /index.php?pagename=$1; } - rewrite ^/(.*) /index.php?pagename=$uri last; } + # make sure webfinger and other well known services aren't blocked # by denying dot files and rewrite request to the front controller location ^~ /.well-known/ { allow all; - rewrite ^/(.*) /index.php?pagename=$uri&$args last; - } - - # statically serve these file types when possible - # otherwise fall back to front controller - # allow browser to cache them - # added .htm for advanced source code editor library - location ~* \.(jpg|jpeg|gif|png|ico|css|js|htm|html|ttf|woff|svg)$ { - expires 30d; - try_files $uri /index.php?pagename=$uri&$args; + if (!-e $request_filename) { + rewrite ^(.*)$ /index.php?pagename=$1; + } } + + include mime.types; # block these file types location ~* \.(tpl|md|tgz|log|out)$ { diff --git a/src/App.php b/src/App.php index 655ea84f0..dd3d2397c 100644 --- a/src/App.php +++ b/src/App.php @@ -9,6 +9,8 @@ use Friendica\Core\Config; use Friendica\Core\L10n; use Friendica\Core\PConfig; use Friendica\Core\System; +use Friendica\Database\DBM; +use dba; use Detection\MobileDetect; @@ -1095,9 +1097,10 @@ class App return ''; } - if (!$this->current_theme) { - $this->computeCurrentTheme(); - } + //// @TODO Compute the current theme only once (this behavior has + /// already been implemented, but it didn't work well - + /// https://github.com/friendica/friendica/issues/5092) + $this->computeCurrentTheme(); return $this->current_theme; } diff --git a/src/Worker/Cron.php b/src/Worker/Cron.php index b0337e7db..e425c0350 100644 --- a/src/Worker/Cron.php +++ b/src/Worker/Cron.php @@ -102,7 +102,9 @@ Class Cron { dba::delete('workerqueue', ['`done` AND `executed` < UTC_TIMESTAMP() - INTERVAL 1 HOUR']); // Optimizing this table only last seconds - dba::e("OPTIMIZE TABLE `workerqueue`"); + if (Config::get('system', 'optimize_workerqueue', false)) { + dba::e("OPTIMIZE TABLE `workerqueue`"); + } Config::set('system', 'last_cron_hourly', time()); } diff --git a/view/lang/is/messages.po b/view/lang/is/messages.po index 1460ba2e3..5333b64cf 100644 --- a/view/lang/is/messages.po +++ b/view/lang/is/messages.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-04-06 16:58+0200\n" -"PO-Revision-Date: 2018-04-10 11:46+0000\n" +"POT-Creation-Date: 2018-05-20 14:22+0200\n" +"PO-Revision-Date: 2018-05-24 15:57+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: Icelandic (http://www.transifex.com/Friendica/friendica/language/is/)\n" "MIME-Version: 1.0\n" @@ -26,58 +26,6 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" -#: include/security.php:81 -msgid "Welcome " -msgstr "Velkomin(n)" - -#: include/security.php:82 -msgid "Please upload a profile photo." -msgstr "Gerðu svo vel að hlaða inn forsíðumynd." - -#: include/security.php:84 -msgid "Welcome back " -msgstr "Velkomin(n) aftur" - -#: include/security.php:431 -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 "" - -#: include/dba.php:57 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Get ekki flett upp DNS upplýsingum fyrir gagnagrunnsþjón '%s'" - -#: include/api.php:1199 -#, 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:1223 -#, 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:1247 -#, php-format -msgid "Monthly posting limit of %d post reached. The post was rejected." -msgstr "" - -#: include/api.php:4400 mod/photos.php:88 mod/photos.php:194 -#: mod/photos.php:722 mod/photos.php:1149 mod/photos.php:1166 -#: mod/photos.php:1684 mod/profile_photo.php:85 mod/profile_photo.php:93 -#: mod/profile_photo.php:101 mod/profile_photo.php:211 -#: mod/profile_photo.php:302 mod/profile_photo.php:312 src/Model/User.php:539 -#: src/Model/User.php:547 src/Model/User.php:555 -msgid "Profile Photos" -msgstr "Forsíðumyndir" - #: include/enotify.php:31 msgid "Friendica Notification" msgstr "Friendica tilkynning" @@ -94,238 +42,234 @@ msgstr "Kerfisstjóri %s" #: include/enotify.php:39 #, php-format msgid "%1$s, %2$s Administrator" -msgstr "%1$s, %2$s kerfisstjóri" +msgstr "%1$s, kerfisstjóri %2$s" -#: include/enotify.php:50 src/Worker/Delivery.php:404 -msgid "noreply" -msgstr "ekki svara" - -#: include/enotify.php:98 +#: include/enotify.php:95 #, php-format msgid "[Friendica:Notify] New mail received at %s" -msgstr "" +msgstr "[Friendica:Notify] Nýr póstur móttekinn %s" -#: include/enotify.php:100 +#: include/enotify.php:97 #, php-format msgid "%1$s sent you a new private message at %2$s." -msgstr "" +msgstr "%1$s sendi þér ný einkaskilaboð %2$s." -#: include/enotify.php:101 +#: include/enotify.php:98 msgid "a private message" msgstr "einkaskilaboð" -#: include/enotify.php:101 +#: include/enotify.php:98 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s sendi þér %2$s." -#: include/enotify.php:103 +#: include/enotify.php:100 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Farðu á %s til að skoða og/eða svara einkaskilaboðunum þínum." -#: include/enotify.php:141 +#: include/enotify.php:138 #, php-format msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "" +msgstr "%1$s setti inn athugasemd um [url=%2$s]a %3$s[/url]" -#: include/enotify.php:149 +#: include/enotify.php:146 #, php-format msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" -msgstr "" +msgstr "%1$s setti inn athugasemd um [url=%2$s]frá %3$s %4$s[/url]" -#: include/enotify.php:159 +#: include/enotify.php:156 #, php-format msgid "%1$s commented on [url=%2$s]your %3$s[/url]" -msgstr "" +msgstr "%1$s setti inn athugasemd um [url=%2$s]frá þér %3$s[/url]" -#: include/enotify.php:171 +#: include/enotify.php:168 #, php-format msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "" +msgstr "[Friendica:Notify] Athugasemd við samtal #%1$d eftir %2$s" -#: include/enotify.php:173 +#: include/enotify.php:170 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s skrifaði athugasemd á færslu/samtal sem þú ert að fylgja." -#: include/enotify.php:176 include/enotify.php:191 include/enotify.php:206 -#: include/enotify.php:221 include/enotify.php:240 include/enotify.php:255 +#: include/enotify.php:173 include/enotify.php:188 include/enotify.php:203 +#: include/enotify.php:218 include/enotify.php:237 include/enotify.php:252 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Farðu á %s til að skoða og/eða svara samtali." -#: include/enotify.php:183 +#: include/enotify.php:180 #, php-format msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "" +msgstr "[Friendica:Notify] %s skrifaði á vegginn þinn" -#: include/enotify.php:185 +#: include/enotify.php:182 #, php-format msgid "%1$s posted to your profile wall at %2$s" -msgstr "" +msgstr "%1$s skrifaði á vegginn þinn %2$s" -#: include/enotify.php:186 +#: include/enotify.php:183 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "" +msgstr "%1$s skrifaði á [url=%2$s]vegginn þinn[/url]" + +#: include/enotify.php:195 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica:Notify] %s merkti þig" + +#: include/enotify.php:197 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s merkti þig %2$s" #: include/enotify.php:198 #, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "" - -#: include/enotify.php:200 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "" - -#: include/enotify.php:201 -#, php-format msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "" +msgstr "%1$s [url=%2$s]merkti þig[/url]." + +#: include/enotify.php:210 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "[Friendica:Notify] %s deildi nýrri færslu" + +#: include/enotify.php:212 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "%1$s deildi nýrri færslu %2$s" #: include/enotify.php:213 #, php-format -msgid "[Friendica:Notify] %s shared a new post" -msgstr "" - -#: include/enotify.php:215 -#, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "" - -#: include/enotify.php:216 -#, php-format msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "" +msgstr "%1$s [url=%2$s]deildi færslu[/url]." -#: include/enotify.php:228 +#: include/enotify.php:225 #, php-format msgid "[Friendica:Notify] %1$s poked you" msgstr "[Friendica:Notify] %1$s potaði í þig" -#: include/enotify.php:230 +#: include/enotify.php:227 #, php-format msgid "%1$s poked you at %2$s" msgstr "%1$s potaði í þig %2$s" -#: include/enotify.php:231 +#: include/enotify.php:228 #, php-format msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "" +msgstr "%1$s [url=%2$s]potaði í þig[/url]." + +#: include/enotify.php:244 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica:Notify] %s merkti færslu frá þér" + +#: include/enotify.php:246 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s merkti færslu frá þér %2$s" #: include/enotify.php:247 #, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "" - -#: include/enotify.php:249 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "" - -#: include/enotify.php:250 -#, php-format msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "" +msgstr "%1$s merkti [url=%2$s]færslu frá þér[/url]" -#: include/enotify.php:262 +#: include/enotify.php:259 msgid "[Friendica:Notify] Introduction received" -msgstr "" +msgstr "[Friendica:Notify] Tók á móti kynningu" -#: include/enotify.php:264 +#: include/enotify.php:261 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "" +msgstr "Þú tókst við kynningu frá '%1$s', %2$s" -#: include/enotify.php:265 +#: include/enotify.php:262 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "" +msgstr "Þú tókst við [url=%1$s]kynningu[/url] frá %2$s." -#: include/enotify.php:270 include/enotify.php:316 +#: include/enotify.php:267 include/enotify.php:313 #, php-format msgid "You may visit their profile at %s" msgstr "Þú getur heimsótt síðuna þeirra á %s" -#: include/enotify.php:272 +#: include/enotify.php:269 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Farðu á %s til að samþykkja eða hunsa þessa kynningu." -#: include/enotify.php:280 +#: include/enotify.php:277 msgid "[Friendica:Notify] A new person is sharing with you" -msgstr "" +msgstr "[Friendica:Notify] Nýr aðili er að deila með þér" -#: include/enotify.php:282 include/enotify.php:283 +#: include/enotify.php:279 include/enotify.php:280 #, php-format msgid "%1$s is sharing with you at %2$s" -msgstr "" +msgstr "%1$s er að deila með þér, %2$s" -#: include/enotify.php:290 +#: include/enotify.php:287 msgid "[Friendica:Notify] You have a new follower" -msgstr "" +msgstr "[Friendica:Notify] Þú ert með nýjan fylgjanda" -#: include/enotify.php:292 include/enotify.php:293 +#: include/enotify.php:289 include/enotify.php:290 #, php-format msgid "You have a new follower at %2$s : %1$s" -msgstr "" +msgstr "Þú hefur nýjan fylgjanda á %2$s : %1$s" -#: include/enotify.php:305 +#: include/enotify.php:302 msgid "[Friendica:Notify] Friend suggestion received" -msgstr "" +msgstr "[Friendica:Notify] Tók á móti uppástungu um vin" -#: include/enotify.php:307 +#: include/enotify.php:304 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "" +msgstr "Þér hefur borist uppástunga um vin frá '%1$s' kl. %2$s" -#: include/enotify.php:308 +#: include/enotify.php:305 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "" +msgstr "Þér hefur borist [url=%1$s]uppástunga um vin[/url] fyrir %2$s frá %3$s." -#: include/enotify.php:314 +#: include/enotify.php:311 msgid "Name:" msgstr "Nafn:" -#: include/enotify.php:315 +#: include/enotify.php:312 msgid "Photo:" msgstr "Mynd:" -#: include/enotify.php:318 +#: include/enotify.php:315 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Farðu á %s til að samþykkja eða hunsa þessa uppástungu." -#: include/enotify.php:326 include/enotify.php:341 +#: include/enotify.php:323 include/enotify.php:338 msgid "[Friendica:Notify] Connection accepted" msgstr "[Friendica:Notify] Tenging samþykkt" -#: include/enotify.php:328 include/enotify.php:343 +#: include/enotify.php:325 include/enotify.php:340 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" -msgstr "" +msgstr "'%1$s' samþykkti tengibeiðni þína %2$s" -#: include/enotify.php:329 include/enotify.php:344 +#: include/enotify.php:326 include/enotify.php:341 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." -msgstr "" +msgstr "%2$s samþykkti [url=%1$s]tengibeiðni þína[/url]." -#: include/enotify.php:334 +#: include/enotify.php:331 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." -msgstr "" +msgstr "Þið eruð núna gagnkvæmir vinir og getið skipst á stöðuuppfærslum, myndum og tölvupósti án hindrana." -#: include/enotify.php:336 +#: include/enotify.php:333 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: include/enotify.php:349 +#: include/enotify.php:346 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -334,129 +278,123 @@ msgid "" "automatically." msgstr "" -#: include/enotify.php:351 +#: include/enotify.php:348 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "" -#: include/enotify.php:353 +#: include/enotify.php:350 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: include/enotify.php:363 -msgid "[Friendica System:Notify] registration request" -msgstr "[Friendica System:Notify] beiðni um skráningu" +#: include/enotify.php:360 mod/removeme.php:44 +msgid "[Friendica System Notify]" +msgstr "" -#: include/enotify.php:365 +#: include/enotify.php:360 +msgid "registration request" +msgstr "beiðni um skráningu" + +#: include/enotify.php:362 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "" -#: include/enotify.php:366 +#: include/enotify.php:363 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "" -#: include/enotify.php:371 +#: include/enotify.php:368 #, php-format msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" msgstr "" -#: include/enotify.php:377 +#: include/enotify.php:374 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Farðu á %s til að samþykkja eða hunsa þessa beiðni." -#: include/items.php:342 mod/notice.php:22 mod/viewsrc.php:21 -#: mod/display.php:72 mod/display.php:252 mod/display.php:354 -#: mod/admin.php:276 mod/admin.php:1854 mod/admin.php:2102 -msgid "Item not found." -msgstr "Atriði fannst ekki." +#: include/security.php:81 +msgid "Welcome " +msgstr "Velkomin(n)" -#: include/items.php:382 -msgid "Do you really want to delete this item?" -msgstr "Viltu í alvörunni eyða þessu atriði?" +#: include/security.php:82 +msgid "Please upload a profile photo." +msgstr "Gerðu svo vel að hlaða inn forsíðumynd." -#: include/items.php:384 mod/api.php:110 mod/suggest.php:38 -#: mod/dfrn_request.php:653 mod/message.php:138 mod/follow.php:150 -#: mod/profiles.php:636 mod/profiles.php:639 mod/profiles.php:661 -#: mod/contacts.php:472 mod/register.php:237 mod/settings.php:1105 -#: mod/settings.php:1111 mod/settings.php:1118 mod/settings.php:1122 -#: mod/settings.php:1126 mod/settings.php:1130 mod/settings.php:1134 -#: mod/settings.php:1138 mod/settings.php:1158 mod/settings.php:1159 -#: mod/settings.php:1160 mod/settings.php:1161 mod/settings.php:1162 -msgid "Yes" -msgstr "Já" +#: include/security.php:84 +msgid "Welcome back " +msgstr "Velkomin(n) aftur" -#: include/items.php:387 include/conversation.php:1378 mod/fbrowser.php:103 -#: mod/fbrowser.php:134 mod/suggest.php:41 mod/dfrn_request.php:663 -#: mod/tagrm.php:19 mod/tagrm.php:99 mod/editpost.php:149 mod/message.php:141 -#: mod/photos.php:248 mod/photos.php:324 mod/videos.php:147 -#: mod/unfollow.php:117 mod/follow.php:161 mod/contacts.php:475 -#: mod/settings.php:676 mod/settings.php:702 -msgid "Cancel" -msgstr "Hætta við" +#: include/security.php:440 +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 "" -#: include/items.php:401 mod/allfriends.php:21 mod/api.php:35 mod/api.php:40 -#: mod/attach.php:38 mod/common.php:26 mod/crepair.php:98 mod/nogroup.php:28 -#: mod/repair_ostatus.php:13 mod/suggest.php:60 mod/uimport.php:28 -#: mod/notifications.php:73 mod/dfrn_confirm.php:68 mod/invite.php:20 -#: mod/invite.php:106 mod/wall_attach.php:74 mod/wall_attach.php:77 -#: mod/manage.php:131 mod/regmod.php:108 mod/viewcontacts.php:57 -#: mod/wallmessage.php:16 mod/wallmessage.php:40 mod/wallmessage.php:79 -#: mod/wallmessage.php:103 mod/poke.php:150 mod/wall_upload.php:103 -#: mod/wall_upload.php:106 mod/editpost.php:18 mod/fsuggest.php:80 -#: mod/group.php:26 mod/item.php:160 mod/message.php:59 mod/message.php:104 -#: mod/network.php:32 mod/notes.php:30 mod/photos.php:174 mod/photos.php:1051 -#: mod/delegate.php:25 mod/delegate.php:43 mod/delegate.php:54 -#: mod/dirfind.php:25 mod/ostatus_subscribe.php:16 mod/unfollow.php:15 -#: mod/unfollow.php:57 mod/unfollow.php:90 mod/cal.php:304 mod/events.php:194 -#: mod/profile_photo.php:30 mod/profile_photo.php:176 -#: mod/profile_photo.php:187 mod/profile_photo.php:200 mod/follow.php:17 -#: mod/follow.php:54 mod/follow.php:118 mod/profiles.php:182 -#: mod/profiles.php:606 mod/contacts.php:386 mod/register.php:53 -#: mod/settings.php:42 mod/settings.php:141 mod/settings.php:665 index.php:416 -msgid "Permission denied." -msgstr "Heimild ekki veitt." +#: include/dba.php:59 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Get ekki flett upp DNS upplýsingum fyrir gagnagrunnsþjón '%s'" -#: include/items.php:471 -msgid "Archives" -msgstr "Safnskrár" +#: include/api.php:1202 +#, 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/items.php:477 src/Content/ForumManager.php:130 -#: src/Content/Widget.php:312 src/Object/Post.php:430 src/App.php:512 -#: view/theme/vier/theme.php:259 -msgid "show more" -msgstr "birta meira" +#: include/api.php:1226 +#, 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:1250 +#, php-format +msgid "Monthly posting limit of %d post reached. The post was rejected." +msgstr "" + +#: include/api.php:4522 mod/photos.php:88 mod/photos.php:194 +#: mod/photos.php:722 mod/photos.php:1149 mod/photos.php:1166 +#: mod/photos.php:1684 mod/profile_photo.php:85 mod/profile_photo.php:93 +#: mod/profile_photo.php:101 mod/profile_photo.php:211 +#: mod/profile_photo.php:302 mod/profile_photo.php:312 src/Model/User.php:553 +#: src/Model/User.php:561 src/Model/User.php:569 +msgid "Profile Photos" +msgstr "Forsíðumyndir" #: include/conversation.php:144 include/conversation.php:282 -#: include/text.php:1774 src/Model/Item.php:1795 +#: include/text.php:1749 src/Model/Item.php:1970 msgid "event" msgstr "atburður" #: include/conversation.php:147 include/conversation.php:157 #: include/conversation.php:285 include/conversation.php:294 -#: mod/subthread.php:97 mod/tagger.php:72 src/Model/Item.php:1793 -#: src/Protocol/Diaspora.php:2010 +#: mod/subthread.php:97 mod/tagger.php:72 src/Model/Item.php:1968 +#: src/Protocol/Diaspora.php:1957 msgid "status" msgstr "staða" #: include/conversation.php:152 include/conversation.php:290 -#: include/text.php:1776 mod/subthread.php:97 mod/tagger.php:72 -#: src/Model/Item.php:1793 +#: include/text.php:1751 mod/subthread.php:97 mod/tagger.php:72 +#: src/Model/Item.php:1968 msgid "photo" msgstr "mynd" -#: include/conversation.php:164 src/Model/Item.php:1666 -#: src/Protocol/Diaspora.php:2006 +#: include/conversation.php:164 src/Model/Item.php:1841 +#: src/Protocol/Diaspora.php:1953 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s líkar við %3$s hjá %2$s " -#: include/conversation.php:167 src/Model/Item.php:1671 +#: include/conversation.php:167 src/Model/Item.php:1846 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "%1$s líkar ekki við %3$s hjá %2$s " @@ -464,20 +402,19 @@ msgstr "%1$s líkar ekki við %3$s hjá %2$s " #: include/conversation.php:170 #, php-format msgid "%1$s attends %2$s's %3$s" -msgstr "" +msgstr "%1$s mætir á %3$s hjá %2$s" #: include/conversation.php:173 #, php-format msgid "%1$s doesn't attend %2$s's %3$s" -msgstr "" +msgstr "%1$s mætir ekki á %3$s hjá %2$s" #: include/conversation.php:176 #, php-format msgid "%1$s attends maybe %2$s's %3$s" -msgstr "" +msgstr "%1$s mætir kannski á %3$s hjá %2$s" -#: include/conversation.php:209 mod/dfrn_confirm.php:431 -#: src/Protocol/Diaspora.php:2481 +#: include/conversation.php:209 #, php-format msgid "%1$s is now friends with %2$s" msgstr "Núna er %1$s vinur %2$s" @@ -494,706 +431,768 @@ msgstr "%1$s merkti %2$s's %3$s með %4$s" #: include/conversation.php:331 msgid "post/item" -msgstr "" +msgstr "færslur/atriði" #: include/conversation.php:332 #, php-format msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "" +msgstr "%1$s merkti %3$s hjá %2$s sem eftirlæti" -#: include/conversation.php:605 mod/photos.php:1501 mod/profiles.php:355 +#: include/conversation.php:608 mod/photos.php:1501 mod/profiles.php:355 msgid "Likes" msgstr "Líkar" -#: include/conversation.php:605 mod/photos.php:1501 mod/profiles.php:359 +#: include/conversation.php:608 mod/photos.php:1501 mod/profiles.php:359 msgid "Dislikes" msgstr "Mislíkar" -#: include/conversation.php:606 include/conversation.php:1687 +#: include/conversation.php:609 include/conversation.php:1639 #: mod/photos.php:1502 msgid "Attending" msgid_plural "Attending" msgstr[0] "Mætir" msgstr[1] "Mæta" -#: include/conversation.php:606 mod/photos.php:1502 +#: include/conversation.php:609 mod/photos.php:1502 msgid "Not attending" msgstr "Mætir ekki" -#: include/conversation.php:606 mod/photos.php:1502 +#: include/conversation.php:609 mod/photos.php:1502 msgid "Might attend" msgstr "Gæti mætt" -#: include/conversation.php:744 mod/photos.php:1569 src/Object/Post.php:178 +#: include/conversation.php:721 mod/photos.php:1569 src/Object/Post.php:192 msgid "Select" msgstr "Velja" -#: include/conversation.php:745 mod/photos.php:1570 mod/contacts.php:830 -#: mod/contacts.php:1035 mod/admin.php:1798 mod/settings.php:738 -#: src/Object/Post.php:179 +#: include/conversation.php:722 mod/photos.php:1570 mod/contacts.php:830 +#: mod/contacts.php:1035 mod/admin.php:1827 mod/settings.php:730 +#: src/Object/Post.php:187 msgid "Delete" msgstr "Eyða" -#: include/conversation.php:783 src/Object/Post.php:363 -#: src/Object/Post.php:364 +#: include/conversation.php:760 src/Object/Post.php:371 +#: src/Object/Post.php:372 #, php-format msgid "View %s's profile @ %s" msgstr "Birta forsíðu %s hjá %s" -#: include/conversation.php:795 src/Object/Post.php:351 +#: include/conversation.php:772 src/Object/Post.php:359 msgid "Categories:" msgstr "Flokkar:" -#: include/conversation.php:796 src/Object/Post.php:352 +#: include/conversation.php:773 src/Object/Post.php:360 msgid "Filed under:" msgstr "Skráð undir:" -#: include/conversation.php:803 src/Object/Post.php:377 +#: include/conversation.php:780 src/Object/Post.php:385 #, php-format msgid "%s from %s" msgstr "%s til %s" -#: include/conversation.php:818 +#: include/conversation.php:795 msgid "View in context" msgstr "Birta í samhengi" -#: include/conversation.php:820 include/conversation.php:1360 -#: mod/wallmessage.php:145 mod/editpost.php:125 mod/message.php:264 -#: mod/message.php:433 mod/photos.php:1473 src/Object/Post.php:402 +#: include/conversation.php:797 include/conversation.php:1312 +#: mod/wallmessage.php:145 mod/editpost.php:125 mod/photos.php:1473 +#: mod/message.php:245 mod/message.php:414 src/Object/Post.php:410 msgid "Please wait" msgstr "Hinkraðu aðeins" -#: include/conversation.php:891 +#: include/conversation.php:868 msgid "remove" msgstr "fjarlægja" -#: include/conversation.php:895 +#: include/conversation.php:872 msgid "Delete Selected Items" msgstr "Eyða völdum færslum" -#: include/conversation.php:1065 view/theme/frio/theme.php:352 +#: include/conversation.php:1017 view/theme/frio/theme.php:352 msgid "Follow Thread" msgstr "Fylgja þræði" -#: include/conversation.php:1066 src/Model/Contact.php:640 +#: include/conversation.php:1018 src/Model/Contact.php:662 msgid "View Status" msgstr "Skoða stöðu" -#: include/conversation.php:1067 include/conversation.php:1083 +#: include/conversation.php:1019 include/conversation.php:1035 #: mod/allfriends.php:73 mod/suggest.php:82 mod/match.php:89 -#: mod/dirfind.php:217 mod/directory.php:159 src/Model/Contact.php:580 -#: src/Model/Contact.php:593 src/Model/Contact.php:641 +#: mod/directory.php:159 mod/dirfind.php:217 src/Model/Contact.php:602 +#: src/Model/Contact.php:615 src/Model/Contact.php:663 msgid "View Profile" msgstr "Skoða forsíðu" -#: include/conversation.php:1068 src/Model/Contact.php:642 +#: include/conversation.php:1020 src/Model/Contact.php:664 msgid "View Photos" msgstr "Skoða myndir" -#: include/conversation.php:1069 src/Model/Contact.php:643 +#: include/conversation.php:1021 src/Model/Contact.php:665 msgid "Network Posts" -msgstr "" +msgstr "Færslur á neti" -#: include/conversation.php:1070 src/Model/Contact.php:644 +#: include/conversation.php:1022 src/Model/Contact.php:666 msgid "View Contact" msgstr "Skoða tengilið" -#: include/conversation.php:1071 src/Model/Contact.php:646 +#: include/conversation.php:1023 src/Model/Contact.php:668 msgid "Send PM" msgstr "Senda einkaboð" -#: include/conversation.php:1075 src/Model/Contact.php:647 +#: include/conversation.php:1027 src/Model/Contact.php:669 msgid "Poke" msgstr "Pota" -#: include/conversation.php:1080 mod/allfriends.php:74 mod/suggest.php:83 -#: mod/match.php:90 mod/dirfind.php:218 mod/follow.php:143 -#: mod/contacts.php:596 src/Content/Widget.php:61 src/Model/Contact.php:594 +#: include/conversation.php:1032 mod/allfriends.php:74 mod/suggest.php:83 +#: mod/match.php:90 mod/contacts.php:596 mod/dirfind.php:218 +#: mod/follow.php:143 view/theme/vier/theme.php:201 src/Content/Widget.php:61 +#: src/Model/Contact.php:616 msgid "Connect/Follow" msgstr "Tengjast/fylgja" -#: include/conversation.php:1199 +#: include/conversation.php:1151 #, php-format msgid "%s likes this." msgstr "%s líkar þetta." -#: include/conversation.php:1202 +#: include/conversation.php:1154 #, php-format msgid "%s doesn't like this." msgstr "%s mislíkar þetta." -#: include/conversation.php:1205 +#: include/conversation.php:1157 #, php-format msgid "%s attends." msgstr "%s mætir." -#: include/conversation.php:1208 +#: include/conversation.php:1160 #, php-format msgid "%s doesn't attend." msgstr "%s mætir ekki." -#: include/conversation.php:1211 +#: include/conversation.php:1163 #, php-format msgid "%s attends maybe." msgstr "%s mætir kannski." -#: include/conversation.php:1222 +#: include/conversation.php:1174 msgid "and" msgstr "og" -#: include/conversation.php:1228 +#: include/conversation.php:1180 #, php-format msgid "and %d other people" -msgstr "" +msgstr "og %d öðrum" -#: include/conversation.php:1237 +#: include/conversation.php:1189 #, php-format msgid "%2$d people like this" -msgstr "" +msgstr "%2$d fólki líkar þetta" -#: include/conversation.php:1238 +#: include/conversation.php:1190 #, php-format msgid "%s like this." -msgstr "" +msgstr "%s líkar þetta." -#: include/conversation.php:1241 +#: include/conversation.php:1193 #, php-format msgid "%2$d people don't like this" -msgstr "" +msgstr "%2$d fólki líkar þetta ekki" -#: include/conversation.php:1242 +#: include/conversation.php:1194 #, php-format msgid "%s don't like this." -msgstr "" +msgstr "%s líkar þetta ekki." -#: include/conversation.php:1245 +#: include/conversation.php:1197 #, php-format msgid "%2$d people attend" -msgstr "" +msgstr "%2$d fólki mæta" -#: include/conversation.php:1246 +#: include/conversation.php:1198 #, php-format msgid "%s attend." -msgstr "" +msgstr "%s mætir." -#: include/conversation.php:1249 +#: include/conversation.php:1201 #, php-format msgid "%2$d people don't attend" -msgstr "" +msgstr "%2$d fólki mæta ekki" -#: include/conversation.php:1250 +#: include/conversation.php:1202 #, php-format msgid "%s don't attend." -msgstr "" +msgstr "%s mætir ekki." -#: include/conversation.php:1253 +#: include/conversation.php:1205 #, php-format msgid "%2$d people attend maybe" -msgstr "" +msgstr "%2$d fólki mæta kannski" -#: include/conversation.php:1254 +#: include/conversation.php:1206 #, php-format msgid "%s attend maybe." -msgstr "" +msgstr "%s mætir kannski." -#: include/conversation.php:1284 include/conversation.php:1300 +#: include/conversation.php:1236 include/conversation.php:1252 msgid "Visible to everybody" msgstr "Sjáanlegt öllum" -#: include/conversation.php:1285 include/conversation.php:1301 -#: mod/wallmessage.php:120 mod/wallmessage.php:127 mod/message.php:200 -#: mod/message.php:207 mod/message.php:343 mod/message.php:350 +#: include/conversation.php:1237 include/conversation.php:1253 +#: mod/wallmessage.php:120 mod/wallmessage.php:127 mod/message.php:181 +#: mod/message.php:188 mod/message.php:324 mod/message.php:331 msgid "Please enter a link URL:" msgstr "Sláðu inn slóð:" -#: include/conversation.php:1286 include/conversation.php:1302 +#: include/conversation.php:1238 include/conversation.php:1254 msgid "Please enter a video link/URL:" msgstr "Settu inn slóð á myndskeið:" -#: include/conversation.php:1287 include/conversation.php:1303 +#: include/conversation.php:1239 include/conversation.php:1255 msgid "Please enter an audio link/URL:" msgstr "Settu inn slóð á hljóðskrá:" -#: include/conversation.php:1288 include/conversation.php:1304 +#: include/conversation.php:1240 include/conversation.php:1256 msgid "Tag term:" msgstr "Merka með:" -#: include/conversation.php:1289 include/conversation.php:1305 +#: include/conversation.php:1241 include/conversation.php:1257 #: mod/filer.php:34 msgid "Save to Folder:" msgstr "Vista í möppu:" -#: include/conversation.php:1290 include/conversation.php:1306 +#: include/conversation.php:1242 include/conversation.php:1258 msgid "Where are you right now?" msgstr "Hvar ert þú núna?" -#: include/conversation.php:1291 +#: include/conversation.php:1243 msgid "Delete item(s)?" msgstr "Eyða atriði/atriðum?" -#: include/conversation.php:1338 +#: include/conversation.php:1290 msgid "New Post" msgstr "Ný færsla" -#: include/conversation.php:1341 +#: include/conversation.php:1293 msgid "Share" msgstr "Deila" -#: include/conversation.php:1342 mod/wallmessage.php:143 mod/editpost.php:111 -#: mod/message.php:262 mod/message.php:430 +#: include/conversation.php:1294 mod/wallmessage.php:143 mod/editpost.php:111 +#: mod/message.php:243 mod/message.php:411 msgid "Upload photo" msgstr "Hlaða upp mynd" -#: include/conversation.php:1343 mod/editpost.php:112 +#: include/conversation.php:1295 mod/editpost.php:112 msgid "upload photo" msgstr "Hlaða upp mynd" -#: include/conversation.php:1344 mod/editpost.php:113 +#: include/conversation.php:1296 mod/editpost.php:113 msgid "Attach file" msgstr "Bæta við skrá" -#: include/conversation.php:1345 mod/editpost.php:114 +#: include/conversation.php:1297 mod/editpost.php:114 msgid "attach file" msgstr "Hengja skrá við" -#: include/conversation.php:1346 mod/wallmessage.php:144 mod/editpost.php:115 -#: mod/message.php:263 mod/message.php:431 +#: include/conversation.php:1298 mod/wallmessage.php:144 mod/editpost.php:115 +#: mod/message.php:244 mod/message.php:412 msgid "Insert web link" msgstr "Setja inn vefslóð" -#: include/conversation.php:1347 mod/editpost.php:116 +#: include/conversation.php:1299 mod/editpost.php:116 msgid "web link" msgstr "vefslóð" -#: include/conversation.php:1348 mod/editpost.php:117 +#: include/conversation.php:1300 mod/editpost.php:117 msgid "Insert video link" msgstr "Setja inn slóð á myndskeið" -#: include/conversation.php:1349 mod/editpost.php:118 +#: include/conversation.php:1301 mod/editpost.php:118 msgid "video link" msgstr "slóð á myndskeið" -#: include/conversation.php:1350 mod/editpost.php:119 +#: include/conversation.php:1302 mod/editpost.php:119 msgid "Insert audio link" msgstr "Setja inn slóð á hljóðskrá" -#: include/conversation.php:1351 mod/editpost.php:120 +#: include/conversation.php:1303 mod/editpost.php:120 msgid "audio link" msgstr "slóð á hljóðskrá" -#: include/conversation.php:1352 mod/editpost.php:121 +#: include/conversation.php:1304 mod/editpost.php:121 msgid "Set your location" msgstr "Veldu staðsetningu þína" -#: include/conversation.php:1353 mod/editpost.php:122 +#: include/conversation.php:1305 mod/editpost.php:122 msgid "set location" msgstr "stilla staðsetningu" -#: include/conversation.php:1354 mod/editpost.php:123 +#: include/conversation.php:1306 mod/editpost.php:123 msgid "Clear browser location" msgstr "Hreinsa staðsetningu í vafra" -#: include/conversation.php:1355 mod/editpost.php:124 +#: include/conversation.php:1307 mod/editpost.php:124 msgid "clear location" msgstr "hreinsa staðsetningu" -#: include/conversation.php:1357 mod/editpost.php:138 +#: include/conversation.php:1309 mod/editpost.php:138 msgid "Set title" msgstr "Setja titil" -#: include/conversation.php:1359 mod/editpost.php:140 +#: include/conversation.php:1311 mod/editpost.php:140 msgid "Categories (comma-separated list)" msgstr "Flokkar (listi aðskilinn með kommum)" -#: include/conversation.php:1361 mod/editpost.php:126 +#: include/conversation.php:1313 mod/editpost.php:126 msgid "Permission settings" msgstr "Stillingar aðgangsheimilda" -#: include/conversation.php:1362 mod/editpost.php:155 +#: include/conversation.php:1314 mod/editpost.php:155 msgid "permissions" msgstr "aðgangsstýring" -#: include/conversation.php:1370 mod/editpost.php:135 +#: include/conversation.php:1322 mod/editpost.php:135 msgid "Public post" msgstr "Opinber færsla" -#: include/conversation.php:1374 mod/editpost.php:146 mod/photos.php:1492 +#: include/conversation.php:1326 mod/editpost.php:146 mod/photos.php:1492 #: mod/photos.php:1531 mod/photos.php:1604 mod/events.php:528 -#: src/Object/Post.php:805 +#: src/Object/Post.php:813 msgid "Preview" msgstr "Forskoðun" -#: include/conversation.php:1383 +#: include/conversation.php:1330 include/items.php:387 mod/fbrowser.php:103 +#: mod/fbrowser.php:134 mod/suggest.php:41 mod/tagrm.php:19 mod/tagrm.php:99 +#: mod/editpost.php:149 mod/photos.php:248 mod/photos.php:324 +#: mod/videos.php:147 mod/contacts.php:475 mod/unfollow.php:117 +#: mod/follow.php:161 mod/message.php:141 mod/dfrn_request.php:658 +#: mod/settings.php:670 mod/settings.php:696 +msgid "Cancel" +msgstr "Hætta við" + +#: include/conversation.php:1335 msgid "Post to Groups" msgstr "Senda á hópa" -#: include/conversation.php:1384 +#: include/conversation.php:1336 msgid "Post to Contacts" msgstr "Senda á tengiliði" -#: include/conversation.php:1385 +#: include/conversation.php:1337 msgid "Private post" msgstr "Einkafærsla" -#: include/conversation.php:1390 mod/editpost.php:153 -#: src/Model/Profile.php:342 +#: include/conversation.php:1342 mod/editpost.php:153 +#: src/Model/Profile.php:338 msgid "Message" msgstr "Skilaboð" -#: include/conversation.php:1391 mod/editpost.php:154 +#: include/conversation.php:1343 mod/editpost.php:154 msgid "Browser" msgstr "Vafri" -#: include/conversation.php:1658 +#: include/conversation.php:1610 msgid "View all" msgstr "Skoða allt" -#: include/conversation.php:1681 +#: include/conversation.php:1633 msgid "Like" msgid_plural "Likes" msgstr[0] "Líkar" msgstr[1] "Líkar" -#: include/conversation.php:1684 +#: include/conversation.php:1636 msgid "Dislike" msgid_plural "Dislikes" msgstr[0] "Mislíkar" msgstr[1] "Mislíkar" -#: include/conversation.php:1690 +#: include/conversation.php:1642 msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "Mæti ekki" msgstr[1] "Mæta ekki" -#: include/conversation.php:1693 src/Content/ContactSelector.php:125 +#: include/conversation.php:1645 src/Content/ContactSelector.php:125 msgid "Undecided" msgid_plural "Undecided" msgstr[0] "Óviss" msgstr[1] "Óvissir" -#: include/text.php:302 +#: include/items.php:342 mod/notice.php:22 mod/viewsrc.php:21 +#: mod/admin.php:277 mod/admin.php:1883 mod/admin.php:2131 mod/display.php:72 +#: mod/display.php:255 mod/display.php:356 +msgid "Item not found." +msgstr "Atriði fannst ekki." + +#: include/items.php:382 +msgid "Do you really want to delete this item?" +msgstr "Viltu í alvörunni eyða þessu atriði?" + +#: include/items.php:384 mod/api.php:110 mod/suggest.php:38 +#: mod/contacts.php:472 mod/follow.php:150 mod/message.php:138 +#: mod/dfrn_request.php:648 mod/profiles.php:543 mod/profiles.php:546 +#: mod/profiles.php:568 mod/register.php:238 mod/settings.php:1094 +#: mod/settings.php:1100 mod/settings.php:1107 mod/settings.php:1111 +#: mod/settings.php:1115 mod/settings.php:1119 mod/settings.php:1123 +#: mod/settings.php:1127 mod/settings.php:1147 mod/settings.php:1148 +#: mod/settings.php:1149 mod/settings.php:1150 mod/settings.php:1151 +msgid "Yes" +msgstr "Já" + +#: include/items.php:401 mod/allfriends.php:21 mod/api.php:35 mod/api.php:40 +#: mod/attach.php:38 mod/common.php:26 mod/nogroup.php:28 +#: mod/repair_ostatus.php:13 mod/suggest.php:60 mod/uimport.php:28 +#: mod/manage.php:131 mod/wall_attach.php:74 mod/wall_attach.php:77 +#: mod/poke.php:150 mod/regmod.php:108 mod/viewcontacts.php:57 +#: mod/wall_upload.php:103 mod/wall_upload.php:106 mod/wallmessage.php:16 +#: mod/wallmessage.php:40 mod/wallmessage.php:79 mod/wallmessage.php:103 +#: mod/editpost.php:18 mod/fsuggest.php:80 mod/notes.php:30 mod/photos.php:174 +#: mod/photos.php:1051 mod/cal.php:304 mod/contacts.php:386 +#: mod/delegate.php:25 mod/delegate.php:43 mod/delegate.php:54 +#: mod/events.php:194 mod/ostatus_subscribe.php:16 mod/profile_photo.php:30 +#: mod/profile_photo.php:176 mod/profile_photo.php:187 +#: mod/profile_photo.php:200 mod/unfollow.php:15 mod/unfollow.php:57 +#: mod/unfollow.php:90 mod/dirfind.php:25 mod/follow.php:17 mod/follow.php:54 +#: mod/follow.php:118 mod/invite.php:20 mod/invite.php:111 mod/network.php:32 +#: mod/crepair.php:98 mod/message.php:59 mod/message.php:104 mod/group.php:26 +#: mod/dfrn_confirm.php:68 mod/item.php:160 mod/notifications.php:73 +#: mod/profiles.php:182 mod/profiles.php:513 mod/register.php:54 +#: mod/settings.php:43 mod/settings.php:142 mod/settings.php:659 index.php:436 +msgid "Permission denied." +msgstr "Heimild ekki veitt." + +#: include/items.php:471 src/Content/Feature.php:96 +msgid "Archives" +msgstr "Safnskrár" + +#: include/items.php:477 view/theme/vier/theme.php:258 +#: src/Content/ForumManager.php:130 src/Content/Widget.php:317 +#: src/Object/Post.php:438 src/App.php:525 +msgid "show more" +msgstr "birta meira" + +#: include/text.php:303 msgid "newer" msgstr "nýrri" -#: include/text.php:303 +#: include/text.php:304 msgid "older" msgstr "eldri" -#: include/text.php:308 +#: include/text.php:309 msgid "first" msgstr "fremsta" -#: include/text.php:309 +#: include/text.php:310 msgid "prev" msgstr "á undan" -#: include/text.php:343 +#: include/text.php:344 msgid "next" msgstr "næsta" -#: include/text.php:344 +#: include/text.php:345 msgid "last" msgstr "síðasta" -#: include/text.php:398 +#: include/text.php:399 msgid "Loading more entries..." msgstr "Hleð inn fleiri færslum..." -#: include/text.php:399 +#: include/text.php:400 msgid "The end" msgstr "Endir" -#: include/text.php:884 +#: include/text.php:885 msgid "No contacts" msgstr "Engir tengiliðir" -#: include/text.php:908 +#: include/text.php:909 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d tengiliður" msgstr[1] "%d tengiliðir" -#: include/text.php:921 +#: include/text.php:922 msgid "View Contacts" msgstr "Skoða tengiliði" -#: include/text.php:1010 mod/filer.php:35 mod/editpost.php:110 +#: include/text.php:1011 mod/filer.php:35 mod/editpost.php:110 #: mod/notes.php:67 msgid "Save" msgstr "Vista" -#: include/text.php:1010 +#: include/text.php:1011 msgid "Follow" msgstr "Fylgja" -#: include/text.php:1016 mod/search.php:155 src/Content/Nav.php:142 +#: include/text.php:1017 mod/search.php:155 src/Content/Nav.php:142 msgid "Search" msgstr "Leita" -#: include/text.php:1019 src/Content/Nav.php:58 +#: include/text.php:1020 src/Content/Nav.php:58 msgid "@name, !forum, #tags, content" msgstr "@nafn, !spjallsvæði, #merki, innihald" -#: include/text.php:1025 src/Content/Nav.php:145 +#: include/text.php:1026 src/Content/Nav.php:145 msgid "Full Text" msgstr "Allur textinn" -#: include/text.php:1026 src/Content/Nav.php:146 -#: src/Content/Widget/TagCloud.php:54 +#: include/text.php:1027 src/Content/Widget/TagCloud.php:54 +#: src/Content/Nav.php:146 msgid "Tags" msgstr "Merki" -#: include/text.php:1027 mod/viewcontacts.php:131 mod/contacts.php:814 -#: mod/contacts.php:875 src/Content/Nav.php:147 src/Content/Nav.php:212 -#: src/Model/Profile.php:957 src/Model/Profile.php:960 -#: view/theme/frio/theme.php:270 +#: include/text.php:1028 mod/viewcontacts.php:131 mod/contacts.php:814 +#: mod/contacts.php:875 view/theme/frio/theme.php:270 src/Content/Nav.php:147 +#: src/Content/Nav.php:213 src/Model/Profile.php:955 src/Model/Profile.php:958 msgid "Contacts" msgstr "Tengiliðir" -#: include/text.php:1030 src/Content/ForumManager.php:125 -#: src/Content/Nav.php:151 view/theme/vier/theme.php:254 +#: include/text.php:1031 view/theme/vier/theme.php:253 +#: src/Content/ForumManager.php:125 src/Content/Nav.php:151 msgid "Forums" msgstr "Spjallsvæði" -#: include/text.php:1074 +#: include/text.php:1075 msgid "poke" msgstr "pota" -#: include/text.php:1074 +#: include/text.php:1075 msgid "poked" msgstr "potaði" -#: include/text.php:1075 +#: include/text.php:1076 msgid "ping" -msgstr "ping" +msgstr "bjalla" -#: include/text.php:1075 +#: include/text.php:1076 msgid "pinged" -msgstr "" +msgstr "bjallað" -#: include/text.php:1076 +#: include/text.php:1077 msgid "prod" -msgstr "" +msgstr "ýta" -#: include/text.php:1076 +#: include/text.php:1077 msgid "prodded" -msgstr "" - -#: include/text.php:1077 -msgid "slap" -msgstr "" - -#: include/text.php:1077 -msgid "slapped" -msgstr "" +msgstr "ýtti" #: include/text.php:1078 +msgid "slap" +msgstr "slá" + +#: include/text.php:1078 +msgid "slapped" +msgstr "slegið" + +#: include/text.php:1079 msgid "finger" msgstr "fingur" -#: include/text.php:1078 +#: include/text.php:1079 msgid "fingered" msgstr "" -#: include/text.php:1079 +#: include/text.php:1080 msgid "rebuff" msgstr "" -#: include/text.php:1079 +#: include/text.php:1080 msgid "rebuffed" msgstr "" -#: include/text.php:1093 mod/settings.php:943 src/Model/Event.php:379 +#: include/text.php:1094 mod/settings.php:935 src/Model/Event.php:379 msgid "Monday" msgstr "Mánudagur" -#: include/text.php:1093 src/Model/Event.php:380 +#: include/text.php:1094 src/Model/Event.php:380 msgid "Tuesday" msgstr "Þriðjudagur" -#: include/text.php:1093 src/Model/Event.php:381 +#: include/text.php:1094 src/Model/Event.php:381 msgid "Wednesday" msgstr "Miðvikudagur" -#: include/text.php:1093 src/Model/Event.php:382 +#: include/text.php:1094 src/Model/Event.php:382 msgid "Thursday" msgstr "Fimmtudagur" -#: include/text.php:1093 src/Model/Event.php:383 +#: include/text.php:1094 src/Model/Event.php:383 msgid "Friday" msgstr "Föstudagur" -#: include/text.php:1093 src/Model/Event.php:384 +#: include/text.php:1094 src/Model/Event.php:384 msgid "Saturday" msgstr "Laugardagur" -#: include/text.php:1093 mod/settings.php:943 src/Model/Event.php:378 +#: include/text.php:1094 mod/settings.php:935 src/Model/Event.php:378 msgid "Sunday" msgstr "Sunnudagur" -#: include/text.php:1097 src/Model/Event.php:399 +#: include/text.php:1098 src/Model/Event.php:399 msgid "January" msgstr "Janúar" -#: include/text.php:1097 src/Model/Event.php:400 +#: include/text.php:1098 src/Model/Event.php:400 msgid "February" msgstr "Febrúar" -#: include/text.php:1097 src/Model/Event.php:401 +#: include/text.php:1098 src/Model/Event.php:401 msgid "March" msgstr "Mars" -#: include/text.php:1097 src/Model/Event.php:402 +#: include/text.php:1098 src/Model/Event.php:402 msgid "April" msgstr "Apríl" -#: include/text.php:1097 include/text.php:1114 src/Model/Event.php:390 +#: include/text.php:1098 include/text.php:1115 src/Model/Event.php:390 #: src/Model/Event.php:403 msgid "May" msgstr "Maí" -#: include/text.php:1097 src/Model/Event.php:404 +#: include/text.php:1098 src/Model/Event.php:404 msgid "June" msgstr "Júní" -#: include/text.php:1097 src/Model/Event.php:405 +#: include/text.php:1098 src/Model/Event.php:405 msgid "July" msgstr "Júlí" -#: include/text.php:1097 src/Model/Event.php:406 +#: include/text.php:1098 src/Model/Event.php:406 msgid "August" msgstr "Ágúst" -#: include/text.php:1097 src/Model/Event.php:407 +#: include/text.php:1098 src/Model/Event.php:407 msgid "September" msgstr "September" -#: include/text.php:1097 src/Model/Event.php:408 +#: include/text.php:1098 src/Model/Event.php:408 msgid "October" msgstr "Október" -#: include/text.php:1097 src/Model/Event.php:409 +#: include/text.php:1098 src/Model/Event.php:409 msgid "November" msgstr "Nóvember" -#: include/text.php:1097 src/Model/Event.php:410 +#: include/text.php:1098 src/Model/Event.php:410 msgid "December" msgstr "Desember" -#: include/text.php:1111 src/Model/Event.php:371 +#: include/text.php:1112 src/Model/Event.php:371 msgid "Mon" msgstr "Mán" -#: include/text.php:1111 src/Model/Event.php:372 +#: include/text.php:1112 src/Model/Event.php:372 msgid "Tue" msgstr "Þri" -#: include/text.php:1111 src/Model/Event.php:373 +#: include/text.php:1112 src/Model/Event.php:373 msgid "Wed" msgstr "Mið" -#: include/text.php:1111 src/Model/Event.php:374 +#: include/text.php:1112 src/Model/Event.php:374 msgid "Thu" msgstr "Fim" -#: include/text.php:1111 src/Model/Event.php:375 +#: include/text.php:1112 src/Model/Event.php:375 msgid "Fri" msgstr "Fös" -#: include/text.php:1111 src/Model/Event.php:376 +#: include/text.php:1112 src/Model/Event.php:376 msgid "Sat" msgstr "Lau" -#: include/text.php:1111 src/Model/Event.php:370 +#: include/text.php:1112 src/Model/Event.php:370 msgid "Sun" msgstr "Sun" -#: include/text.php:1114 src/Model/Event.php:386 +#: include/text.php:1115 src/Model/Event.php:386 msgid "Jan" msgstr "Jan" -#: include/text.php:1114 src/Model/Event.php:387 +#: include/text.php:1115 src/Model/Event.php:387 msgid "Feb" msgstr "Feb" -#: include/text.php:1114 src/Model/Event.php:388 +#: include/text.php:1115 src/Model/Event.php:388 msgid "Mar" msgstr "Mar" -#: include/text.php:1114 src/Model/Event.php:389 +#: include/text.php:1115 src/Model/Event.php:389 msgid "Apr" msgstr "Apr" -#: include/text.php:1114 src/Model/Event.php:392 +#: include/text.php:1115 src/Model/Event.php:392 msgid "Jul" msgstr "Júl" -#: include/text.php:1114 src/Model/Event.php:393 +#: include/text.php:1115 src/Model/Event.php:393 msgid "Aug" msgstr "Ágú" -#: include/text.php:1114 +#: include/text.php:1115 msgid "Sep" msgstr "sep" -#: include/text.php:1114 src/Model/Event.php:395 +#: include/text.php:1115 src/Model/Event.php:395 msgid "Oct" msgstr "Okt" -#: include/text.php:1114 src/Model/Event.php:396 +#: include/text.php:1115 src/Model/Event.php:396 msgid "Nov" msgstr "Nóv" -#: include/text.php:1114 src/Model/Event.php:397 +#: include/text.php:1115 src/Model/Event.php:397 msgid "Dec" msgstr "Des" -#: include/text.php:1275 +#: include/text.php:1255 #, php-format msgid "Content warning: %s" msgstr "Viðvörun vegna innihalds: %s" -#: include/text.php:1345 mod/videos.php:380 +#: include/text.php:1325 mod/videos.php:380 msgid "View Video" msgstr "Skoða myndskeið" -#: include/text.php:1362 +#: include/text.php:1342 msgid "bytes" msgstr "bæti" -#: include/text.php:1395 include/text.php:1406 include/text.php:1442 +#: include/text.php:1375 include/text.php:1386 include/text.php:1419 msgid "Click to open/close" msgstr "Smelltu til að opna/loka" -#: include/text.php:1559 +#: include/text.php:1534 msgid "View on separate page" msgstr "Skoða á sérstakri síðu" -#: include/text.php:1560 +#: include/text.php:1535 msgid "view on separate page" msgstr "skoða á sérstakri síðu" -#: include/text.php:1565 include/text.php:1572 src/Model/Event.php:594 +#: include/text.php:1540 include/text.php:1547 src/Model/Event.php:594 msgid "link to source" msgstr "slóð á heimild" -#: include/text.php:1778 +#: include/text.php:1753 msgid "activity" msgstr "virkni" -#: include/text.php:1780 src/Object/Post.php:429 src/Object/Post.php:441 +#: include/text.php:1755 src/Object/Post.php:437 src/Object/Post.php:449 msgid "comment" msgid_plural "comments" msgstr[0] "athugasemd" msgstr[1] "athugasemdir" -#: include/text.php:1783 +#: include/text.php:1758 msgid "post" msgstr "senda" -#: include/text.php:1940 +#: include/text.php:1915 msgid "Item filed" msgstr "Atriði skráð" @@ -1202,7 +1201,7 @@ msgid "No friends to display." msgstr "Engir vinir til að birta." #: mod/allfriends.php:90 mod/suggest.php:101 mod/match.php:105 -#: mod/dirfind.php:215 src/Content/Widget.php:37 src/Model/Profile.php:297 +#: mod/dirfind.php:215 src/Content/Widget.php:37 src/Model/Profile.php:293 msgid "Connect" msgstr "Tengjast" @@ -1224,17 +1223,17 @@ msgid "" " and/or create new posts for you?" msgstr "Vilt þú leyfa þessu forriti að hafa aðgang að færslum og tengiliðum, og/eða stofna nýjar færslur fyrir þig?" -#: mod/api.php:111 mod/dfrn_request.php:653 mod/follow.php:150 -#: mod/profiles.php:636 mod/profiles.php:640 mod/profiles.php:661 -#: mod/register.php:238 mod/settings.php:1105 mod/settings.php:1111 -#: mod/settings.php:1118 mod/settings.php:1122 mod/settings.php:1126 -#: mod/settings.php:1130 mod/settings.php:1134 mod/settings.php:1138 -#: mod/settings.php:1158 mod/settings.php:1159 mod/settings.php:1160 -#: mod/settings.php:1161 mod/settings.php:1162 +#: mod/api.php:111 mod/follow.php:150 mod/dfrn_request.php:648 +#: mod/profiles.php:543 mod/profiles.php:547 mod/profiles.php:568 +#: mod/register.php:239 mod/settings.php:1094 mod/settings.php:1100 +#: mod/settings.php:1107 mod/settings.php:1111 mod/settings.php:1115 +#: mod/settings.php:1119 mod/settings.php:1123 mod/settings.php:1127 +#: mod/settings.php:1147 mod/settings.php:1148 mod/settings.php:1149 +#: mod/settings.php:1150 mod/settings.php:1151 msgid "No" msgstr "Nei" -#: mod/apps.php:14 index.php:245 +#: mod/apps.php:14 index.php:265 msgid "You must be logged in to use addons. " msgstr "Þú verður að vera skráður inn til að geta notað viðbætur. " @@ -1273,117 +1272,8 @@ msgid "" "code or the translation of Friendica. Thank you all!" msgstr "" -#: mod/crepair.php:87 -msgid "Contact settings applied." -msgstr "Stillingar tengiliðs uppfærðar." - -#: mod/crepair.php:89 -msgid "Contact update failed." -msgstr "Uppfærsla tengiliðs mistókst." - -#: mod/crepair.php:110 mod/dfrn_confirm.php:131 mod/fsuggest.php:30 -#: mod/fsuggest.php:96 -msgid "Contact not found." -msgstr "Tengiliður fannst ekki." - -#: mod/crepair.php:114 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "AÐVÖRUN: Þetta er mjög flókið og ef þú setur inn vitlausar upplýsingar þá munu samskipti við þennan tengilið hætta að virka." - -#: mod/crepair.php:115 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Notaðu \"Til baka\" hnappinn núna ef þú ert ekki viss um hvað þú eigir að gera á þessari síðu." - -#: mod/crepair.php:129 mod/crepair.php:131 -msgid "No mirroring" -msgstr "" - -#: mod/crepair.php:129 -msgid "Mirror as forwarded posting" -msgstr "" - -#: mod/crepair.php:129 mod/crepair.php:131 -msgid "Mirror as my own posting" -msgstr "" - -#: mod/crepair.php:144 -msgid "Return to contact editor" -msgstr "Fara til baka í tengiliðasýsl" - -#: mod/crepair.php:146 -msgid "Refetch contact data" -msgstr "" - -#: mod/crepair.php:148 mod/invite.php:150 mod/manage.php:184 -#: mod/localtime.php:56 mod/poke.php:199 mod/fsuggest.php:114 -#: mod/message.php:265 mod/message.php:432 mod/photos.php:1080 -#: mod/photos.php:1160 mod/photos.php:1445 mod/photos.php:1491 -#: mod/photos.php:1530 mod/photos.php:1603 mod/install.php:251 -#: mod/install.php:290 mod/events.php:530 mod/profiles.php:672 -#: mod/contacts.php:610 src/Object/Post.php:796 -#: view/theme/duepuntozero/config.php:71 view/theme/frio/config.php:113 -#: view/theme/quattro/config.php:73 view/theme/vier/config.php:119 -msgid "Submit" -msgstr "Senda inn" - -#: mod/crepair.php:149 -msgid "Remote Self" -msgstr "" - -#: mod/crepair.php:152 -msgid "Mirror postings from this contact" -msgstr "" - -#: mod/crepair.php:154 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "" - -#: mod/crepair.php:158 mod/admin.php:490 mod/admin.php:1781 mod/admin.php:1793 -#: mod/admin.php:1806 mod/admin.php:1822 mod/settings.php:677 -#: mod/settings.php:703 -msgid "Name" -msgstr "Nafn" - -#: mod/crepair.php:159 -msgid "Account Nickname" -msgstr "Gælunafn notanda" - -#: mod/crepair.php:160 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Merkjanafn - yfirskrifar Nafn/Gælunafn" - -#: mod/crepair.php:161 -msgid "Account URL" -msgstr "Heimasíða notanda" - -#: mod/crepair.php:162 -msgid "Friend Request URL" -msgstr "Slóð vinabeiðnar" - -#: mod/crepair.php:163 -msgid "Friend Confirm URL" -msgstr "Slóð vina staðfestingar " - -#: mod/crepair.php:164 -msgid "Notification Endpoint URL" -msgstr "Slóð loka tilkynningar" - -#: mod/crepair.php:165 -msgid "Poll/Feed URL" -msgstr "Slóð á könnun/fréttastraum" - -#: mod/crepair.php:166 -msgid "New photo from this URL" -msgstr "Ný mynd frá slóð" - -#: mod/fbrowser.php:34 src/Content/Nav.php:102 src/Model/Profile.php:904 -#: view/theme/frio/theme.php:261 +#: mod/fbrowser.php:34 view/theme/frio/theme.php:261 src/Content/Nav.php:102 +#: src/Model/Profile.php:902 msgid "Photos" msgstr "Myndir" @@ -1402,8 +1292,8 @@ msgstr "Senda inn" msgid "Files" msgstr "Skrár" -#: mod/fetch.php:16 mod/fetch.php:52 mod/fetch.php:65 mod/help.php:60 -#: mod/p.php:21 mod/p.php:48 mod/p.php:57 index.php:292 +#: mod/fetch.php:16 mod/fetch.php:52 mod/fetch.php:65 mod/p.php:21 +#: mod/p.php:48 mod/p.php:57 mod/help.php:60 index.php:312 msgid "Not Found" msgstr "Fannst ekki" @@ -1411,18 +1301,6 @@ msgstr "Fannst ekki" msgid "No profile" msgstr "Engin forsíða" -#: mod/help.php:48 -msgid "Help:" -msgstr "Hjálp:" - -#: mod/help.php:54 src/Content/Nav.php:134 view/theme/vier/theme.php:298 -msgid "Help" -msgstr "Hjálp" - -#: mod/help.php:63 index.php:297 -msgid "Page not found." -msgstr "Síða fannst ekki." - #: mod/home.php:39 #, php-format msgid "Welcome to %s" @@ -1430,7 +1308,7 @@ msgstr "Velkomin í %s" #: mod/lockview.php:38 mod/lockview.php:46 msgid "Remote privacy information not available." -msgstr "Persónuverndar upplýsingar ekki fyrir hendi á fjarlægum vefþjón." +msgstr "Persónuverndarupplýsingar ekki fyrir hendi á fjartengdum vefþjóni." #: mod/lockview.php:55 msgid "Visible to:" @@ -1471,8 +1349,8 @@ msgid "" " join." msgstr "" -#: mod/newmember.php:19 mod/admin.php:1906 mod/admin.php:2175 -#: mod/settings.php:123 src/Content/Nav.php:206 view/theme/frio/theme.php:269 +#: mod/newmember.php:19 mod/admin.php:1935 mod/admin.php:2204 +#: mod/settings.php:124 view/theme/frio/theme.php:269 src/Content/Nav.php:207 msgid "Settings" msgstr "Stillingar" @@ -1496,13 +1374,13 @@ msgid "" msgstr "Yfirfarðu aðrar stillingar, sérstaklega gagnaleyndarstillingar. Óútgefin forsíða er einsog óskráð símanúmer. Sem þýðir að líklega viltu gefa út forsíðuna þína - nema að allir vinir þínir og tilvonandi vinir viti nákvæmlega hvernig á að finna þig." #: mod/newmember.php:24 mod/profperm.php:113 mod/contacts.php:671 -#: mod/contacts.php:863 src/Content/Nav.php:101 src/Model/Profile.php:730 -#: src/Model/Profile.php:863 src/Model/Profile.php:896 -#: view/theme/frio/theme.php:260 +#: mod/contacts.php:863 view/theme/frio/theme.php:260 src/Content/Nav.php:101 +#: src/Model/Profile.php:728 src/Model/Profile.php:861 +#: src/Model/Profile.php:894 msgid "Profile" msgstr "Forsíða" -#: mod/newmember.php:26 mod/profile_photo.php:249 mod/profiles.php:691 +#: mod/newmember.php:26 mod/profile_photo.php:249 mod/profiles.php:598 msgid "Upload Profile Photo" msgstr "Hlaða upp forsíðu mynd" @@ -1515,7 +1393,7 @@ msgstr "Að hlaða upp forsíðu mynd ef þú hefur ekki þegar gert það. Rann #: mod/newmember.php:27 msgid "Edit Your Profile" -msgstr "" +msgstr "Breyta forsíðunni þinni" #: mod/newmember.php:27 msgid "" @@ -1526,7 +1404,7 @@ msgstr "Breyttu sjálfgefnu forsíðunni einsog þú villt. Yfi #: mod/newmember.php:28 msgid "Profile Keywords" -msgstr "" +msgstr "Stikkorð notandans" #: mod/newmember.php:28 msgid "" @@ -1552,7 +1430,7 @@ msgstr "Fylltu út aðgangsupplýsingar póstfangsins þíns á Tengistillingas #: mod/newmember.php:39 msgid "Go to Your Contacts Page" -msgstr "" +msgstr "Fara yfir á tengiliðasíðuna" #: mod/newmember.php:39 msgid "" @@ -1574,7 +1452,7 @@ msgstr "Tengiliðalistinn er góð leit til að finna fólk á samfélagsnetinu #: mod/newmember.php:41 msgid "Finding New People" -msgstr "" +msgstr "Finna nýtt fólk" #: mod/newmember.php:41 msgid "" @@ -1585,13 +1463,13 @@ msgid "" "hours." msgstr "" -#: mod/newmember.php:43 src/Model/Group.php:401 +#: mod/newmember.php:43 src/Model/Group.php:414 msgid "Groups" msgstr "Hópar" #: mod/newmember.php:45 msgid "Group Your Contacts" -msgstr "" +msgstr "Hópa tengiliðina þína" #: mod/newmember.php:45 msgid "" @@ -1602,14 +1480,14 @@ msgstr "Eftir að þú hefur eignast nokkra vini, þá er best að flokka þá n #: mod/newmember.php:48 msgid "Why Aren't My Posts Public?" -msgstr "" +msgstr "Hvers vegna eru færslurnar mínar ekki opinberar?" #: mod/newmember.php:48 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 "" +msgstr "Friendica virðir gagnaleynd þína. Sjálfgefið er að færslurnar þínar birtast einungis þeim sem þú hefur bætt við sem vinum. Til að sjá nánari upplýsingar, skoðaðu þá hjálparhlutann með því að smella á tengilinn hér fyrir ofan." #: mod/newmember.php:52 msgid "Getting Help" @@ -1617,7 +1495,7 @@ msgstr "Til að fá hjálp" #: mod/newmember.php:54 msgid "Go to the Help Section" -msgstr "" +msgstr "Fara í hjálparhlutann" #: mod/newmember.php:54 msgid "" @@ -1637,7 +1515,7 @@ msgstr "Breyta tengilið" #: mod/nogroup.php:63 msgid "Contacts who are not members of a group" -msgstr "" +msgstr "Tengiliðir sem ekki eru í neinum hópi" #: mod/p.php:14 msgid "Not Extended" @@ -1657,11 +1535,11 @@ msgstr "Lokið" #: mod/repair_ostatus.php:54 mod/ostatus_subscribe.php:88 msgid "Keep this window open until done." -msgstr "" +msgstr "Halda þessum glugga opnum þar til öllu er lokið." #: mod/suggest.php:36 msgid "Do you really want to delete this suggestion?" -msgstr "" +msgstr "Viltu örugglega eyða þessari tillögu?" #: mod/suggest.php:73 msgid "" @@ -1673,17 +1551,22 @@ msgstr "Engar uppástungur tiltækar. Ef þetta er nýr vefur, reyndu þá aftur msgid "Ignore/Hide" msgstr "Hunsa/Fela" -#: mod/suggest.php:114 src/Content/Widget.php:64 view/theme/vier/theme.php:203 +#: mod/suggest.php:114 view/theme/vier/theme.php:204 src/Content/Widget.php:64 msgid "Friend Suggestions" msgstr "Vina uppástungur" -#: mod/uimport.php:55 mod/register.php:191 +#: mod/update_community.php:27 mod/update_display.php:27 +#: mod/update_notes.php:40 mod/update_profile.php:39 mod/update_network.php:33 +msgid "[Embedded content - reload page to view]" +msgstr "[Innfelt efni - endurhlaða síðu til að sjá]" + +#: mod/uimport.php:55 mod/register.php:192 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "Þessi vefur hefur náð hámarks fjölda daglegra nýskráninga. Reyndu aftur á morgun." -#: mod/uimport.php:70 mod/register.php:285 +#: mod/uimport.php:70 mod/register.php:288 msgid "Import" msgstr "Flytja inn" @@ -1693,7 +1576,7 @@ msgstr "Flytja aðgang" #: mod/uimport.php:73 msgid "You can import an account from another Friendica server." -msgstr "" +msgstr "Þú getur flutt inn notandaaðgang frá öðrum Friendica-þjóni." #: mod/uimport.php:74 msgid "" @@ -1710,7 +1593,7 @@ msgstr "" #: mod/uimport.php:76 msgid "Account file" -msgstr "" +msgstr "Notandaaðgangsskrá" #: mod/uimport.php:76 msgid "" @@ -1718,16 +1601,6 @@ msgid "" "select \"Export account\"" msgstr "" -#: mod/update_community.php:27 mod/update_display.php:27 -#: mod/update_notes.php:40 mod/update_profile.php:39 mod/update_network.php:33 -msgid "[Embedded content - reload page to view]" -msgstr "[Innfelt efni - endurhlaða síðu til að sjá]" - -#: mod/dfrn_poll.php:123 mod/dfrn_poll.php:543 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "" - #: mod/match.php:48 msgid "No keywords to match. Please add keywords to your default profile." msgstr "Engin leitarorð. Bættu við leitarorðum í sjálfgefnu forsíðuna." @@ -1744,400 +1617,6 @@ msgstr "Forsíða fannst" msgid "No matches" msgstr "Engar leitarniðurstöður" -#: mod/notifications.php:37 -msgid "Invalid request identifier." -msgstr "Ógilt auðkenni beiðnar." - -#: mod/notifications.php:46 mod/notifications.php:183 -#: mod/notifications.php:230 -msgid "Discard" -msgstr "Henda" - -#: mod/notifications.php:62 mod/notifications.php:182 -#: mod/notifications.php:266 mod/contacts.php:638 mod/contacts.php:828 -#: mod/contacts.php:1019 -msgid "Ignore" -msgstr "Hunsa" - -#: mod/notifications.php:98 src/Content/Nav.php:189 -msgid "Notifications" -msgstr "Tilkynningar" - -#: mod/notifications.php:107 -msgid "Network Notifications" -msgstr "Tilkynningar á neti" - -#: mod/notifications.php:113 mod/notify.php:81 -msgid "System Notifications" -msgstr "Kerfistilkynningar" - -#: mod/notifications.php:119 -msgid "Personal Notifications" -msgstr "Einkatilkynningar." - -#: mod/notifications.php:125 -msgid "Home Notifications" -msgstr "Tilkynningar frá heimasvæði" - -#: mod/notifications.php:155 -msgid "Show Ignored Requests" -msgstr "Sýna hunsaðar beiðnir" - -#: mod/notifications.php:155 -msgid "Hide Ignored Requests" -msgstr "Fela hunsaðar beiðnir" - -#: mod/notifications.php:167 mod/notifications.php:237 -msgid "Notification type: " -msgstr "Gerð skilaboða: " - -#: mod/notifications.php:170 -#, php-format -msgid "suggested by %s" -msgstr "stungið uppá af %s" - -#: mod/notifications.php:175 mod/notifications.php:254 mod/contacts.php:646 -msgid "Hide this contact from others" -msgstr "Gera þennan notanda ósýnilegan öðrum" - -#: mod/notifications.php:176 mod/notifications.php:255 -msgid "Post a new friend activity" -msgstr "Búa til færslu um nýjan vin" - -#: mod/notifications.php:176 mod/notifications.php:255 -msgid "if applicable" -msgstr "ef við á" - -#: mod/notifications.php:179 mod/notifications.php:264 mod/admin.php:1796 -msgid "Approve" -msgstr "Samþykkja" - -#: mod/notifications.php:198 -msgid "Claims to be known to you: " -msgstr "Þykist þekkja þig:" - -#: mod/notifications.php:199 -msgid "yes" -msgstr "já" - -#: mod/notifications.php:199 -msgid "no" -msgstr "nei" - -#: mod/notifications.php:200 mod/notifications.php:205 -msgid "Shall your connection be bidirectional or not?" -msgstr "" - -#: mod/notifications.php:201 mod/notifications.php:206 -#, 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 "" - -#: mod/notifications.php:202 -#, 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 "" - -#: mod/notifications.php:207 -#, php-format -msgid "" -"Accepting %s as a sharer allows them to subscribe to your posts, but you " -"will not receive updates from them in your news feed." -msgstr "" - -#: mod/notifications.php:218 -msgid "Friend" -msgstr "Vin" - -#: mod/notifications.php:219 -msgid "Sharer" -msgstr "Deilir" - -#: mod/notifications.php:219 -msgid "Subscriber" -msgstr "Áskrifandi" - -#: mod/notifications.php:247 mod/events.php:518 mod/directory.php:148 -#: mod/contacts.php:660 src/Model/Profile.php:417 src/Model/Event.php:60 -#: src/Model/Event.php:85 src/Model/Event.php:421 src/Model/Event.php:900 -msgid "Location:" -msgstr "Staðsetning:" - -#: mod/notifications.php:249 mod/directory.php:154 mod/contacts.php:664 -#: src/Model/Profile.php:423 src/Model/Profile.php:806 -msgid "About:" -msgstr "Um:" - -#: mod/notifications.php:251 mod/follow.php:174 mod/contacts.php:666 -#: src/Model/Profile.php:794 -msgid "Tags:" -msgstr "Merki:" - -#: mod/notifications.php:253 mod/directory.php:151 src/Model/Profile.php:420 -#: src/Model/Profile.php:745 -msgid "Gender:" -msgstr "Kyn:" - -#: mod/notifications.php:258 mod/unfollow.php:122 mod/follow.php:166 -#: mod/contacts.php:656 mod/admin.php:490 mod/admin.php:500 -msgid "Profile URL" -msgstr "Slóð á forsíðu" - -#: mod/notifications.php:261 mod/contacts.php:71 src/Model/Profile.php:518 -msgid "Network:" -msgstr "Netkerfi:" - -#: mod/notifications.php:275 -msgid "No introductions." -msgstr "Engar kynningar." - -#: mod/notifications.php:316 -msgid "Show unread" -msgstr "Birta ólesið" - -#: mod/notifications.php:316 -msgid "Show all" -msgstr "Birta allt" - -#: mod/notifications.php:322 -#, php-format -msgid "No more %s notifications." -msgstr "Ekki fleiri %s tilkynningar." - -#: mod/openid.php:29 -msgid "OpenID protocol error. No ID returned." -msgstr "Samskiptavilla í OpenID. Ekkert auðkenni barst." - -#: mod/openid.php:66 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "" - -#: mod/openid.php:116 src/Module/Login.php:86 src/Module/Login.php:134 -msgid "Login failed." -msgstr "Innskráning mistókst." - -#: mod/dfrn_confirm.php:74 mod/profiles.php:39 mod/profiles.php:149 -#: mod/profiles.php:196 mod/profiles.php:618 -msgid "Profile not found." -msgstr "Forsíða fannst ekki." - -#: mod/dfrn_confirm.php:132 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "" - -#: mod/dfrn_confirm.php:242 -msgid "Response from remote site was not understood." -msgstr "Ekki tókst að skilja svar frá ytri vef." - -#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "Óskiljanlegt svar frá ytri vef:" - -#: mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "Staðfesting kláraði eðlilega." - -#: mod/dfrn_confirm.php:275 -msgid "Temporary failure. Please wait and try again." -msgstr "Tímabundin villa. Bíddu aðeins og reyndu svo aftur." - -#: mod/dfrn_confirm.php:278 -msgid "Introduction failed or was revoked." -msgstr "Kynning mistókst eða var afturkölluð." - -#: mod/dfrn_confirm.php:283 -msgid "Remote site reported: " -msgstr "Ytri vefur svaraði:" - -#: mod/dfrn_confirm.php:396 -msgid "Unable to set contact photo." -msgstr "Ekki tókst að setja tengiliðamynd." - -#: mod/dfrn_confirm.php:498 -#, php-format -msgid "No user record found for '%s' " -msgstr "Engin notandafærsla fannst fyrir '%s'" - -#: mod/dfrn_confirm.php:508 -msgid "Our site encryption key is apparently messed up." -msgstr "Dulkóðunnar lykill síðunnar okker er í döðlu." - -#: mod/dfrn_confirm.php:519 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "Tómt slóð var uppgefin eða ekki okkur tókst ekki að afkóða slóð." - -#: mod/dfrn_confirm.php:535 -msgid "Contact record was not found for you on our site." -msgstr "Tengiliðafærslan þín fannst ekki á þjóninum okkar." - -#: mod/dfrn_confirm.php:549 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "Opinber lykill er ekki til í tengiliðafærslu fyrir slóð %s." - -#: mod/dfrn_confirm.php:565 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "Skilríkið sem þjónninn þinn gaf upp er þegar afritað á okkar þjón. Þetta ætti að virka ef þú bara reynir aftur." - -#: mod/dfrn_confirm.php:576 -msgid "Unable to set your contact credentials on our system." -msgstr "Ekki tókst að setja tengiliða skilríkið þitt upp á þjóninum okkar." - -#: mod/dfrn_confirm.php:631 -msgid "Unable to update your contact profile details on our system" -msgstr "Ekki tókst að uppfæra tengiliða skilríkis upplýsingarnar á okkar þjón" - -#: mod/dfrn_confirm.php:661 mod/dfrn_request.php:568 -#: src/Model/Contact.php:1520 -msgid "[Name Withheld]" -msgstr "[Nafn ekki sýnt]" - -#: mod/dfrn_confirm.php:694 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s hefur gengið til liðs við %2$s" - -#: mod/invite.php:33 -msgid "Total invitation limit exceeded." -msgstr "" - -#: mod/invite.php:55 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Ekki gilt póstfang" - -#: mod/invite.php:80 -msgid "Please join us on Friendica" -msgstr "Komdu í hópinn á Friendica" - -#: mod/invite.php:91 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "" - -#: mod/invite.php:95 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Skilaboð komust ekki til skila." - -#: mod/invite.php:99 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d skilaboð send." -msgstr[1] "%d skilaboð send" - -#: mod/invite.php:117 -msgid "You have no more invitations available" -msgstr "Þú hefur ekki fleiri boðskort." - -#: mod/invite.php:125 -#, 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 "" - -#: mod/invite.php:127 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "" - -#: mod/invite.php:128 -#, 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 "" - -#: mod/invite.php:132 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "" - -#: mod/invite.php:136 -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 "" - -#: mod/invite.php:135 -#, php-format -msgid "To accept this invitation, please visit and register at %s." -msgstr "" - -#: mod/invite.php:142 -msgid "Send invitations" -msgstr "Senda kynningar" - -#: mod/invite.php:143 -msgid "Enter email addresses, one per line:" -msgstr "Póstföng, eitt í hverja línu:" - -#: mod/invite.php:144 mod/wallmessage.php:141 mod/message.php:259 -#: mod/message.php:426 -msgid "Your message:" -msgstr "Skilaboðin:" - -#: mod/invite.php:145 -msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "" - -#: mod/invite.php:147 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Þú þarft að nota eftirfarandi boðskorta auðkenni: $invite_code" - -#: mod/invite.php:147 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Þegar þú hefur nýskráð þig, hafðu samband við mig gegnum síðuna mína á:" - -#: mod/invite.php:149 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendi.ca" -msgstr "" - -#: mod/wall_attach.php:24 mod/wall_attach.php:32 mod/wall_attach.php:83 -#: mod/wall_upload.php:38 mod/wall_upload.php:54 mod/wall_upload.php:112 -#: mod/wall_upload.php:155 mod/wall_upload.php:158 -msgid "Invalid request." -msgstr "Ógild fyrirspurn." - -#: mod/wall_attach.php:101 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "" - -#: mod/wall_attach.php:101 -msgid "Or - did you try to upload an empty file?" -msgstr "" - -#: mod/wall_attach.php:112 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "" - -#: mod/wall_attach.php:136 mod/wall_attach.php:152 -msgid "File upload failed." -msgstr "Skráar upphlöðun mistókst." - #: mod/manage.php:180 msgid "Manage Identities and/or Pages" msgstr "Sýsla með notendur og/eða síður" @@ -2152,191 +1631,44 @@ msgstr "Skipta á milli auðkenna eða hópa- / stjörnunotanda sem deila þínu msgid "Select an identity to manage: " msgstr "Veldu notanda til að sýsla með:" -#: mod/dfrn_request.php:94 -msgid "This introduction has already been accepted." -msgstr "Þessi kynning hefur þegar verið samþykkt." +#: mod/manage.php:184 mod/localtime.php:56 mod/poke.php:199 +#: mod/fsuggest.php:114 mod/photos.php:1080 mod/photos.php:1160 +#: mod/photos.php:1445 mod/photos.php:1491 mod/photos.php:1530 +#: mod/photos.php:1603 mod/contacts.php:610 mod/events.php:530 +#: mod/invite.php:154 mod/crepair.php:148 mod/install.php:198 +#: mod/install.php:237 mod/message.php:246 mod/message.php:413 +#: mod/profiles.php:579 view/theme/duepuntozero/config.php:71 +#: view/theme/frio/config.php:118 view/theme/quattro/config.php:73 +#: view/theme/vier/config.php:119 src/Object/Post.php:804 +msgid "Submit" +msgstr "Senda inn" -#: mod/dfrn_request.php:112 mod/dfrn_request.php:359 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Forsíðu slóð er ekki í lagi eða inniheldur ekki forsíðu upplýsingum." +#: mod/wall_attach.php:24 mod/wall_attach.php:32 mod/wall_attach.php:83 +#: mod/wall_upload.php:38 mod/wall_upload.php:54 mod/wall_upload.php:112 +#: mod/wall_upload.php:155 mod/wall_upload.php:158 +msgid "Invalid request." +msgstr "Ógild fyrirspurn." -#: mod/dfrn_request.php:116 mod/dfrn_request.php:363 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Aðvörun: forsíðu staðsetning hefur ekki aðgreinanlegt eigendanafn." - -#: mod/dfrn_request.php:119 mod/dfrn_request.php:366 -msgid "Warning: profile location has no profile photo." -msgstr "Aðvörun: forsíðu slóð hefur ekki forsíðu mynd." - -#: mod/dfrn_request.php:123 mod/dfrn_request.php:370 -#, 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] "%d skilyrt breyta fannst ekki á uppgefinni staðsetningu" -msgstr[1] "%d skilyrtar breytur fundust ekki á uppgefninni staðsetningu" - -#: mod/dfrn_request.php:162 -msgid "Introduction complete." -msgstr "Kynning tilbúinn." - -#: mod/dfrn_request.php:199 -msgid "Unrecoverable protocol error." -msgstr "Alvarleg samskipta villa." - -#: mod/dfrn_request.php:226 -msgid "Profile unavailable." -msgstr "Ekki hægt að sækja forsíðu" - -#: mod/dfrn_request.php:248 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s hefur fengið of margar tengibeiðnir í dag." - -#: mod/dfrn_request.php:249 -msgid "Spam protection measures have been invoked." -msgstr "Kveikt hefur verið á ruslsíu" - -#: mod/dfrn_request.php:250 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Vinir eru beðnir um að reyna aftur eftir 24 klukkustundir." - -#: mod/dfrn_request.php:280 -msgid "Invalid locator" -msgstr "Ógild staðsetning" - -#: mod/dfrn_request.php:316 -msgid "You have already introduced yourself here." -msgstr "Kynning hefur þegar átt sér stað hér." - -#: mod/dfrn_request.php:319 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Þú ert þegar vinur %s." - -#: mod/dfrn_request.php:339 -msgid "Invalid profile URL." -msgstr "Ógild forsíðu slóð." - -#: mod/dfrn_request.php:345 src/Model/Contact.php:1223 -msgid "Disallowed profile URL." -msgstr "Óleyfileg forsíðu slóð." - -#: mod/dfrn_request.php:351 mod/friendica.php:128 mod/admin.php:353 -#: mod/admin.php:371 src/Model/Contact.php:1228 -msgid "Blocked domain" -msgstr "Útilokað lén" - -#: mod/dfrn_request.php:419 mod/contacts.php:230 -msgid "Failed to update contact record." -msgstr "Ekki tókst að uppfæra tengiliðs skrá." - -#: mod/dfrn_request.php:439 -msgid "Your introduction has been sent." -msgstr "Kynningin þín hefur verið send." - -#: mod/dfrn_request.php:477 -msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." +#: mod/wall_attach.php:101 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" msgstr "" -#: mod/dfrn_request.php:493 -msgid "Please login to confirm introduction." -msgstr "Skráðu þig inn til að staðfesta kynningu." +#: mod/wall_attach.php:101 +msgid "Or - did you try to upload an empty file?" +msgstr "Eða - reyndirðu að senda inn tóma skrá?" -#: mod/dfrn_request.php:501 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Ekki réttur notandi skráður inn. Skráðu þig inn sem þessi notandi." - -#: mod/dfrn_request.php:515 mod/dfrn_request.php:532 -msgid "Confirm" -msgstr "Staðfesta" - -#: mod/dfrn_request.php:527 -msgid "Hide this contact" -msgstr "Fela þennan tengilið" - -#: mod/dfrn_request.php:530 +#: mod/wall_attach.php:112 #, php-format -msgid "Welcome home %s." -msgstr "Velkomin(n) heim %s." +msgid "File exceeds size limit of %s" +msgstr "Skrá fer leyfileg takmörk sem eru %s" -#: mod/dfrn_request.php:531 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Staðfestu kynninguna/tengibeiðnina við %s." +#: mod/wall_attach.php:136 mod/wall_attach.php:152 +msgid "File upload failed." +msgstr "Skráar upphlöðun mistókst." -#: mod/dfrn_request.php:607 mod/probe.php:13 mod/viewcontacts.php:45 -#: mod/webfinger.php:16 mod/search.php:98 mod/search.php:104 -#: mod/community.php:27 mod/photos.php:932 mod/videos.php:199 -#: mod/display.php:203 mod/directory.php:42 -msgid "Public access denied." -msgstr "Alemennings aðgangur ekki veittur." - -#: mod/dfrn_request.php:642 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Settu inn 'Auðkennisnetfang' þitt úr einhverjum af eftirfarandi samskiptanetum:" - -#: mod/dfrn_request.php:645 -#, php-format -msgid "" -"If you are not yet a member of the free social web, follow " -"this link to find a public Friendica site and join us today." -msgstr "" - -#: mod/dfrn_request.php:650 -msgid "Friend/Connection Request" -msgstr "Vinabeiðni/Tengibeiðni" - -#: mod/dfrn_request.php:651 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@gnusocial.de" -msgstr "" - -#: mod/dfrn_request.php:652 mod/follow.php:149 -msgid "Please answer the following:" -msgstr "Vinnsamlegast svaraðu eftirfarandi:" - -#: mod/dfrn_request.php:653 mod/follow.php:150 -#, php-format -msgid "Does %s know you?" -msgstr "Þekkir %s þig?" - -#: mod/dfrn_request.php:654 mod/follow.php:151 -msgid "Add a personal note:" -msgstr "Bæta við persónulegri athugasemd" - -#: mod/dfrn_request.php:656 src/Content/ContactSelector.php:79 -msgid "Friendica" -msgstr "Friendica" - -#: mod/dfrn_request.php:657 -msgid "GNU Social (Pleroma, Mastodon)" -msgstr "GNU Social (Pleroma, Mastodon)" - -#: mod/dfrn_request.php:658 -msgid "Diaspora (Socialhome, Hubzilla)" -msgstr "Diaspora (Socialhome, Hubzilla)" - -#: mod/dfrn_request.php:659 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr "" - -#: mod/dfrn_request.php:660 mod/unfollow.php:113 mod/follow.php:157 -msgid "Your Identity Address:" -msgstr "Auðkennisnetfang þitt:" - -#: mod/dfrn_request.php:662 mod/unfollow.php:65 mod/follow.php:62 -msgid "Submit Request" -msgstr "Senda beiðni" +#: mod/filer.php:34 +msgid "- select -" +msgstr "- veldu -" #: mod/localtime.php:19 src/Model/Event.php:36 src/Model/Event.php:814 msgid "l F d, Y \\@ g:i A" @@ -2371,11 +1703,58 @@ msgstr "Umbreyttur staðartími: %s" msgid "Please select your timezone:" msgstr "Veldu tímabeltið þitt:" +#: mod/notify.php:77 +msgid "No more system notifications." +msgstr "Ekki fleiri kerfistilkynningar." + +#: mod/notify.php:81 mod/notifications.php:113 +msgid "System Notifications" +msgstr "Kerfistilkynningar" + +#: mod/ping.php:292 +msgid "{0} wants to be your friend" +msgstr "{0} vill vera vinur þinn" + +#: mod/ping.php:307 +msgid "{0} sent you a message" +msgstr "{0} sendi þér skilboð" + +#: mod/ping.php:322 +msgid "{0} requested registration" +msgstr "{0} óskaði eftir skráningu" + +#: mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Pota/Ýta" + +#: mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "pota, ýta eða gera eitthvað við einhvern" + +#: mod/poke.php:194 +msgid "Recipient" +msgstr "Viðtakandi" + +#: mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "" + +#: mod/poke.php:198 +msgid "Make this post private" +msgstr "Gera þessa færslu einka" + +#: mod/probe.php:13 mod/search.php:98 mod/search.php:104 +#: mod/viewcontacts.php:45 mod/webfinger.php:16 mod/photos.php:932 +#: mod/videos.php:199 mod/directory.php:42 mod/community.php:27 +#: mod/dfrn_request.php:602 mod/display.php:203 +msgid "Public access denied." +msgstr "Opinber aðgangur ekki veittur." + #: mod/probe.php:14 mod/webfinger.php:17 msgid "Only logged in users are permitted to perform a probing." msgstr "" -#: mod/profperm.php:28 mod/group.php:83 index.php:415 +#: mod/profperm.php:28 mod/group.php:83 index.php:435 msgid "Permission denied" msgstr "Bannaður aðgangur" @@ -2412,28 +1791,113 @@ msgstr "Skráning afturköllurð vegna %s" msgid "Please login." msgstr "Skráðu yður inn." -#: mod/removeme.php:55 mod/removeme.php:58 -msgid "Remove My Account" -msgstr "Eyða þessum notanda" +#: mod/search.php:37 mod/network.php:194 +msgid "Remove term" +msgstr "Fjarlæga gildi" -#: mod/removeme.php:56 +#: mod/search.php:46 mod/network.php:201 src/Content/Feature.php:100 +msgid "Saved Searches" +msgstr "Vistaðar leitir" + +#: mod/search.php:105 +msgid "Only logged in users are permitted to perform a search." +msgstr "Aðeins innskráðir notendur geta framkvæmt leit." + +#: mod/search.php:129 +msgid "Too Many Requests" +msgstr "Of margar beiðnir" + +#: mod/search.php:130 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "Notendur sem ekki eru innskráðir geta aðeins framkvæmt eina leit á mínútu." + +#: mod/search.php:228 mod/community.php:141 +msgid "No results." +msgstr "Engar leitarniðurstöður." + +#: mod/search.php:234 +#, php-format +msgid "Items tagged with: %s" +msgstr "Atriði merkt með: %s" + +#: mod/search.php:236 mod/contacts.php:819 +#, php-format +msgid "Results for: %s" +msgstr "Niðurstöður fyrir: %s" + +#: mod/subthread.php:113 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s fylgist með %3$s hjá %2$s" + +#: mod/tagrm.php:47 +msgid "Tag removed" +msgstr "Merki fjarlægt" + +#: mod/tagrm.php:85 +msgid "Remove Item Tag" +msgstr "Fjarlægja merki " + +#: mod/tagrm.php:87 +msgid "Select a tag to remove: " +msgstr "Veldu merki til að fjarlægja:" + +#: mod/tagrm.php:98 mod/delegate.php:177 +msgid "Remove" +msgstr "Fjarlægja" + +#: mod/uexport.php:44 +msgid "Export account" +msgstr "Flytja út notandaaðgang" + +#: mod/uexport.php:44 msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Þetta mun algjörlega eyða notandanum. Þegar þetta hefur verið gert er þetta ekki afturkræft." +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "" -#: mod/removeme.php:57 -msgid "Please enter your password for verification:" -msgstr "Sláðu inn aðgangsorð yðar:" +#: mod/uexport.php:45 +msgid "Export all" +msgstr "Flytja út allt" + +#: mod/uexport.php:45 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "" + +#: mod/uexport.php:52 mod/settings.php:108 +msgid "Export personal data" +msgstr "Sækja persónuleg gögn" #: mod/viewcontacts.php:87 msgid "No contacts." msgstr "Enginn tengiliður" -#: mod/viewsrc.php:12 +#: mod/viewsrc.php:12 mod/community.php:34 msgid "Access denied." msgstr "Aðgangi hafnað." +#: mod/wall_upload.php:186 mod/photos.php:763 mod/photos.php:766 +#: mod/photos.php:795 mod/profile_photo.php:153 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "" + +#: mod/wall_upload.php:200 mod/photos.php:818 mod/profile_photo.php:162 +msgid "Unable to process image." +msgstr "Ekki mögulegt afgreiða mynd" + +#: mod/wall_upload.php:231 mod/item.php:471 src/Object/Image.php:953 +#: src/Object/Image.php:969 src/Object/Image.php:977 src/Object/Image.php:1002 +msgid "Wall Photos" +msgstr "Veggmyndir" + +#: mod/wall_upload.php:239 mod/photos.php:847 mod/profile_photo.php:307 +msgid "Image upload failed." +msgstr "Ekki hægt að hlaða upp mynd." + #: mod/wallmessage.php:49 mod/wallmessage.php:112 #, php-format msgid "Number of daily wall messages for %s exceeded. Message failed." @@ -2463,7 +1927,7 @@ msgstr "Skilaboð send." msgid "No recipient." msgstr "Enginn viðtakandi" -#: mod/wallmessage.php:132 mod/message.php:250 +#: mod/wallmessage.php:132 mod/message.php:231 msgid "Send Private Message" msgstr "Senda einkaskilaboð" @@ -2474,154 +1938,20 @@ msgid "" "your site allow private mail from unknown senders." msgstr "" -#: mod/wallmessage.php:134 mod/message.php:251 mod/message.php:421 +#: mod/wallmessage.php:134 mod/message.php:232 mod/message.php:402 msgid "To:" msgstr "Til:" -#: mod/wallmessage.php:135 mod/message.php:255 mod/message.php:423 +#: mod/wallmessage.php:135 mod/message.php:236 mod/message.php:404 msgid "Subject:" msgstr "Efni:" -#: mod/uexport.php:44 -msgid "Export account" -msgstr "Flytja út notandaaðgang" +#: mod/wallmessage.php:141 mod/invite.php:149 mod/message.php:240 +#: mod/message.php:407 +msgid "Your message:" +msgstr "Skilaboðin:" -#: mod/uexport.php:44 -msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." -msgstr "" - -#: mod/uexport.php:45 -msgid "Export all" -msgstr "Flytja út allt" - -#: mod/uexport.php:45 -msgid "" -"Export your accout info, contacts and all your items as json. Could be a " -"very big file, and could take a lot of time. Use this to make a full backup " -"of your account (photos are not exported)" -msgstr "" - -#: mod/uexport.php:52 mod/settings.php:107 -msgid "Export personal data" -msgstr "Sækja persónuleg gögn" - -#: mod/filer.php:34 -msgid "- select -" -msgstr "- veldu -" - -#: mod/notify.php:77 -msgid "No more system notifications." -msgstr "Ekki fleiri kerfistilkynningar." - -#: mod/ping.php:292 -msgid "{0} wants to be your friend" -msgstr "{0} vill vera vinur þinn" - -#: mod/ping.php:307 -msgid "{0} sent you a message" -msgstr "{0} sendi þér skilboð" - -#: mod/ping.php:322 -msgid "{0} requested registration" -msgstr "{0} óskaði eftir skráningu" - -#: mod/poke.php:192 -msgid "Poke/Prod" -msgstr "" - -#: mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "" - -#: mod/poke.php:194 -msgid "Recipient" -msgstr "Viðtakandi" - -#: mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "" - -#: mod/poke.php:198 -msgid "Make this post private" -msgstr "Gera þennan póst einka" - -#: mod/subthread.php:113 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "" - -#: mod/tagrm.php:47 -msgid "Tag removed" -msgstr "Merki fjarlægt" - -#: mod/tagrm.php:85 -msgid "Remove Item Tag" -msgstr "Fjarlægja merki " - -#: mod/tagrm.php:87 -msgid "Select a tag to remove: " -msgstr "Veldu merki til að fjarlægja:" - -#: mod/tagrm.php:98 mod/delegate.php:177 -msgid "Remove" -msgstr "Fjarlægja" - -#: mod/wall_upload.php:186 mod/photos.php:763 mod/photos.php:766 -#: mod/photos.php:795 mod/profile_photo.php:153 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "" - -#: mod/wall_upload.php:200 mod/photos.php:818 mod/profile_photo.php:162 -msgid "Unable to process image." -msgstr "Ekki mögulegt afgreiða mynd" - -#: mod/wall_upload.php:231 mod/item.php:471 src/Object/Image.php:953 -#: src/Object/Image.php:969 src/Object/Image.php:977 src/Object/Image.php:1002 -msgid "Wall Photos" -msgstr "Veggmyndir" - -#: mod/wall_upload.php:239 mod/photos.php:847 mod/profile_photo.php:307 -msgid "Image upload failed." -msgstr "Ekki hægt að hlaða upp mynd." - -#: mod/search.php:37 mod/network.php:194 -msgid "Remove term" -msgstr "Fjarlæga gildi" - -#: mod/search.php:46 mod/network.php:201 src/Content/Feature.php:100 -msgid "Saved Searches" -msgstr "Vistaðar leitir" - -#: mod/search.php:105 -msgid "Only logged in users are permitted to perform a search." -msgstr "Aðeins innskráðir notendur geta framkvæmt leit." - -#: mod/search.php:129 -msgid "Too Many Requests" -msgstr "Of margar beiðnir" - -#: mod/search.php:130 -msgid "Only one search per minute is permitted for not logged in users." -msgstr "Notendur sem ekki eru innskráðir geta aðeins framkvæmt eina leit á mínútu." - -#: mod/search.php:228 mod/community.php:136 -msgid "No results." -msgstr "Engar leitarniðurstöður." - -#: mod/search.php:234 -#, php-format -msgid "Items tagged with: %s" -msgstr "Atriði merkt með: %s" - -#: mod/search.php:236 mod/contacts.php:819 -#, php-format -msgid "Results for: %s" -msgstr "Niðurstöður fyrir: %s" - -#: mod/bookmarklet.php:23 src/Content/Nav.php:114 src/Module/Login.php:312 +#: mod/bookmarklet.php:23 src/Content/Nav.php:114 src/Module/Login.php:313 msgid "Login" msgstr "Innskráning" @@ -2629,36 +1959,6 @@ msgstr "Innskráning" msgid "The post was created" msgstr "" -#: mod/community.php:46 -msgid "Community option not available." -msgstr "" - -#: mod/community.php:63 -msgid "Not available." -msgstr "Ekki tiltækt." - -#: mod/community.php:76 -msgid "Local Community" -msgstr "" - -#: mod/community.php:79 -msgid "Posts from local users on this server" -msgstr "" - -#: mod/community.php:87 -msgid "Global Community" -msgstr "" - -#: mod/community.php:90 -msgid "Posts from users of the whole federated network" -msgstr "" - -#: mod/community.php:180 -msgid "" -"This community stream shows all public posts received by this node. They may" -" not reflect the opinions of this node’s users." -msgstr "" - #: mod/editpost.php:25 mod/editpost.php:35 msgid "Item not found" msgstr "Atriði fannst ekki" @@ -2675,13 +1975,10 @@ msgstr "CC: tölvupóstfang" msgid "Example: bob@example.com, mary@example.com" msgstr "Dæmi: bibbi@vefur.is, mgga@vefur.is" -#: mod/feedtest.php:20 -msgid "You must be logged in to use this module" -msgstr "" - -#: mod/feedtest.php:48 -msgid "Source URL" -msgstr "Upprunaslóð" +#: mod/fsuggest.php:30 mod/fsuggest.php:96 mod/crepair.php:110 +#: mod/dfrn_confirm.php:129 +msgid "Contact not found." +msgstr "Tengiliður fannst ekki." #: mod/fsuggest.php:72 msgid "Friend suggestion sent." @@ -2696,275 +1993,11 @@ msgstr "Stinga uppá vinum" msgid "Suggest a friend for %s" msgstr "Stinga uppá vin fyrir %s" -#: mod/group.php:36 -msgid "Group created." -msgstr "Hópur stofnaður" - -#: mod/group.php:42 -msgid "Could not create group." -msgstr "Gat ekki stofnað hóp." - -#: mod/group.php:56 mod/group.php:157 -msgid "Group not found." -msgstr "Hópur fannst ekki." - -#: mod/group.php:70 -msgid "Group name changed." -msgstr "Hópur endurskýrður." - -#: mod/group.php:97 -msgid "Save Group" -msgstr "Vista hóp" - -#: mod/group.php:102 -msgid "Create a group of contacts/friends." -msgstr "Stofna hóp af tengiliðum/vinum" - -#: mod/group.php:103 mod/group.php:199 src/Model/Group.php:408 -msgid "Group Name: " -msgstr "Nafn hóps: " - -#: mod/group.php:127 -msgid "Group removed." -msgstr "Hópi eytt." - -#: mod/group.php:129 -msgid "Unable to remove group." -msgstr "Ekki tókst að eyða hóp." - -#: mod/group.php:192 -msgid "Delete Group" -msgstr "Eyða hópi" - -#: mod/group.php:198 -msgid "Group Editor" -msgstr "Hópa sýslari" - -#: mod/group.php:203 -msgid "Edit Group Name" -msgstr "Breyta nafni hóps" - -#: mod/group.php:213 -msgid "Members" -msgstr "Meðlimir" - -#: mod/group.php:215 mod/contacts.php:719 -msgid "All Contacts" -msgstr "Allir tengiliðir" - -#: mod/group.php:216 mod/network.php:639 -msgid "Group is empty" -msgstr "Hópur er tómur" - -#: mod/group.php:229 -msgid "Remove Contact" -msgstr "Fjarlægja tengilið" - -#: mod/group.php:253 -msgid "Add Contact" -msgstr "Bæta við tengilið" - -#: mod/item.php:114 -msgid "Unable to locate original post." -msgstr "Ekki tókst að finna upphaflega færslu." - -#: mod/item.php:274 -msgid "Empty post discarded." -msgstr "Tóm færsla eytt." - -#: mod/item.php:799 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Skilaboðið sendi %s, notandi á Friendica samfélagsnetinu." - -#: mod/item.php:801 -#, php-format -msgid "You may visit them online at %s" -msgstr "Þú getur heimsótt þau á netinu á %s" - -#: mod/item.php:802 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Hafðu samband við sendanda með því að svara á þessari færslu ef þú villt ekki fá þessi skilaboð." - -#: mod/item.php:806 -#, php-format -msgid "%s posted an update." -msgstr "%s hefur sent uppfærslu." - -#: mod/message.php:30 src/Content/Nav.php:198 -msgid "New Message" -msgstr "Ný skilaboð" - -#: mod/message.php:77 -msgid "Unable to locate contact information." -msgstr "Ekki tókst að staðsetja tengiliðs upplýsingar." - -#: mod/message.php:112 src/Content/Nav.php:195 view/theme/frio/theme.php:268 -msgid "Messages" -msgstr "Skilaboð" - -#: mod/message.php:136 -msgid "Do you really want to delete this message?" -msgstr "Viltu virkilega eyða þessum skilaboðum?" - -#: mod/message.php:156 -msgid "Message deleted." -msgstr "Skilaboðum eytt." - -#: mod/message.php:185 -msgid "Conversation removed." -msgstr "Samtali eytt." - -#: mod/message.php:291 -msgid "No messages." -msgstr "Engin skilaboð." - -#: mod/message.php:330 -msgid "Message not available." -msgstr "Ekki næst í skilaboð." - -#: mod/message.php:397 -msgid "Delete message" -msgstr "Eyða skilaboðum" - -#: mod/message.php:399 mod/message.php:500 -msgid "D, d M Y - g:i A" -msgstr "D, d. M Y - g:i A" - -#: mod/message.php:414 mod/message.php:497 -msgid "Delete conversation" -msgstr "Eyða samtali" - -#: mod/message.php:416 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "" - -#: mod/message.php:420 -msgid "Send Reply" -msgstr "Senda svar" - -#: mod/message.php:471 -#, php-format -msgid "Unknown sender - %s" -msgstr "Óþekktur sendandi - %s" - -#: mod/message.php:473 -#, php-format -msgid "You and %s" -msgstr "Þú og %s" - -#: mod/message.php:475 -#, php-format -msgid "%s and You" -msgstr "%s og þú" - -#: mod/message.php:503 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d skilaboð" -msgstr[1] "%d skilaboð" - -#: mod/network.php:202 src/Model/Group.php:400 -msgid "add" -msgstr "bæta við" - -#: mod/network.php:547 -#, php-format -msgid "" -"Warning: This group contains %s member from a network that doesn't allow non" -" public messages." -msgid_plural "" -"Warning: This group contains %s members from a network that doesn't allow " -"non public messages." -msgstr[0] "" -msgstr[1] "" - -#: mod/network.php:550 -msgid "Messages in this group won't be send to these receivers." -msgstr "" - -#: mod/network.php:618 -msgid "No such group" -msgstr "Enginn slíkur hópur" - -#: mod/network.php:643 -#, php-format -msgid "Group: %s" -msgstr "Hópur: %s" - -#: mod/network.php:669 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "Einka skilaboð send á þennan notanda eiga á hættu að verða opinber." - -#: mod/network.php:672 -msgid "Invalid contact." -msgstr "Ógildur tengiliður." - -#: mod/network.php:921 -msgid "Commented Order" -msgstr "Athugasemdar röð" - -#: mod/network.php:924 -msgid "Sort by Comment Date" -msgstr "Raða eftir umræðu dagsetningu" - -#: mod/network.php:929 -msgid "Posted Order" -msgstr "Færlsu röð" - -#: mod/network.php:932 -msgid "Sort by Post Date" -msgstr "Raða eftir færslu dagsetningu" - -#: mod/network.php:940 mod/profiles.php:687 -#: src/Core/NotificationsManager.php:185 -msgid "Personal" -msgstr "Einka" - -#: mod/network.php:943 -msgid "Posts that mention or involve you" -msgstr "Færslur sem tengjast þér" - -#: mod/network.php:951 -msgid "New" -msgstr "Nýtt" - -#: mod/network.php:954 -msgid "Activity Stream - by date" -msgstr "Færslu straumur - raðað eftir dagsetningu" - -#: mod/network.php:962 -msgid "Shared Links" -msgstr "Sameignartenglar" - -#: mod/network.php:965 -msgid "Interesting Links" -msgstr "Áhugaverðir tenglar" - -#: mod/network.php:973 -msgid "Starred" -msgstr "Stjörnumerkt" - -#: mod/network.php:976 -msgid "Favourite Posts" -msgstr "Uppáhalds færslur" - -#: mod/notes.php:52 src/Model/Profile.php:946 +#: mod/notes.php:52 src/Model/Profile.php:944 msgid "Personal Notes" msgstr "Persónulegar glósur" -#: mod/oexchange.php:30 -msgid "Post successful." -msgstr "Melding tókst." - -#: mod/photos.php:108 src/Model/Profile.php:907 +#: mod/photos.php:108 src/Model/Profile.php:905 msgid "Photo Albums" msgstr "Myndabækur" @@ -2976,7 +2009,7 @@ msgstr "Nýlegar myndir" msgid "Upload New Photos" msgstr "Hlaða upp nýjum myndum" -#: mod/photos.php:126 mod/settings.php:50 +#: mod/photos.php:126 mod/settings.php:51 msgid "everybody" msgstr "allir" @@ -3011,7 +2044,7 @@ msgstr "mynd" #: mod/photos.php:667 #, php-format msgid "%1$s was tagged in %2$s by %3$s" -msgstr "" +msgstr "%1$s var merkt í %2$s af %3$s" #: mod/photos.php:769 msgid "Image upload didn't complete, please try again" @@ -3060,11 +2093,11 @@ msgstr "Ekki sýna færslu fyrir þessari upphölun" msgid "Permissions" msgstr "Aðgangsheimildir" -#: mod/photos.php:1106 mod/photos.php:1449 mod/settings.php:1229 +#: mod/photos.php:1106 mod/photos.php:1449 mod/settings.php:1218 msgid "Show to Groups" msgstr "Birta hópum" -#: mod/photos.php:1107 mod/photos.php:1450 mod/settings.php:1230 +#: mod/photos.php:1107 mod/photos.php:1450 mod/settings.php:1219 msgid "Show to Contacts" msgstr "Birta tengiliðum" @@ -3149,21 +2182,21 @@ msgstr "Snúa réttsælis (hægri)" msgid "Rotate CCW (left)" msgstr "Snúa rangsælis (vinstri)" -#: mod/photos.php:1471 src/Object/Post.php:296 +#: mod/photos.php:1471 src/Object/Post.php:304 msgid "I like this (toggle)" msgstr "Mér líkar þetta (kveikja/slökkva)" -#: mod/photos.php:1472 src/Object/Post.php:297 +#: mod/photos.php:1472 src/Object/Post.php:305 msgid "I don't like this (toggle)" msgstr "Mér líkar þetta ekki (kveikja/slökkva)" #: mod/photos.php:1488 mod/photos.php:1527 mod/photos.php:1600 -#: mod/contacts.php:953 src/Object/Post.php:793 +#: mod/contacts.php:953 src/Object/Post.php:801 msgid "This is you" msgstr "Þetta ert þú" #: mod/photos.php:1490 mod/photos.php:1529 mod/photos.php:1602 -#: src/Object/Post.php:399 src/Object/Post.php:795 +#: src/Object/Post.php:407 src/Object/Post.php:803 msgid "Comment" msgstr "Athugasemd" @@ -3175,33 +2208,6 @@ msgstr "Landakort" msgid "View Album" msgstr "Skoða myndabók" -#: mod/profile.php:37 src/Model/Profile.php:118 -msgid "Requested profile is not available." -msgstr "Umbeðin forsíða ekki til." - -#: mod/profile.php:78 src/Protocol/OStatus.php:1252 -#, php-format -msgid "%s's posts" -msgstr "Færslur frá %s" - -#: mod/profile.php:79 src/Protocol/OStatus.php:1253 -#, php-format -msgid "%s's comments" -msgstr "Athugasemdir frá %s" - -#: mod/profile.php:80 src/Protocol/OStatus.php:1251 -#, php-format -msgid "%s's timeline" -msgstr "Tímalína fyrir %s" - -#: mod/profile.php:173 mod/display.php:313 mod/cal.php:142 -msgid "Access to this profile has been restricted." -msgstr "Aðgangur að þessari forsíðu hefur verið heftur." - -#: mod/profile.php:194 -msgid "Tips for New Members" -msgstr "Ábendingar fyrir nýja notendur" - #: mod/videos.php:139 msgid "Do you really want to delete this video?" msgstr "" @@ -3222,498 +2228,13 @@ msgstr "Nýleg myndskeið" msgid "Upload New Videos" msgstr "Senda inn ný myndskeið" -#: mod/delegate.php:37 -msgid "Parent user not found." -msgstr "" +#: mod/cal.php:142 mod/display.php:316 mod/profile.php:174 +msgid "Access to this profile has been restricted." +msgstr "Aðgangur að þessari forsíðu hefur verið heftur." -#: mod/delegate.php:144 -msgid "No parent user" -msgstr "" - -#: mod/delegate.php:159 -msgid "Parent Password:" -msgstr "" - -#: mod/delegate.php:159 -msgid "" -"Please enter the password of the parent account to legitimize your request." -msgstr "" - -#: mod/delegate.php:164 -msgid "Parent User" -msgstr "" - -#: mod/delegate.php:167 -msgid "" -"Parent users have total control about this account, including the account " -"settings. Please double check whom you give this access." -msgstr "" - -#: mod/delegate.php:168 mod/admin.php:307 mod/admin.php:1346 -#: mod/admin.php:1965 mod/admin.php:2218 mod/admin.php:2292 mod/admin.php:2439 -#: mod/settings.php:675 mod/settings.php:784 mod/settings.php:872 -#: mod/settings.php:961 mod/settings.php:1194 -msgid "Save Settings" -msgstr "Vista stillingar" - -#: mod/delegate.php:169 src/Content/Nav.php:204 -msgid "Delegate Page Management" -msgstr "" - -#: mod/delegate.php:170 -msgid "Delegates" -msgstr "" - -#: mod/delegate.php:172 -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 "" - -#: mod/delegate.php:173 -msgid "Existing Page Delegates" -msgstr "" - -#: mod/delegate.php:175 -msgid "Potential Delegates" -msgstr "" - -#: mod/delegate.php:178 -msgid "Add" -msgstr "Bæta við" - -#: mod/delegate.php:179 -msgid "No entries." -msgstr "Engar færslur." - -#: mod/dirfind.php:49 -#, php-format -msgid "People Search - %s" -msgstr "Leita að fólki - %s" - -#: mod/dirfind.php:60 -#, php-format -msgid "Forum Search - %s" -msgstr "Leita á spjallsvæði - %s" - -#: mod/install.php:114 -msgid "Friendica Communications Server - Setup" -msgstr "" - -#: mod/install.php:120 -msgid "Could not connect to database." -msgstr "Gat ekki tengst gagnagrunn." - -#: mod/install.php:124 -msgid "Could not create table." -msgstr "Gat ekki búið til töflu." - -#: mod/install.php:130 -msgid "Your Friendica site database has been installed." -msgstr "Friendica gagnagrunnurinn þinn hefur verið uppsettur." - -#: mod/install.php:135 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Þú þarft mögulega að keyra inn skránna \"database.sql\" handvirkt með phpmyadmin eða mysql." - -#: mod/install.php:136 mod/install.php:208 mod/install.php:558 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Lestu skrána \"INSTALL.txt\"." - -#: mod/install.php:148 -msgid "Database already in use." -msgstr "Gagnagrunnur er þegar í notkun." - -#: mod/install.php:205 -msgid "System check" -msgstr "Kerfis prófun" - -#: mod/install.php:209 mod/cal.php:277 mod/events.php:395 -msgid "Next" -msgstr "Næsta" - -#: mod/install.php:210 -msgid "Check again" -msgstr "Prófa aftur" - -#: mod/install.php:230 -msgid "Database connection" -msgstr "Gangagrunns tenging" - -#: mod/install.php:231 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "Til að setja upp Friendica þurfum við að vita hvernig á að tengjast gagnagrunninum þínum." - -#: mod/install.php:232 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Hafðu samband við hýsingaraðilann þinn eða kerfisstjóra ef þú hefur spurningar varðandi þessar stillingar." - -#: mod/install.php:233 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Gagnagrunnurinn sem þú bendir á þarf þegar að vera til. Ef ekki þá þarf að stofna hann áður en haldið er áfram." - -#: mod/install.php:237 -msgid "Database Server Name" -msgstr "Vélanafn gagangrunns" - -#: mod/install.php:238 -msgid "Database Login Name" -msgstr "Notendanafn í gagnagrunn" - -#: mod/install.php:239 -msgid "Database Login Password" -msgstr "Aðgangsorð í gagnagrunns" - -#: mod/install.php:239 -msgid "For security reasons the password must not be empty" -msgstr "" - -#: mod/install.php:240 -msgid "Database Name" -msgstr "Nafn gagnagrunns" - -#: mod/install.php:241 mod/install.php:281 -msgid "Site administrator email address" -msgstr "Póstfang kerfisstjóra vefsvæðis" - -#: mod/install.php:241 mod/install.php:281 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Póstfang aðgangsins þíns verður að passa við þetta til að hægt sé að nota umsýsluvefviðmótið." - -#: mod/install.php:245 mod/install.php:284 -msgid "Please select a default timezone for your website" -msgstr "Veldu sjálfgefið tímabelti fyrir vefsíðuna" - -#: mod/install.php:271 -msgid "Site settings" -msgstr "Stillingar vefsvæðis" - -#: mod/install.php:285 -msgid "System Language:" -msgstr "Tungumál kerfis:" - -#: mod/install.php:285 -msgid "" -"Set the default language for your Friendica installation interface and to " -"send emails." -msgstr "" - -#: mod/install.php:325 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Gat ekki fundið skipanalínu útgáfu af PHP í vefþjóns PATH." - -#: mod/install.php:326 -msgid "" -"If you don't have a command line version of PHP installed on your server, " -"you will not be able to run the background processing. See 'Setup the worker'" -msgstr "" - -#: mod/install.php:330 -msgid "PHP executable path" -msgstr "PHP keyrslu slóð" - -#: mod/install.php:330 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "" - -#: mod/install.php:335 -msgid "Command line PHP" -msgstr "Skipanalínu PHP" - -#: mod/install.php:344 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "" - -#: mod/install.php:345 -msgid "Found PHP version: " -msgstr "Fann PHP útgáfu: " - -#: mod/install.php:347 -msgid "PHP cli binary" -msgstr "" - -#: mod/install.php:358 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "Skipanalínu útgáfa af PHP á vefþjóninum hefur ekki kveikt á \"register_argc_argv\"." - -#: mod/install.php:359 -msgid "This is required for message delivery to work." -msgstr "Þetta er skilyrt fyrir því að skilaboð komist til skila." - -#: mod/install.php:361 -msgid "PHP register_argc_argv" -msgstr "" - -#: mod/install.php:384 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Villa: Stefjan \"openssl_pkey_new\" á vefþjóninum getur ekki stofnað dulkóðunar lykla" - -#: mod/install.php:385 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Ef keyrt er á Window, skoðaðu þá \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: mod/install.php:387 -msgid "Generate encryption keys" -msgstr "Búa til dulkóðunar lykla" - -#: mod/install.php:394 -msgid "libCurl PHP module" -msgstr "libCurl PHP eining" - -#: mod/install.php:395 -msgid "GD graphics PHP module" -msgstr "GD graphics PHP eining" - -#: mod/install.php:396 -msgid "OpenSSL PHP module" -msgstr "OpenSSL PHP eining" - -#: mod/install.php:397 -msgid "PDO or MySQLi PHP module" -msgstr "" - -#: mod/install.php:398 -msgid "mb_string PHP module" -msgstr "mb_string PHP eining" - -#: mod/install.php:399 -msgid "XML PHP module" -msgstr "" - -#: mod/install.php:400 -msgid "iconv PHP module" -msgstr "" - -#: mod/install.php:401 -msgid "POSIX PHP module" -msgstr "" - -#: mod/install.php:405 mod/install.php:407 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite eining" - -#: mod/install.php:405 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Villa: Apache vefþjóns eining mod-rewrite er skilyrði og er ekki uppsett. " - -#: mod/install.php:413 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Villa: libCurl PHP eining er skilyrði og er ekki uppsett." - -#: mod/install.php:417 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Villa: GD graphics PHP eining með JPEG stuðningi er skilyrði og er ekki uppsett." - -#: mod/install.php:421 -msgid "Error: openssl PHP module required but not installed." -msgstr "Villa: openssl PHP eining skilyrði og er ekki uppsett." - -#: mod/install.php:425 -msgid "Error: PDO or MySQLi PHP module required but not installed." -msgstr "" - -#: mod/install.php:429 -msgid "Error: The MySQL driver for PDO is not installed." -msgstr "" - -#: mod/install.php:433 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Villa: mb_string PHP eining skilyrði en ekki uppsett." - -#: mod/install.php:437 -msgid "Error: iconv PHP module required but not installed." -msgstr "" - -#: mod/install.php:441 -msgid "Error: POSIX PHP module required but not installed." -msgstr "" - -#: mod/install.php:451 -msgid "Error, XML PHP module required but not installed." -msgstr "" - -#: mod/install.php:463 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "Vef uppsetningar forrit þarf að geta stofnað skránna \".htconfig.php\" in efsta skráarsafninu á vefþjóninum og það getur ekki gert það." - -#: mod/install.php:464 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "Þetta er oftast aðgangsstýringa stilling, þar sem vefþjónninn getur ekki skrifað út skrár í skráarsafnið - þó þú getir það." - -#: mod/install.php:465 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "" - -#: mod/install.php:466 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "" - -#: mod/install.php:469 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php er skrifanleg" - -#: mod/install.php:479 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "" - -#: mod/install.php:480 -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory view/smarty3/ under the Friendica top level " -"folder." -msgstr "" - -#: mod/install.php:481 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "" - -#: mod/install.php:482 -msgid "" -"Note: as a security measure, you should give the web server write access to " -"view/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "" - -#: mod/install.php:485 -msgid "view/smarty3 is writable" -msgstr "" - -#: mod/install.php:501 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "" - -#: mod/install.php:503 -msgid "Url rewrite is working" -msgstr "" - -#: mod/install.php:522 -msgid "ImageMagick PHP extension is not installed" -msgstr "" - -#: mod/install.php:524 -msgid "ImageMagick PHP extension is installed" -msgstr "" - -#: mod/install.php:526 -msgid "ImageMagick supports GIF" -msgstr "" - -#: mod/install.php:533 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "Ekki tókst að skrifa stillingaskrá gagnagrunns \".htconfig.php\". Notað meðfylgjandi texta til að búa til stillingarskrá í rót vefþjónsins." - -#: mod/install.php:556 -msgid "

What next

" -msgstr "" - -#: mod/install.php:557 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"worker." -msgstr "" - -#: mod/install.php:560 -#, php-format -msgid "" -"Go to your new Friendica node registration page " -"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 "" - -#: mod/ostatus_subscribe.php:21 -msgid "Subscribing to OStatus contacts" -msgstr "" - -#: mod/ostatus_subscribe.php:33 -msgid "No contact provided." -msgstr "Enginn tengiliður uppgefinn." - -#: mod/ostatus_subscribe.php:40 -msgid "Couldn't fetch information for contact." -msgstr "" - -#: mod/ostatus_subscribe.php:50 -msgid "Couldn't fetch friends for contact." -msgstr "" - -#: mod/ostatus_subscribe.php:78 -msgid "success" -msgstr "tókst" - -#: mod/ostatus_subscribe.php:80 -msgid "failed" -msgstr "mistókst" - -#: mod/ostatus_subscribe.php:83 src/Object/Post.php:279 -msgid "ignored" -msgstr "hunsað" - -#: mod/unfollow.php:34 -msgid "Contact wasn't found or can't be unfollowed." -msgstr "" - -#: mod/unfollow.php:47 -msgid "Contact unfollowed" -msgstr "" - -#: mod/unfollow.php:73 -msgid "You aren't a friend of this contact." -msgstr "" - -#: mod/unfollow.php:79 -msgid "Unfollowing is currently not supported by your network." -msgstr "" - -#: mod/unfollow.php:100 mod/contacts.php:599 -msgid "Disconnect/Unfollow" -msgstr "" - -#: mod/unfollow.php:132 mod/follow.php:186 mod/contacts.php:858 -#: src/Model/Profile.php:891 -msgid "Status Messages and Posts" -msgstr "Stöðu skilaboð og færslur" - -#: mod/cal.php:274 mod/events.php:391 src/Content/Nav.php:104 -#: src/Content/Nav.php:169 src/Model/Profile.php:924 src/Model/Profile.php:935 -#: view/theme/frio/theme.php:263 view/theme/frio/theme.php:267 +#: mod/cal.php:274 mod/events.php:391 view/theme/frio/theme.php:263 +#: view/theme/frio/theme.php:267 src/Content/Nav.php:104 +#: src/Content/Nav.php:170 src/Model/Profile.php:922 src/Model/Profile.php:933 msgid "Events" msgstr "Atburðir" @@ -3725,6 +2246,10 @@ msgstr "Skoða" msgid "Previous" msgstr "Fyrra" +#: mod/cal.php:277 mod/events.php:395 mod/install.php:156 +msgid "Next" +msgstr "Næsta" + #: mod/cal.php:280 mod/events.php:400 src/Model/Event.php:412 msgid "today" msgstr "í dag" @@ -3748,7 +2273,7 @@ msgstr "dagur" msgid "list" msgstr "listi" -#: mod/cal.php:297 src/Core/Console/NewPassword.php:74 src/Model/User.php:204 +#: mod/cal.php:297 src/Core/Console/NewPassword.php:73 src/Model/User.php:214 msgid "User not found" msgstr "Notandi fannst ekki" @@ -3764,601 +2289,9 @@ msgstr "" msgid "calendar" msgstr "dagatal" -#: mod/events.php:105 mod/events.php:107 -msgid "Event can not end before it has started." -msgstr "" - -#: mod/events.php:114 mod/events.php:116 -msgid "Event title and start time are required." -msgstr "" - -#: mod/events.php:393 -msgid "Create New Event" -msgstr "Stofna nýjan atburð" - -#: mod/events.php:506 -msgid "Event details" -msgstr "Nánar um atburð" - -#: mod/events.php:507 -msgid "Starting date and Title are required." -msgstr "" - -#: mod/events.php:508 mod/events.php:509 -msgid "Event Starts:" -msgstr "Atburður hefst:" - -#: mod/events.php:508 mod/events.php:520 mod/profiles.php:700 -msgid "Required" -msgstr "Nauðsynlegt" - -#: mod/events.php:510 mod/events.php:526 -msgid "Finish date/time is not known or not relevant" -msgstr "Loka dagsetning/tímasetning ekki vituð eða skiptir ekki máli" - -#: mod/events.php:512 mod/events.php:513 -msgid "Event Finishes:" -msgstr "Atburður klárar:" - -#: mod/events.php:514 mod/events.php:527 -msgid "Adjust for viewer timezone" -msgstr "Heimfæra á tímabelti áhorfanda" - -#: mod/events.php:516 -msgid "Description:" -msgstr "Lýsing:" - -#: mod/events.php:520 mod/events.php:522 -msgid "Title:" -msgstr "Titill:" - -#: mod/events.php:523 mod/events.php:524 -msgid "Share this event" -msgstr "Deila þessum atburði" - -#: mod/events.php:531 src/Model/Profile.php:864 -msgid "Basic" -msgstr "Einfalt" - -#: mod/events.php:532 mod/contacts.php:895 mod/admin.php:1351 -#: src/Model/Profile.php:865 -msgid "Advanced" -msgstr "Flóknari" - -#: mod/events.php:552 -msgid "Failed to remove event" -msgstr "" - -#: mod/events.php:554 -msgid "Event removed" -msgstr "" - -#: mod/profile_photo.php:55 -msgid "Image uploaded but image cropping failed." -msgstr "Tókst að hala upp mynd en afskurður tókst ekki." - -#: mod/profile_photo.php:88 mod/profile_photo.php:96 mod/profile_photo.php:104 -#: mod/profile_photo.php:315 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Myndar minnkun [%s] tókst ekki." - -#: mod/profile_photo.php:125 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Ýta þarf á " - -#: mod/profile_photo.php:134 -msgid "Unable to process image" -msgstr "Ekki tókst að vinna mynd" - -#: mod/profile_photo.php:247 -msgid "Upload File:" -msgstr "Hlaða upp skrá:" - -#: mod/profile_photo.php:248 -msgid "Select a profile:" -msgstr "" - -#: mod/profile_photo.php:253 -msgid "or" -msgstr "eða" - -#: mod/profile_photo.php:253 -msgid "skip this step" -msgstr "sleppa þessu skrefi" - -#: mod/profile_photo.php:253 -msgid "select a photo from your photo albums" -msgstr "velja mynd í myndabókum" - -#: mod/profile_photo.php:266 -msgid "Crop Image" -msgstr "Skera af mynd" - -#: mod/profile_photo.php:267 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Stilltu afskurð fyrir besta birtingu." - -#: mod/profile_photo.php:269 -msgid "Done Editing" -msgstr "Breyting kláruð" - -#: mod/profile_photo.php:305 -msgid "Image uploaded successfully." -msgstr "Upphölun á mynd tóks." - -#: mod/directory.php:152 src/Model/Profile.php:421 src/Model/Profile.php:769 -msgid "Status:" -msgstr "Staða:" - -#: mod/directory.php:153 src/Model/Profile.php:422 src/Model/Profile.php:786 -msgid "Homepage:" -msgstr "Heimasíða:" - -#: mod/directory.php:202 view/theme/vier/theme.php:201 -msgid "Global Directory" -msgstr "Alheimstengiliðaskrá" - -#: mod/directory.php:204 -msgid "Find on this site" -msgstr "Leita á þessum vef" - -#: mod/directory.php:206 -msgid "Results for:" -msgstr "Niðurstöður fyrir:" - -#: mod/directory.php:208 -msgid "Site Directory" -msgstr "Skrá yfir tengiliði á þessum vef" - -#: mod/directory.php:209 mod/contacts.php:820 src/Content/Widget.php:63 -msgid "Find" -msgstr "Finna" - -#: mod/directory.php:213 -msgid "No entries (some entries may be hidden)." -msgstr "Engar færslur (sumar geta verið faldar)." - -#: mod/babel.php:22 -msgid "Source input" -msgstr "" - -#: mod/babel.php:28 -msgid "BBCode::convert (raw HTML)" -msgstr "" - -#: mod/babel.php:33 -msgid "BBCode::convert" -msgstr "" - -#: mod/babel.php:39 -msgid "BBCode::convert => HTML::toBBCode" -msgstr "" - -#: mod/babel.php:45 -msgid "BBCode::toMarkdown" -msgstr "" - -#: mod/babel.php:51 -msgid "BBCode::toMarkdown => Markdown::convert" -msgstr "" - -#: mod/babel.php:57 -msgid "BBCode::toMarkdown => Markdown::toBBCode" -msgstr "" - -#: mod/babel.php:63 -msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" -msgstr "" - -#: mod/babel.php:70 -msgid "Source input \\x28Diaspora format\\x29" -msgstr "" - -#: mod/babel.php:76 -msgid "Markdown::toBBCode" -msgstr "Markdown::toBBCode" - -#: mod/babel.php:83 -msgid "Raw HTML input" -msgstr "Hrátt HTML-ílag" - -#: mod/babel.php:88 -msgid "HTML Input" -msgstr "HTML Input" - -#: mod/babel.php:94 -msgid "HTML::toBBCode" -msgstr "HTML::toBBCode" - -#: mod/babel.php:100 -msgid "HTML::toPlaintext" -msgstr "HTML::toPlaintext" - -#: mod/babel.php:108 -msgid "Source text" -msgstr "Frumtexti" - -#: mod/babel.php:109 -msgid "BBCode" -msgstr "BBCode" - -#: mod/babel.php:110 -msgid "Markdown" -msgstr "Markdown" - -#: mod/babel.php:111 -msgid "HTML" -msgstr "HTML" - -#: mod/follow.php:45 -msgid "The contact could not be added." -msgstr "" - -#: mod/follow.php:73 -msgid "You already added this contact." -msgstr "" - -#: mod/follow.php:83 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "" - -#: mod/follow.php:90 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "" - -#: mod/follow.php:97 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "" - -#: mod/profiles.php:58 -msgid "Profile deleted." -msgstr "Forsíðu eytt." - -#: mod/profiles.php:74 mod/profiles.php:110 -msgid "Profile-" -msgstr "Forsíða-" - -#: mod/profiles.php:93 mod/profiles.php:132 -msgid "New profile created." -msgstr "Ný forsíða búinn til." - -#: mod/profiles.php:116 -msgid "Profile unavailable to clone." -msgstr "Ekki tókst að klóna forsíðu" - -#: mod/profiles.php:206 -msgid "Profile Name is required." -msgstr "Nafn á forsíðu er skilyrði" - -#: mod/profiles.php:347 -msgid "Marital Status" -msgstr "Hjúskaparstaða" - -#: mod/profiles.php:351 -msgid "Romantic Partner" -msgstr "" - -#: mod/profiles.php:363 -msgid "Work/Employment" -msgstr "Atvinna/Starf" - -#: mod/profiles.php:366 -msgid "Religion" -msgstr "Trúarbrögð" - -#: mod/profiles.php:370 -msgid "Political Views" -msgstr "Stórnmálaskoðanir" - -#: mod/profiles.php:374 -msgid "Gender" -msgstr "Kyn" - -#: mod/profiles.php:378 -msgid "Sexual Preference" -msgstr "Kynhneigð" - -#: mod/profiles.php:382 -msgid "XMPP" -msgstr "XMPP" - -#: mod/profiles.php:386 -msgid "Homepage" -msgstr "Heimasíða" - -#: mod/profiles.php:390 mod/profiles.php:686 -msgid "Interests" -msgstr "Áhugamál" - -#: mod/profiles.php:394 mod/admin.php:490 -msgid "Address" -msgstr "Heimilisfang" - -#: mod/profiles.php:401 mod/profiles.php:682 -msgid "Location" -msgstr "Staðsetning" - -#: mod/profiles.php:486 -msgid "Profile updated." -msgstr "Forsíða uppfærð." - -#: mod/profiles.php:564 -msgid " and " -msgstr "og" - -#: mod/profiles.php:573 -msgid "public profile" -msgstr "Opinber forsíða" - -#: mod/profiles.php:576 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "" - -#: mod/profiles.php:577 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr " - Heimsæktu %1$s's %2$s" - -#: mod/profiles.php:579 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s hefur uppfært %2$s, með því að breyta %3$s." - -#: mod/profiles.php:633 -msgid "Hide contacts and friends:" -msgstr "Fela tengiliði og vini" - -#: mod/profiles.php:638 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Fela tengiliða-/vinalista á þessari forsíðu?" - -#: mod/profiles.php:658 -msgid "Show more profile fields:" -msgstr "" - -#: mod/profiles.php:670 -msgid "Profile Actions" -msgstr "" - -#: mod/profiles.php:671 -msgid "Edit Profile Details" -msgstr "Breyta forsíðu upplýsingum" - -#: mod/profiles.php:673 -msgid "Change Profile Photo" -msgstr "" - -#: mod/profiles.php:674 -msgid "View this profile" -msgstr "Skoða þessa forsíðu" - -#: mod/profiles.php:675 mod/profiles.php:770 src/Model/Profile.php:393 -msgid "Edit visibility" -msgstr "Sýsla með sýnileika" - -#: mod/profiles.php:676 -msgid "Create a new profile using these settings" -msgstr "Búa til nýja forsíðu með þessum stillingum" - -#: mod/profiles.php:677 -msgid "Clone this profile" -msgstr "Klóna þessa forsíðu" - -#: mod/profiles.php:678 -msgid "Delete this profile" -msgstr "Eyða þessari forsíðu" - -#: mod/profiles.php:680 -msgid "Basic information" -msgstr "" - -#: mod/profiles.php:681 -msgid "Profile picture" -msgstr "Notandamynd" - -#: mod/profiles.php:683 -msgid "Preferences" -msgstr "Kjörstillingar" - -#: mod/profiles.php:684 -msgid "Status information" -msgstr "" - -#: mod/profiles.php:685 -msgid "Additional information" -msgstr "Viðbótarupplýsingar" - -#: mod/profiles.php:688 -msgid "Relation" -msgstr "Vensl" - -#: mod/profiles.php:689 src/Util/Temporal.php:81 src/Util/Temporal.php:83 -msgid "Miscellaneous" -msgstr "Ýmislegt" - -#: mod/profiles.php:692 -msgid "Your Gender:" -msgstr "Kyn:" - -#: mod/profiles.php:693 -msgid " Marital Status:" -msgstr " Hjúskaparstaða:" - -#: mod/profiles.php:694 src/Model/Profile.php:782 -msgid "Sexual Preference:" -msgstr "Kynhneigð:" - -#: mod/profiles.php:695 -msgid "Example: fishing photography software" -msgstr "Til dæmis: fishing photography software" - -#: mod/profiles.php:700 -msgid "Profile Name:" -msgstr "Forsíðu nafn:" - -#: mod/profiles.php:702 -msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." -msgstr "Þetta er opinber forsíða.
Hún verður sjáanleg öðrum sem nota alnetið." - -#: mod/profiles.php:703 -msgid "Your Full Name:" -msgstr "Fullt nafn:" - -#: mod/profiles.php:704 -msgid "Title/Description:" -msgstr "Starfsheiti/Lýsing:" - -#: mod/profiles.php:707 -msgid "Street Address:" -msgstr "Gata:" - -#: mod/profiles.php:708 -msgid "Locality/City:" -msgstr "Bær/Borg:" - -#: mod/profiles.php:709 -msgid "Region/State:" -msgstr "Svæði/Sýsla" - -#: mod/profiles.php:710 -msgid "Postal/Zip Code:" -msgstr "Póstnúmer:" - -#: mod/profiles.php:711 -msgid "Country:" -msgstr "Land:" - -#: mod/profiles.php:712 src/Util/Temporal.php:149 -msgid "Age: " -msgstr "Aldur: " - -#: mod/profiles.php:715 -msgid "Who: (if applicable)" -msgstr "Hver: (ef við á)" - -#: mod/profiles.php:715 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Dæmi: cathy123, Cathy Williams, cathy@example.com" - -#: mod/profiles.php:716 -msgid "Since [date]:" -msgstr "Síðan [date]:" - -#: mod/profiles.php:718 -msgid "Tell us about yourself..." -msgstr "Segðu okkur frá sjálfum þér..." - -#: mod/profiles.php:719 -msgid "XMPP (Jabber) address:" -msgstr "XMPP (Jabber) vistfang:" - -#: mod/profiles.php:719 -msgid "" -"The XMPP address will be propagated to your contacts so that they can follow" -" you." -msgstr "" - -#: mod/profiles.php:720 -msgid "Homepage URL:" -msgstr "Slóð heimasíðu:" - -#: mod/profiles.php:721 src/Model/Profile.php:790 -msgid "Hometown:" -msgstr "Heimabær:" - -#: mod/profiles.php:722 src/Model/Profile.php:798 -msgid "Political Views:" -msgstr "Stórnmálaskoðanir:" - -#: mod/profiles.php:723 -msgid "Religious Views:" -msgstr "Trúarskoðanir" - -#: mod/profiles.php:724 -msgid "Public Keywords:" -msgstr "Opinber leitarorð:" - -#: mod/profiles.php:724 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Notað til að stinga uppá mögulegum vinum, aðrir geta séð)" - -#: mod/profiles.php:725 -msgid "Private Keywords:" -msgstr "Einka leitarorð:" - -#: mod/profiles.php:725 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Notað við leit að öðrum notendum, aldrei sýnt öðrum)" - -#: mod/profiles.php:726 src/Model/Profile.php:814 -msgid "Likes:" -msgstr "Líkar:" - -#: mod/profiles.php:727 src/Model/Profile.php:818 -msgid "Dislikes:" -msgstr "Mislíkar:" - -#: mod/profiles.php:728 -msgid "Musical interests" -msgstr "Tónlistarsmekkur" - -#: mod/profiles.php:729 -msgid "Books, literature" -msgstr "Bækur, bókmenntir" - -#: mod/profiles.php:730 -msgid "Television" -msgstr "Sjónvarp" - -#: mod/profiles.php:731 -msgid "Film/dance/culture/entertainment" -msgstr "Kvikmyndir/dans/menning/afþreying" - -#: mod/profiles.php:732 -msgid "Hobbies/Interests" -msgstr "Áhugamál" - -#: mod/profiles.php:733 -msgid "Love/romance" -msgstr "Ást/rómantík" - -#: mod/profiles.php:734 -msgid "Work/employment" -msgstr "Atvinna:" - -#: mod/profiles.php:735 -msgid "School/education" -msgstr "Skóli/menntun" - -#: mod/profiles.php:736 -msgid "Contact information and Social Networks" -msgstr "Tengiliðaupplýsingar og samfélagsnet" - -#: mod/profiles.php:767 src/Model/Profile.php:389 -msgid "Profile Image" -msgstr "Forsíðumynd" - -#: mod/profiles.php:769 src/Model/Profile.php:392 -msgid "visible to everybody" -msgstr "sýnilegt öllum" - -#: mod/profiles.php:776 -msgid "Edit/Manage Profiles" -msgstr "Sýsla með forsíður" - -#: mod/profiles.php:777 src/Model/Profile.php:379 src/Model/Profile.php:401 -msgid "Change profile photo" -msgstr "Breyta forsíðumynd" - -#: mod/profiles.php:778 src/Model/Profile.php:380 -msgid "Create New Profile" -msgstr "Stofna nýja forsíðu" +#: mod/contacts.php:71 mod/notifications.php:259 src/Model/Profile.php:516 +msgid "Network:" +msgstr "Netkerfi:" #: mod/contacts.php:157 #, php-format @@ -4379,6 +2312,10 @@ msgstr "Tókst ekki að staðsetja valinn forsíðu" msgid "Contact updated." msgstr "Tengiliður uppfærður" +#: mod/contacts.php:230 mod/dfrn_request.php:415 +msgid "Failed to update contact record." +msgstr "Ekki tókst að uppfæra tengiliðs skrá." + #: mod/contacts.php:421 msgid "Contact has been blocked" msgstr "Lokað á tengilið" @@ -4470,8 +2407,8 @@ msgid "" "are taken from the meta header in the feed item and are posted as hash tags." msgstr "" -#: mod/contacts.php:572 mod/admin.php:1272 mod/admin.php:1435 -#: mod/admin.php:1445 +#: mod/contacts.php:572 mod/admin.php:1288 mod/admin.php:1450 +#: mod/admin.php:1460 msgid "Disabled" msgstr "Óvirkt" @@ -4487,6 +2424,10 @@ msgstr "Ná í stikkorð" msgid "Fetch information and keywords" msgstr "Ná í upplýsingar og stikkorð" +#: mod/contacts.php:599 mod/unfollow.php:100 +msgid "Disconnect/Unfollow" +msgstr "" + #: mod/contacts.php:608 msgid "Contact" msgstr "Tengiliður" @@ -4543,12 +2484,12 @@ msgid "Update now" msgstr "Uppfæra núna" #: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011 -#: mod/admin.php:485 mod/admin.php:1800 +#: mod/admin.php:489 mod/admin.php:1829 msgid "Unblock" msgstr "Afbanna" #: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011 -#: mod/admin.php:484 mod/admin.php:1799 +#: mod/admin.php:488 mod/admin.php:1828 msgid "Block" msgstr "Útiloka" @@ -4556,6 +2497,12 @@ msgstr "Útiloka" msgid "Unignore" msgstr "Byrja að fylgjast með á ný" +#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019 +#: mod/notifications.php:62 mod/notifications.php:181 +#: mod/notifications.php:264 +msgid "Ignore" +msgstr "Hunsa" + #: mod/contacts.php:642 msgid "Currently blocked" msgstr "Útilokaður sem stendur" @@ -4572,6 +2519,10 @@ msgstr "Í geymslu" msgid "Awaiting connection acknowledge" msgstr "" +#: mod/contacts.php:646 mod/notifications.php:175 mod/notifications.php:253 +msgid "Hide this contact from others" +msgstr "Gera þennan notanda ósýnilegan öðrum" + #: mod/contacts.php:646 msgid "" "Replies/likes to your public posts may still be visible" @@ -4595,16 +2546,37 @@ msgid "" "when \"Fetch information and keywords\" is selected" msgstr "" -#: mod/contacts.php:662 src/Model/Profile.php:424 +#: mod/contacts.php:656 mod/unfollow.php:122 mod/follow.php:166 +#: mod/admin.php:494 mod/admin.php:504 mod/notifications.php:256 +msgid "Profile URL" +msgstr "Slóð á forsíðu" + +#: mod/contacts.php:660 mod/events.php:518 mod/directory.php:148 +#: mod/notifications.php:246 src/Model/Event.php:60 src/Model/Event.php:85 +#: src/Model/Event.php:421 src/Model/Event.php:900 src/Model/Profile.php:413 +msgid "Location:" +msgstr "Staðsetning:" + +#: mod/contacts.php:662 src/Model/Profile.php:420 msgid "XMPP:" msgstr "XMPP:" +#: mod/contacts.php:664 mod/directory.php:154 mod/notifications.php:248 +#: src/Model/Profile.php:419 src/Model/Profile.php:804 +msgid "About:" +msgstr "Um:" + +#: mod/contacts.php:666 mod/follow.php:174 mod/notifications.php:250 +#: src/Model/Profile.php:792 +msgid "Tags:" +msgstr "Merki:" + #: mod/contacts.php:667 msgid "Actions" msgstr "Aðgerðir" -#: mod/contacts.php:669 mod/contacts.php:855 src/Content/Nav.php:100 -#: src/Model/Profile.php:888 view/theme/frio/theme.php:259 +#: mod/contacts.php:669 mod/contacts.php:855 view/theme/frio/theme.php:259 +#: src/Content/Nav.php:100 src/Model/Profile.php:886 msgid "Status" msgstr "Staða" @@ -4620,6 +2592,10 @@ msgstr "Uppástungur" msgid "Suggest potential friends" msgstr "Stinga uppá mögulegum vinum" +#: mod/contacts.php:719 mod/group.php:215 +msgid "All Contacts" +msgstr "Allir tengiliðir" + #: mod/contacts.php:722 msgid "Show all contacts" msgstr "Sýna alla tengiliði" @@ -4668,7 +2644,12 @@ msgstr "Aðeins sýna falda tengiliði" msgid "Search your contacts" msgstr "Leita í þínum vinum" -#: mod/contacts.php:826 mod/settings.php:170 mod/settings.php:701 +#: mod/contacts.php:820 mod/directory.php:209 view/theme/vier/theme.php:203 +#: src/Content/Widget.php:63 +msgid "Find" +msgstr "Finna" + +#: mod/contacts.php:826 mod/settings.php:169 mod/settings.php:695 msgid "Update" msgstr "Uppfæra" @@ -4682,9 +2663,14 @@ msgstr "Taka úr geymslu" #: mod/contacts.php:832 msgid "Batch Actions" -msgstr "" +msgstr "Magnaðgerðir" -#: mod/contacts.php:866 src/Model/Profile.php:899 +#: mod/contacts.php:858 mod/unfollow.php:132 mod/follow.php:186 +#: src/Model/Profile.php:889 +msgid "Status Messages and Posts" +msgstr "Stöðu skilaboð og færslur" + +#: mod/contacts.php:866 src/Model/Profile.php:897 msgid "Profile Details" msgstr "Forsíðu upplýsingar" @@ -4694,7 +2680,12 @@ msgstr "Skoða alla tengiliði" #: mod/contacts.php:889 msgid "View all common friends" -msgstr "" +msgstr "Skoða alla sameiginlega vini" + +#: mod/contacts.php:895 mod/events.php:532 mod/admin.php:1363 +#: src/Model/Profile.php:863 +msgid "Advanced" +msgstr "Flóknari" #: mod/contacts.php:898 msgid "Advanced Contact Settings" @@ -4728,87 +2719,332 @@ msgstr "" msgid "Delete contact" msgstr "Eyða tengilið" -#: mod/_tos.php:48 mod/register.php:288 mod/admin.php:188 mod/admin.php:302 -#: src/Module/Tos.php:48 -msgid "Terms of Service" -msgstr "Þjónustuskilmálar" - -#: mod/_tos.php:51 src/Module/Tos.php:51 -msgid "Privacy Statement" -msgstr "Yfirlýsing um gagnaleynd" - -#: mod/_tos.php:52 src/Module/Tos.php:52 -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." +#: mod/delegate.php:37 +msgid "Parent user not found." msgstr "" -#: mod/_tos.php:53 src/Module/Tos.php:53 +#: mod/delegate.php:144 +msgid "No parent user" +msgstr "" + +#: mod/delegate.php:159 +msgid "Parent Password:" +msgstr "" + +#: mod/delegate.php:159 +msgid "" +"Please enter the password of the parent account to legitimize your request." +msgstr "" + +#: mod/delegate.php:164 +msgid "Parent User" +msgstr "" + +#: mod/delegate.php:167 +msgid "" +"Parent users have total control about this account, including the account " +"settings. Please double check whom you give this access." +msgstr "" + +#: mod/delegate.php:168 mod/admin.php:311 mod/admin.php:1358 +#: mod/admin.php:1994 mod/admin.php:2247 mod/admin.php:2321 mod/admin.php:2468 +#: mod/settings.php:669 mod/settings.php:776 mod/settings.php:864 +#: mod/settings.php:953 mod/settings.php:1183 +msgid "Save Settings" +msgstr "Vista stillingar" + +#: mod/delegate.php:169 src/Content/Nav.php:205 +msgid "Delegate Page Management" +msgstr "" + +#: mod/delegate.php:170 +msgid "Delegates" +msgstr "" + +#: mod/delegate.php:172 +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 "" + +#: mod/delegate.php:173 +msgid "Existing Page Delegates" +msgstr "" + +#: mod/delegate.php:175 +msgid "Potential Delegates" +msgstr "" + +#: mod/delegate.php:178 +msgid "Add" +msgstr "Bæta við" + +#: mod/delegate.php:179 +msgid "No entries." +msgstr "Engar færslur." + +#: mod/events.php:105 mod/events.php:107 +msgid "Event can not end before it has started." +msgstr "" + +#: mod/events.php:114 mod/events.php:116 +msgid "Event title and start time are required." +msgstr "" + +#: mod/events.php:393 +msgid "Create New Event" +msgstr "Stofna nýjan atburð" + +#: mod/events.php:506 +msgid "Event details" +msgstr "Nánar um atburð" + +#: mod/events.php:507 +msgid "Starting date and Title are required." +msgstr "" + +#: mod/events.php:508 mod/events.php:509 +msgid "Event Starts:" +msgstr "Atburður hefst:" + +#: mod/events.php:508 mod/events.php:520 mod/profiles.php:607 +msgid "Required" +msgstr "Nauðsynlegt" + +#: mod/events.php:510 mod/events.php:526 +msgid "Finish date/time is not known or not relevant" +msgstr "Loka dagsetning/tímasetning ekki vituð eða skiptir ekki máli" + +#: mod/events.php:512 mod/events.php:513 +msgid "Event Finishes:" +msgstr "Atburður klárar:" + +#: mod/events.php:514 mod/events.php:527 +msgid "Adjust for viewer timezone" +msgstr "Heimfæra á tímabelti áhorfanda" + +#: mod/events.php:516 +msgid "Description:" +msgstr "Lýsing:" + +#: mod/events.php:520 mod/events.php:522 +msgid "Title:" +msgstr "Titill:" + +#: mod/events.php:523 mod/events.php:524 +msgid "Share this event" +msgstr "Deila þessum atburði" + +#: mod/events.php:531 src/Model/Profile.php:862 +msgid "Basic" +msgstr "Einfalt" + +#: mod/events.php:552 +msgid "Failed to remove event" +msgstr "" + +#: mod/events.php:554 +msgid "Event removed" +msgstr "" + +#: mod/feedtest.php:20 +msgid "You must be logged in to use this module" +msgstr "" + +#: mod/feedtest.php:48 +msgid "Source URL" +msgstr "Upprunaslóð" + +#: mod/oexchange.php:30 +msgid "Post successful." +msgstr "Melding tókst." + +#: mod/ostatus_subscribe.php:21 +msgid "Subscribing to OStatus contacts" +msgstr "" + +#: mod/ostatus_subscribe.php:33 +msgid "No contact provided." +msgstr "Enginn tengiliður uppgefinn." + +#: mod/ostatus_subscribe.php:40 +msgid "Couldn't fetch information for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:50 +msgid "Couldn't fetch friends for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:78 +msgid "success" +msgstr "tókst" + +#: mod/ostatus_subscribe.php:80 +msgid "failed" +msgstr "mistókst" + +#: mod/ostatus_subscribe.php:83 src/Object/Post.php:287 +msgid "ignored" +msgstr "hunsað" + +#: mod/profile_photo.php:55 +msgid "Image uploaded but image cropping failed." +msgstr "Tókst að hala upp mynd en afskurður tókst ekki." + +#: mod/profile_photo.php:88 mod/profile_photo.php:96 mod/profile_photo.php:104 +#: mod/profile_photo.php:315 #, php-format +msgid "Image size reduction [%s] failed." +msgstr "Myndar minnkun [%s] tókst ekki." + +#: mod/profile_photo.php:125 msgid "" -"At any point in time a logged in user can export their account data from the" -" account settings. If the user wants " -"to delete their account they can do so at %1$s/removeme. The deletion of the account will " -"be permanent." +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Ýta þarf á " + +#: mod/profile_photo.php:134 +msgid "Unable to process image" +msgstr "Ekki tókst að vinna mynd" + +#: mod/profile_photo.php:247 +msgid "Upload File:" +msgstr "Hlaða upp skrá:" + +#: mod/profile_photo.php:248 +msgid "Select a profile:" msgstr "" -#: mod/friendica.php:77 -msgid "This is Friendica, version" -msgstr "Þetta er Friendica útgáfa" +#: mod/profile_photo.php:253 +msgid "or" +msgstr "eða" -#: mod/friendica.php:78 -msgid "running at web location" -msgstr "Keyrir á slóð" +#: mod/profile_photo.php:253 +msgid "skip this step" +msgstr "sleppa þessu skrefi" -#: mod/friendica.php:82 -msgid "" -"Please visit Friendi.ca to learn more " -"about the Friendica project." +#: mod/profile_photo.php:253 +msgid "select a photo from your photo albums" +msgstr "velja mynd í myndabókum" + +#: mod/profile_photo.php:266 +msgid "Crop Image" +msgstr "Skera af mynd" + +#: mod/profile_photo.php:267 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Stilltu afskurð fyrir besta birtingu." + +#: mod/profile_photo.php:269 +msgid "Done Editing" +msgstr "Breyting kláruð" + +#: mod/profile_photo.php:305 +msgid "Image uploaded successfully." +msgstr "Upphölun á mynd tóks." + +#: mod/unfollow.php:34 +msgid "Contact wasn't found or can't be unfollowed." msgstr "" -#: mod/friendica.php:86 -msgid "Bug reports and issues: please visit" -msgstr "Villu tilkynningar og vandamál: endilega skoða" - -#: mod/friendica.php:86 -msgid "the bugtracker at github" -msgstr "villuskráningu á GitHub" - -#: mod/friendica.php:89 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Uppástungur, lof, framlög og svo framvegis - sendið tölvupóst á \"Info\" hjá Friendica - punktur com" - -#: mod/friendica.php:103 -msgid "Installed addons/apps:" +#: mod/unfollow.php:47 +msgid "Contact unfollowed" msgstr "" -#: mod/friendica.php:117 -msgid "No installed addons/apps" +#: mod/unfollow.php:65 mod/follow.php:62 mod/dfrn_request.php:657 +msgid "Submit Request" +msgstr "Senda beiðni" + +#: mod/unfollow.php:73 +msgid "You aren't a friend of this contact." msgstr "" -#: mod/friendica.php:122 +#: mod/unfollow.php:79 +msgid "Unfollowing is currently not supported by your network." +msgstr "" + +#: mod/unfollow.php:113 mod/follow.php:157 mod/dfrn_request.php:655 +msgid "Your Identity Address:" +msgstr "Auðkennisnetfang þitt:" + +#: mod/directory.php:151 mod/notifications.php:252 src/Model/Profile.php:416 +#: src/Model/Profile.php:743 +msgid "Gender:" +msgstr "Kyn:" + +#: mod/directory.php:152 src/Model/Profile.php:417 src/Model/Profile.php:767 +msgid "Status:" +msgstr "Staða:" + +#: mod/directory.php:153 src/Model/Profile.php:418 src/Model/Profile.php:784 +msgid "Homepage:" +msgstr "Heimasíða:" + +#: mod/directory.php:202 view/theme/vier/theme.php:208 +#: src/Content/Widget.php:68 +msgid "Global Directory" +msgstr "Alheimstengiliðaskrá" + +#: mod/directory.php:204 +msgid "Find on this site" +msgstr "Leita á þessum vef" + +#: mod/directory.php:206 +msgid "Results for:" +msgstr "Niðurstöður fyrir:" + +#: mod/directory.php:208 +msgid "Site Directory" +msgstr "Skrá yfir tengiliði á þessum vef" + +#: mod/directory.php:213 +msgid "No entries (some entries may be hidden)." +msgstr "Engar færslur (sumar geta verið faldar)." + +#: mod/dirfind.php:49 #, php-format -msgid "Read about the Terms of Service of this node." +msgid "People Search - %s" +msgstr "Leita að fólki - %s" + +#: mod/dirfind.php:60 +#, php-format +msgid "Forum Search - %s" +msgstr "Leita á spjallsvæði - %s" + +#: mod/follow.php:45 +msgid "The contact could not be added." msgstr "" -#: mod/friendica.php:127 -msgid "On this server the following remote servers are blocked." +#: mod/follow.php:73 +msgid "You already added this contact." msgstr "" -#: mod/friendica.php:128 mod/admin.php:354 mod/admin.php:372 -msgid "Reason for the block" +#: mod/follow.php:83 +msgid "Diaspora support isn't enabled. Contact can't be added." msgstr "" +#: mod/follow.php:90 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "" + +#: mod/follow.php:97 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "" + +#: mod/follow.php:149 mod/dfrn_request.php:647 +msgid "Please answer the following:" +msgstr "Vinnsamlegast svaraðu eftirfarandi:" + +#: mod/follow.php:150 mod/dfrn_request.php:648 +#, php-format +msgid "Does %s know you?" +msgstr "Þekkir %s þig?" + +#: mod/follow.php:151 mod/dfrn_request.php:649 +msgid "Add a personal note:" +msgstr "Bæta við persónulegri athugasemd" + #: mod/lostpass.php:27 msgid "No valid account found." msgstr "Engin gildur aðgangur fannst." @@ -4875,15 +3111,15 @@ msgid "" "your email for further instructions." msgstr "Sláðu inn tölvupóstfangið þitt til að endurstilla aðgangsorðið og fá leiðbeiningar sendar með tölvupósti." -#: mod/lostpass.php:119 src/Module/Login.php:314 +#: mod/lostpass.php:119 src/Module/Login.php:315 msgid "Nickname or Email: " -msgstr "Gælunafn eða póstfang: " +msgstr "Gælunafn eða tölvupóstfang: " #: mod/lostpass.php:120 msgid "Reset" msgstr "Endurstilla" -#: mod/lostpass.php:136 src/Module/Login.php:326 +#: mod/lostpass.php:136 src/Module/Login.php:327 msgid "Password Reset" msgstr "Endurstilling aðgangsorðs" @@ -4939,270 +3175,916 @@ msgstr "" msgid "Your password has been changed at %s" msgstr "Aðgangsorðinu þínu var breytt í %s" -#: mod/register.php:99 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Nýskráning tóks. Frekari fyrirmæli voru send í tölvupósti." +#: mod/babel.php:22 +msgid "Source input" +msgstr "" -#: mod/register.php:103 +#: mod/babel.php:28 +msgid "BBCode::toPlaintext" +msgstr "" + +#: mod/babel.php:34 +msgid "BBCode::convert (raw HTML)" +msgstr "" + +#: mod/babel.php:39 +msgid "BBCode::convert" +msgstr "" + +#: mod/babel.php:45 +msgid "BBCode::convert => HTML::toBBCode" +msgstr "" + +#: mod/babel.php:51 +msgid "BBCode::toMarkdown" +msgstr "" + +#: mod/babel.php:57 +msgid "BBCode::toMarkdown => Markdown::convert" +msgstr "" + +#: mod/babel.php:63 +msgid "BBCode::toMarkdown => Markdown::toBBCode" +msgstr "" + +#: mod/babel.php:69 +msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" +msgstr "" + +#: mod/babel.php:76 +msgid "Source input \\x28Diaspora format\\x29" +msgstr "" + +#: mod/babel.php:82 +msgid "Markdown::toBBCode" +msgstr "Markdown::toBBCode" + +#: mod/babel.php:89 +msgid "Raw HTML input" +msgstr "Hrátt HTML-ílag" + +#: mod/babel.php:94 +msgid "HTML Input" +msgstr "HTML Input" + +#: mod/babel.php:100 +msgid "HTML::toBBCode" +msgstr "HTML::toBBCode" + +#: mod/babel.php:106 +msgid "HTML::toPlaintext" +msgstr "HTML::toPlaintext" + +#: mod/babel.php:114 +msgid "Source text" +msgstr "Frumtexti" + +#: mod/babel.php:115 +msgid "BBCode" +msgstr "BBCode" + +#: mod/babel.php:116 +msgid "Markdown" +msgstr "Markdown" + +#: mod/babel.php:117 +msgid "HTML" +msgstr "HTML" + +#: mod/community.php:51 +msgid "Community option not available." +msgstr "" + +#: mod/community.php:68 +msgid "Not available." +msgstr "Ekki tiltækt." + +#: mod/community.php:81 +msgid "Local Community" +msgstr "" + +#: mod/community.php:84 +msgid "Posts from local users on this server" +msgstr "" + +#: mod/community.php:92 +msgid "Global Community" +msgstr "" + +#: mod/community.php:95 +msgid "Posts from users of the whole federated network" +msgstr "" + +#: mod/community.php:185 +msgid "" +"This community stream shows all public posts received by this node. They may" +" not reflect the opinions of this node’s users." +msgstr "" + +#: mod/friendica.php:77 +msgid "This is Friendica, version" +msgstr "Þetta er Friendica útgáfa" + +#: mod/friendica.php:78 +msgid "running at web location" +msgstr "Keyrir á slóð" + +#: mod/friendica.php:82 +msgid "" +"Please visit Friendi.ca to learn more " +"about the Friendica project." +msgstr "" + +#: mod/friendica.php:86 +msgid "Bug reports and issues: please visit" +msgstr "Villu tilkynningar og vandamál: endilega skoða" + +#: mod/friendica.php:86 +msgid "the bugtracker at github" +msgstr "villuskráningu á GitHub" + +#: mod/friendica.php:89 +msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" +msgstr "" + +#: mod/friendica.php:103 +msgid "Installed addons/apps:" +msgstr "" + +#: mod/friendica.php:117 +msgid "No installed addons/apps" +msgstr "" + +#: mod/friendica.php:122 +#, php-format +msgid "Read about the Terms of Service of this node." +msgstr "" + +#: mod/friendica.php:127 +msgid "On this server the following remote servers are blocked." +msgstr "" + +#: mod/friendica.php:128 mod/admin.php:357 mod/admin.php:375 +#: mod/dfrn_request.php:347 src/Model/Contact.php:1281 +msgid "Blocked domain" +msgstr "Útilokað lén" + +#: mod/friendica.php:128 mod/admin.php:358 mod/admin.php:376 +msgid "Reason for the block" +msgstr "" + +#: mod/invite.php:33 +msgid "Total invitation limit exceeded." +msgstr "" + +#: mod/invite.php:55 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Ekki gilt tölvupóstfang." + +#: mod/invite.php:87 +msgid "Please join us on Friendica" +msgstr "Komdu í hópinn á Friendica" + +#: mod/invite.php:96 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "" + +#: mod/invite.php:100 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Skilaboð komust ekki til skila." + +#: mod/invite.php:104 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d skilaboð send." +msgstr[1] "%d skilaboð send" + +#: mod/invite.php:122 +msgid "You have no more invitations available" +msgstr "Þú hefur ekki fleiri boðskort." + +#: mod/invite.php:130 #, php-format msgid "" -"Failed to send email message. Here your accout details:
login: %s
" -"password: %s

You can change your password after login." +"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 "" -#: mod/register.php:110 -msgid "Registration successful." -msgstr "Nýskráning tókst." - -#: mod/register.php:115 -msgid "Your registration can not be processed." -msgstr "Skráninguna þína er ekki hægt að vinna." - -#: mod/register.php:162 -msgid "Your registration is pending approval by the site owner." -msgstr "Skráningin þín bíður samþykkis af eiganda síðunnar." - -#: mod/register.php:220 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Þú mátt (valfrjálst) fylla í þetta svæði gegnum OpenID með því gefa upp þitt OpenID og ýta á 'Skrá'." - -#: mod/register.php:221 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Ef þú veist ekki hvað OpenID er, skildu þá þetta svæði eftir tómt en fylltu í restin af svæðunum." - -#: mod/register.php:222 -msgid "Your OpenID (optional): " -msgstr "Þitt OpenID (valfrjálst):" - -#: mod/register.php:234 -msgid "Include your profile in member directory?" -msgstr "Á forsíðan þín að sjást í notendalistanum?" - -#: mod/register.php:259 -msgid "Note for the admin" -msgstr "" - -#: mod/register.php:259 -msgid "Leave a message for the admin, why you want to join this node" -msgstr "" - -#: mod/register.php:260 -msgid "Membership on this site is by invitation only." -msgstr "Aðild að þessum vef er " - -#: mod/register.php:261 -msgid "Your invitation code: " -msgstr "" - -#: mod/register.php:264 mod/admin.php:1348 -msgid "Registration" -msgstr "Nýskráning" - -#: mod/register.php:270 -msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " -msgstr "" - -#: mod/register.php:271 -msgid "" -"Your Email Address: (Initial information will be send there, so this has to " -"be an existing address.)" -msgstr "" - -#: mod/register.php:273 mod/settings.php:1201 -msgid "New Password:" -msgstr "Nýtt aðgangsorð:" - -#: mod/register.php:273 -msgid "Leave empty for an auto generated password." -msgstr "" - -#: mod/register.php:274 mod/settings.php:1202 -msgid "Confirm:" -msgstr "Staðfesta:" - -#: mod/register.php:275 +#: mod/invite.php:132 #, php-format msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be 'nickname@%s'." +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." msgstr "" -#: mod/register.php:276 -msgid "Choose a nickname: " -msgstr "Veldu gælunafn:" - -#: mod/register.php:279 src/Content/Nav.php:128 src/Module/Login.php:283 -msgid "Register" -msgstr "Nýskrá" - -#: mod/register.php:286 -msgid "Import your profile to this friendica instance" +#: mod/invite.php:133 +#, 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 "" -#: mod/admin.php:106 +#: mod/invite.php:137 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "" + +#: mod/invite.php:141 +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 "" + +#: mod/invite.php:140 +#, php-format +msgid "To accept this invitation, please visit and register at %s." +msgstr "" + +#: mod/invite.php:147 +msgid "Send invitations" +msgstr "Senda kynningar" + +#: mod/invite.php:148 +msgid "Enter email addresses, one per line:" +msgstr "Settu inn tölvupóstföng, eitt í hverja línu:" + +#: mod/invite.php:149 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "" + +#: mod/invite.php:151 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Þú þarft að nota eftirfarandi boðskorta auðkenni: $invite_code" + +#: mod/invite.php:151 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Þegar þú hefur nýskráð þig, hafðu samband við mig gegnum síðuna mína á:" + +#: mod/invite.php:153 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendi.ca" +msgstr "" + +#: mod/network.php:202 src/Model/Group.php:413 +msgid "add" +msgstr "bæta við" + +#: mod/network.php:547 +#, php-format +msgid "" +"Warning: This group contains %s member from a network that doesn't allow non" +" public messages." +msgid_plural "" +"Warning: This group contains %s members from a network that doesn't allow " +"non public messages." +msgstr[0] "" +msgstr[1] "" + +#: mod/network.php:550 +msgid "Messages in this group won't be send to these receivers." +msgstr "" + +#: mod/network.php:618 +msgid "No such group" +msgstr "Enginn slíkur hópur" + +#: mod/network.php:639 mod/group.php:216 +msgid "Group is empty" +msgstr "Hópur er tómur" + +#: mod/network.php:643 +#, php-format +msgid "Group: %s" +msgstr "Hópur: %s" + +#: mod/network.php:669 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "Einka skilaboð send á þennan notanda eiga á hættu að verða opinber." + +#: mod/network.php:672 +msgid "Invalid contact." +msgstr "Ógildur tengiliður." + +#: mod/network.php:937 +msgid "Commented Order" +msgstr "Athugasemdar röð" + +#: mod/network.php:940 +msgid "Sort by Comment Date" +msgstr "Raða eftir umræðu dagsetningu" + +#: mod/network.php:945 +msgid "Posted Order" +msgstr "Færlsu röð" + +#: mod/network.php:948 +msgid "Sort by Post Date" +msgstr "Raða eftir færslu dagsetningu" + +#: mod/network.php:956 mod/profiles.php:594 +#: src/Core/NotificationsManager.php:185 +msgid "Personal" +msgstr "Einka" + +#: mod/network.php:959 +msgid "Posts that mention or involve you" +msgstr "Færslur sem tengjast þér" + +#: mod/network.php:967 +msgid "New" +msgstr "Nýtt" + +#: mod/network.php:970 +msgid "Activity Stream - by date" +msgstr "Færslu straumur - raðað eftir dagsetningu" + +#: mod/network.php:978 +msgid "Shared Links" +msgstr "Sameignartenglar" + +#: mod/network.php:981 +msgid "Interesting Links" +msgstr "Áhugaverðir tenglar" + +#: mod/network.php:989 +msgid "Starred" +msgstr "Stjörnumerkt" + +#: mod/network.php:992 +msgid "Favourite Posts" +msgstr "Uppáhalds færslur" + +#: mod/crepair.php:87 +msgid "Contact settings applied." +msgstr "Stillingar tengiliðs uppfærðar." + +#: mod/crepair.php:89 +msgid "Contact update failed." +msgstr "Uppfærsla tengiliðs mistókst." + +#: mod/crepair.php:114 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "AÐVÖRUN: Þetta er mjög flókið og ef þú setur inn vitlausar upplýsingar þá munu samskipti við þennan tengilið hætta að virka." + +#: mod/crepair.php:115 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Notaðu \"Til baka\" hnappinn núna ef þú ert ekki viss um hvað þú eigir að gera á þessari síðu." + +#: mod/crepair.php:129 mod/crepair.php:131 +msgid "No mirroring" +msgstr "" + +#: mod/crepair.php:129 +msgid "Mirror as forwarded posting" +msgstr "" + +#: mod/crepair.php:129 mod/crepair.php:131 +msgid "Mirror as my own posting" +msgstr "" + +#: mod/crepair.php:144 +msgid "Return to contact editor" +msgstr "Fara til baka í tengiliðasýsl" + +#: mod/crepair.php:146 +msgid "Refetch contact data" +msgstr "" + +#: mod/crepair.php:149 +msgid "Remote Self" +msgstr "" + +#: mod/crepair.php:152 +msgid "Mirror postings from this contact" +msgstr "" + +#: mod/crepair.php:154 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "" + +#: mod/crepair.php:158 mod/admin.php:494 mod/admin.php:1811 mod/admin.php:1822 +#: mod/admin.php:1835 mod/admin.php:1851 mod/settings.php:671 +#: mod/settings.php:697 +msgid "Name" +msgstr "Nafn" + +#: mod/crepair.php:159 +msgid "Account Nickname" +msgstr "Gælunafn notanda" + +#: mod/crepair.php:160 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Merkjanafn - yfirskrifar Nafn/Gælunafn" + +#: mod/crepair.php:161 +msgid "Account URL" +msgstr "Heimasíða notanda" + +#: mod/crepair.php:162 +msgid "Friend Request URL" +msgstr "Slóð vinabeiðnar" + +#: mod/crepair.php:163 +msgid "Friend Confirm URL" +msgstr "Slóð vina staðfestingar " + +#: mod/crepair.php:164 +msgid "Notification Endpoint URL" +msgstr "Slóð loka tilkynningar" + +#: mod/crepair.php:165 +msgid "Poll/Feed URL" +msgstr "Slóð á könnun/fréttastraum" + +#: mod/crepair.php:166 +msgid "New photo from this URL" +msgstr "Ný mynd frá slóð" + +#: mod/dfrn_poll.php:123 mod/dfrn_poll.php:539 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "" + +#: mod/help.php:48 +msgid "Help:" +msgstr "Hjálp:" + +#: mod/help.php:54 view/theme/vier/theme.php:297 src/Content/Nav.php:134 +msgid "Help" +msgstr "Hjálp" + +#: mod/help.php:63 index.php:317 +msgid "Page not found." +msgstr "Síða fannst ekki." + +#: mod/install.php:87 +msgid "Friendica Communications Server - Setup" +msgstr "" + +#: mod/install.php:93 +msgid "Could not connect to database." +msgstr "Gat ekki tengst gagnagrunn." + +#: mod/install.php:97 +msgid "Could not create table." +msgstr "Gat ekki búið til töflu." + +#: mod/install.php:103 +msgid "Your Friendica site database has been installed." +msgstr "Friendica gagnagrunnurinn þinn hefur verið uppsettur." + +#: mod/install.php:108 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Þú þarft mögulega að keyra inn skránna \"database.sql\" handvirkt með phpmyadmin eða mysql." + +#: mod/install.php:109 mod/install.php:155 mod/install.php:267 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Lestu skrána \"INSTALL.txt\"." + +#: mod/install.php:121 +msgid "Database already in use." +msgstr "Gagnagrunnur er þegar í notkun." + +#: mod/install.php:152 +msgid "System check" +msgstr "Kerfis prófun" + +#: mod/install.php:157 +msgid "Check again" +msgstr "Prófa aftur" + +#: mod/install.php:177 +msgid "Database connection" +msgstr "Gangagrunns tenging" + +#: mod/install.php:178 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Til að setja upp Friendica þurfum við að vita hvernig á að tengjast gagnagrunninum þínum." + +#: mod/install.php:179 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Hafðu samband við hýsingaraðilann þinn eða kerfisstjóra ef þú hefur spurningar varðandi þessar stillingar." + +#: mod/install.php:180 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Gagnagrunnurinn sem þú bendir á þarf þegar að vera til. Ef ekki þá þarf að stofna hann áður en haldið er áfram." + +#: mod/install.php:184 +msgid "Database Server Name" +msgstr "Vélanafn gagangrunns" + +#: mod/install.php:185 +msgid "Database Login Name" +msgstr "Notendanafn í gagnagrunn" + +#: mod/install.php:186 +msgid "Database Login Password" +msgstr "Aðgangsorð í gagnagrunns" + +#: mod/install.php:186 +msgid "For security reasons the password must not be empty" +msgstr "" + +#: mod/install.php:187 +msgid "Database Name" +msgstr "Nafn gagnagrunns" + +#: mod/install.php:188 mod/install.php:228 +msgid "Site administrator email address" +msgstr "Tölvupóstfang kerfisstjóra vefsvæðis" + +#: mod/install.php:188 mod/install.php:228 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Póstfang aðgangsins þíns verður að passa við þetta til að hægt sé að nota umsýsluvefviðmótið." + +#: mod/install.php:192 mod/install.php:231 +msgid "Please select a default timezone for your website" +msgstr "Veldu sjálfgefið tímabelti fyrir vefsíðuna" + +#: mod/install.php:218 +msgid "Site settings" +msgstr "Stillingar vefsvæðis" + +#: mod/install.php:232 +msgid "System Language:" +msgstr "Tungumál kerfis:" + +#: mod/install.php:232 +msgid "" +"Set the default language for your Friendica installation interface and to " +"send emails." +msgstr "" + +#: mod/install.php:248 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "Ekki tókst að skrifa stillingaskrá gagnagrunns \".htconfig.php\". Notað meðfylgjandi texta til að búa til stillingarskrá í rót vefþjónsins." + +#: mod/install.php:265 +msgid "

What next

" +msgstr "" + +#: mod/install.php:266 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"worker." +msgstr "" + +#: mod/install.php:269 +#, php-format +msgid "" +"Go to your new Friendica node registration page " +"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 "" + +#: mod/message.php:30 src/Content/Nav.php:199 +msgid "New Message" +msgstr "Ný skilaboð" + +#: mod/message.php:77 +msgid "Unable to locate contact information." +msgstr "Ekki tókst að staðsetja tengiliðs upplýsingar." + +#: mod/message.php:112 view/theme/frio/theme.php:268 src/Content/Nav.php:196 +msgid "Messages" +msgstr "Skilaboð" + +#: mod/message.php:136 +msgid "Do you really want to delete this message?" +msgstr "Viltu virkilega eyða þessum skilaboðum?" + +#: mod/message.php:152 +msgid "Message deleted." +msgstr "Skilaboðum eytt." + +#: mod/message.php:166 +msgid "Conversation removed." +msgstr "Samtali eytt." + +#: mod/message.php:272 +msgid "No messages." +msgstr "Engin skilaboð." + +#: mod/message.php:311 +msgid "Message not available." +msgstr "Ekki næst í skilaboð." + +#: mod/message.php:378 +msgid "Delete message" +msgstr "Eyða skilaboðum" + +#: mod/message.php:380 mod/message.php:481 +msgid "D, d M Y - g:i A" +msgstr "D, d. M Y - g:i A" + +#: mod/message.php:395 mod/message.php:478 +msgid "Delete conversation" +msgstr "Eyða samtali" + +#: mod/message.php:397 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "" + +#: mod/message.php:401 +msgid "Send Reply" +msgstr "Senda svar" + +#: mod/message.php:452 +#, php-format +msgid "Unknown sender - %s" +msgstr "Óþekktur sendandi - %s" + +#: mod/message.php:454 +#, php-format +msgid "You and %s" +msgstr "Þú og %s" + +#: mod/message.php:456 +#, php-format +msgid "%s and You" +msgstr "%s og þú" + +#: mod/message.php:484 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d skilaboð" +msgstr[1] "%d skilaboð" + +#: mod/group.php:36 +msgid "Group created." +msgstr "Hópur stofnaður" + +#: mod/group.php:42 +msgid "Could not create group." +msgstr "Gat ekki stofnað hóp." + +#: mod/group.php:56 mod/group.php:157 +msgid "Group not found." +msgstr "Hópur fannst ekki." + +#: mod/group.php:70 +msgid "Group name changed." +msgstr "Hópur endurskýrður." + +#: mod/group.php:97 +msgid "Save Group" +msgstr "Vista hóp" + +#: mod/group.php:102 +msgid "Create a group of contacts/friends." +msgstr "Stofna hóp af tengiliðum/vinum" + +#: mod/group.php:103 mod/group.php:199 src/Model/Group.php:421 +msgid "Group Name: " +msgstr "Nafn hóps: " + +#: mod/group.php:127 +msgid "Group removed." +msgstr "Hópi eytt." + +#: mod/group.php:129 +msgid "Unable to remove group." +msgstr "Ekki tókst að eyða hóp." + +#: mod/group.php:192 +msgid "Delete Group" +msgstr "Eyða hópi" + +#: mod/group.php:198 +msgid "Group Editor" +msgstr "Hópa sýslari" + +#: mod/group.php:203 +msgid "Edit Group Name" +msgstr "Breyta nafni hóps" + +#: mod/group.php:213 +msgid "Members" +msgstr "Meðlimir" + +#: mod/group.php:229 +msgid "Remove contact from group" +msgstr "" + +#: mod/group.php:253 +msgid "Add contact to group" +msgstr "" + +#: mod/openid.php:29 +msgid "OpenID protocol error. No ID returned." +msgstr "Samskiptavilla í OpenID. Ekkert auðkenni barst." + +#: mod/openid.php:66 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "" + +#: mod/openid.php:116 src/Module/Login.php:86 src/Module/Login.php:135 +msgid "Login failed." +msgstr "Innskráning mistókst." + +#: mod/admin.php:107 msgid "Theme settings updated." msgstr "Þemastillingar uppfærðar." -#: mod/admin.php:179 src/Content/Nav.php:174 +#: mod/admin.php:180 src/Content/Nav.php:175 msgid "Information" msgstr "Upplýsingar" -#: mod/admin.php:180 +#: mod/admin.php:181 msgid "Overview" msgstr "Yfirlit" -#: mod/admin.php:181 mod/admin.php:718 +#: mod/admin.php:182 mod/admin.php:722 msgid "Federation Statistics" msgstr "Tölfræði þjónasambands" -#: mod/admin.php:182 +#: mod/admin.php:183 msgid "Configuration" msgstr "Uppsetning" -#: mod/admin.php:183 mod/admin.php:1345 +#: mod/admin.php:184 mod/admin.php:1357 msgid "Site" msgstr "Vefur" -#: mod/admin.php:184 mod/admin.php:1273 mod/admin.php:1788 mod/admin.php:1804 +#: mod/admin.php:185 mod/admin.php:1289 mod/admin.php:1817 mod/admin.php:1833 msgid "Users" msgstr "Notendur" -#: mod/admin.php:185 mod/admin.php:1904 mod/admin.php:1964 mod/settings.php:86 +#: mod/admin.php:186 mod/admin.php:1933 mod/admin.php:1993 mod/settings.php:87 msgid "Addons" msgstr "Forritsviðbætur" -#: mod/admin.php:186 mod/admin.php:2173 mod/admin.php:2217 +#: mod/admin.php:187 mod/admin.php:2202 mod/admin.php:2246 msgid "Themes" msgstr "Þemu" -#: mod/admin.php:187 mod/settings.php:64 +#: mod/admin.php:188 mod/settings.php:65 msgid "Additional features" msgstr "Viðbótareiginleikar" -#: mod/admin.php:189 +#: mod/admin.php:189 mod/admin.php:304 mod/register.php:291 +#: src/Content/Nav.php:178 src/Module/Tos.php:70 +msgid "Terms of Service" +msgstr "Þjónustuskilmálar" + +#: mod/admin.php:190 msgid "Database" msgstr "Gagnagrunnur" -#: mod/admin.php:190 +#: mod/admin.php:191 msgid "DB updates" msgstr "Gagnagrunnsuppfærslur" -#: mod/admin.php:191 mod/admin.php:753 +#: mod/admin.php:192 mod/admin.php:757 msgid "Inspect Queue" msgstr "" -#: mod/admin.php:192 +#: mod/admin.php:193 msgid "Tools" msgstr "Verkfæri" -#: mod/admin.php:193 +#: mod/admin.php:194 msgid "Contact Blocklist" msgstr "Svartur listi tengiliðar" -#: mod/admin.php:194 mod/admin.php:362 +#: mod/admin.php:195 mod/admin.php:366 msgid "Server Blocklist" msgstr "Svartur listi vefþjóns" -#: mod/admin.php:195 mod/admin.php:521 +#: mod/admin.php:196 mod/admin.php:525 msgid "Delete Item" msgstr "Eyða atriði" -#: mod/admin.php:196 mod/admin.php:197 mod/admin.php:2291 +#: mod/admin.php:197 mod/admin.php:198 mod/admin.php:2320 msgid "Logs" msgstr "Atburðaskrá" -#: mod/admin.php:198 mod/admin.php:2358 +#: mod/admin.php:199 mod/admin.php:2387 msgid "View Logs" msgstr "Skoða atburðaskrár" -#: mod/admin.php:200 +#: mod/admin.php:201 msgid "Diagnostics" msgstr "Bilanagreining" -#: mod/admin.php:201 +#: mod/admin.php:202 msgid "PHP Info" msgstr "PHP-upplýsingar" -#: mod/admin.php:202 +#: mod/admin.php:203 msgid "probe address" msgstr "finna vistfang" -#: mod/admin.php:203 +#: mod/admin.php:204 msgid "check webfinger" msgstr "" -#: mod/admin.php:222 src/Content/Nav.php:217 +#: mod/admin.php:223 src/Content/Nav.php:218 msgid "Admin" msgstr "Stjórnandi" -#: mod/admin.php:223 +#: mod/admin.php:224 msgid "Addon Features" msgstr "Eiginleikar forritsviðbótar" -#: mod/admin.php:224 +#: mod/admin.php:225 msgid "User registrations waiting for confirmation" msgstr "Notenda nýskráningar bíða samþykkis" -#: mod/admin.php:301 mod/admin.php:361 mod/admin.php:478 mod/admin.php:520 -#: mod/admin.php:717 mod/admin.php:752 mod/admin.php:848 mod/admin.php:1344 -#: mod/admin.php:1787 mod/admin.php:1903 mod/admin.php:1963 mod/admin.php:2172 -#: mod/admin.php:2216 mod/admin.php:2290 mod/admin.php:2357 +#: mod/admin.php:303 mod/admin.php:365 mod/admin.php:482 mod/admin.php:524 +#: mod/admin.php:721 mod/admin.php:756 mod/admin.php:852 mod/admin.php:1356 +#: mod/admin.php:1816 mod/admin.php:1932 mod/admin.php:1992 mod/admin.php:2201 +#: mod/admin.php:2245 mod/admin.php:2319 mod/admin.php:2386 msgid "Administration" msgstr "Stjórnun" -#: mod/admin.php:303 +#: mod/admin.php:305 msgid "Display Terms of Service" msgstr "" -#: mod/admin.php:303 +#: mod/admin.php:305 msgid "" "Enable the Terms of Service page. If this is enabled a link to the terms " "will be added to the registration form and the general information page." msgstr "" -#: mod/admin.php:304 +#: mod/admin.php:306 msgid "Display Privacy Statement" msgstr "" -#: mod/admin.php:304 +#: mod/admin.php:306 #, php-format msgid "" "Show some informations regarding the needed information to operate the node " "according e.g. to EU-GDPR." msgstr "" -#: mod/admin.php:305 +#: mod/admin.php:307 +msgid "Privacy Statement Preview" +msgstr "" + +#: mod/admin.php:309 msgid "The Terms of Service" msgstr "" -#: mod/admin.php:305 +#: mod/admin.php:309 msgid "" "Enter the Terms of Service for your node here. You can use BBCode. Headers " "of sections should be [h2] and below." msgstr "" -#: mod/admin.php:353 +#: mod/admin.php:357 msgid "The blocked domain" msgstr "" -#: mod/admin.php:354 mod/admin.php:367 +#: mod/admin.php:358 mod/admin.php:371 msgid "The reason why you blocked this domain." msgstr "" -#: mod/admin.php:355 +#: mod/admin.php:359 msgid "Delete domain" msgstr "Eyða léni" -#: mod/admin.php:355 +#: mod/admin.php:359 msgid "Check to delete this entry from the blocklist" msgstr "" -#: mod/admin.php:363 +#: mod/admin.php:367 msgid "" "This page can be used to define a black list of servers from the federated " "network that are not allowed to interact with your node. For all entered " @@ -5210,210 +4092,214 @@ msgid "" "server." msgstr "" -#: mod/admin.php:364 +#: mod/admin.php:368 msgid "" "The list of blocked servers will be made publically available on the " "/friendica page so that your users and people investigating communication " "problems can find the reason easily." msgstr "" -#: mod/admin.php:365 +#: mod/admin.php:369 msgid "Add new entry to block list" msgstr "" -#: mod/admin.php:366 +#: mod/admin.php:370 msgid "Server Domain" msgstr "" -#: mod/admin.php:366 +#: mod/admin.php:370 msgid "" "The domain of the new server to add to the block list. Do not include the " "protocol." msgstr "" -#: mod/admin.php:367 +#: mod/admin.php:371 msgid "Block reason" msgstr "Ástæða fyrir útilokun" -#: mod/admin.php:368 +#: mod/admin.php:372 msgid "Add Entry" msgstr "Bæta við færslu" -#: mod/admin.php:369 +#: mod/admin.php:373 msgid "Save changes to the blocklist" msgstr "" -#: mod/admin.php:370 +#: mod/admin.php:374 msgid "Current Entries in the Blocklist" msgstr "" -#: mod/admin.php:373 +#: mod/admin.php:377 msgid "Delete entry from blocklist" msgstr "" -#: mod/admin.php:376 +#: mod/admin.php:380 msgid "Delete entry from blocklist?" msgstr "" -#: mod/admin.php:402 +#: mod/admin.php:406 msgid "Server added to blocklist." msgstr "" -#: mod/admin.php:418 +#: mod/admin.php:422 msgid "Site blocklist updated." msgstr "" -#: mod/admin.php:441 src/Core/Console/GlobalCommunityBlock.php:72 +#: mod/admin.php:445 src/Core/Console/GlobalCommunityBlock.php:72 msgid "The contact has been blocked from the node" msgstr "" -#: mod/admin.php:443 src/Core/Console/GlobalCommunityBlock.php:69 +#: mod/admin.php:447 src/Core/Console/GlobalCommunityBlock.php:69 #, php-format msgid "Could not find any contact entry for this URL (%s)" msgstr "" -#: mod/admin.php:450 +#: mod/admin.php:454 #, php-format msgid "%s contact unblocked" msgid_plural "%s contacts unblocked" msgstr[0] "" msgstr[1] "" -#: mod/admin.php:479 +#: mod/admin.php:483 msgid "Remote Contact Blocklist" msgstr "" -#: mod/admin.php:480 +#: mod/admin.php:484 msgid "" "This page allows you to prevent any message from a remote contact to reach " "your node." msgstr "" -#: mod/admin.php:481 +#: mod/admin.php:485 msgid "Block Remote Contact" -msgstr "" +msgstr "Útiloka fjartengdan tengilið" -#: mod/admin.php:482 mod/admin.php:1790 +#: mod/admin.php:486 mod/admin.php:1819 msgid "select all" msgstr "velja alla" -#: mod/admin.php:483 +#: mod/admin.php:487 msgid "select none" msgstr "velja ekkert" -#: mod/admin.php:486 +#: mod/admin.php:490 msgid "No remote contact is blocked from this node." msgstr "" -#: mod/admin.php:488 +#: mod/admin.php:492 msgid "Blocked Remote Contacts" -msgstr "" +msgstr "Útilokaðir fjartengdir tengiliðir" -#: mod/admin.php:489 +#: mod/admin.php:493 msgid "Block New Remote Contact" -msgstr "" +msgstr "Útiloka nýjan fjartengdan tengilið" -#: mod/admin.php:490 +#: mod/admin.php:494 msgid "Photo" msgstr "Ljósmynd" -#: mod/admin.php:498 +#: mod/admin.php:494 mod/profiles.php:394 +msgid "Address" +msgstr "Heimilisfang" + +#: mod/admin.php:502 #, php-format msgid "%s total blocked contact" msgid_plural "%s total blocked contacts" msgstr[0] "" msgstr[1] "" -#: mod/admin.php:500 +#: mod/admin.php:504 msgid "URL of the remote contact to block." msgstr "" -#: mod/admin.php:522 +#: mod/admin.php:526 msgid "Delete this Item" msgstr "Eyða þessu atriði" -#: mod/admin.php:523 +#: mod/admin.php:527 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." msgstr "" -#: mod/admin.php:524 +#: mod/admin.php:528 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 "" -#: mod/admin.php:525 +#: mod/admin.php:529 msgid "GUID" msgstr "" -#: mod/admin.php:525 +#: mod/admin.php:529 msgid "The GUID of the item you want to delete." msgstr "" -#: mod/admin.php:564 +#: mod/admin.php:568 msgid "Item marked for deletion." msgstr "Atriði merkt til eyðingar." -#: mod/admin.php:635 +#: mod/admin.php:639 msgid "unknown" msgstr "óþekkt" -#: mod/admin.php:711 +#: mod/admin.php:715 msgid "" "This page offers you some numbers to the known part of the federated social " "network your Friendica node is part of. These numbers are not complete but " "only reflect the part of the network your node is aware of." msgstr "" -#: mod/admin.php:712 +#: mod/admin.php:716 msgid "" "The Auto Discovered Contact Directory feature is not enabled, it " "will improve the data displayed here." msgstr "" -#: mod/admin.php:724 +#: mod/admin.php:728 #, php-format msgid "" "Currently this node is aware of %d nodes with %d registered users from the " "following platforms:" msgstr "" -#: mod/admin.php:755 +#: mod/admin.php:759 msgid "ID" msgstr "Auðkenni (ID)" -#: mod/admin.php:756 +#: mod/admin.php:760 msgid "Recipient Name" msgstr "Nafn viðtakanda" -#: mod/admin.php:757 +#: mod/admin.php:761 msgid "Recipient Profile" msgstr "Forsíða viðtakanda" -#: mod/admin.php:758 src/Core/NotificationsManager.php:178 -#: src/Content/Nav.php:178 view/theme/frio/theme.php:266 +#: mod/admin.php:762 view/theme/frio/theme.php:266 +#: src/Core/NotificationsManager.php:178 src/Content/Nav.php:183 msgid "Network" msgstr "Samfélag" -#: mod/admin.php:759 +#: mod/admin.php:763 msgid "Created" msgstr "Búið til" -#: mod/admin.php:760 +#: mod/admin.php:764 msgid "Last Tried" msgstr "Síðast prófað" -#: mod/admin.php:761 +#: mod/admin.php:765 msgid "" "This page lists the content of the queue for outgoing postings. These are " "postings the initial delivery failed for. They will be resend later and " "eventually deleted if the delivery fails permanently." msgstr "" -#: mod/admin.php:785 +#: mod/admin.php:789 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -5424,480 +4310,488 @@ msgid "" " an automatic conversion.
" msgstr "" -#: mod/admin.php:792 +#: mod/admin.php:796 #, php-format msgid "" "There is a new version of Friendica available for download. Your current " "version is %1$s, upstream version is %2$s" msgstr "" -#: mod/admin.php:802 +#: mod/admin.php:806 msgid "" "The database update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear." msgstr "" -#: mod/admin.php:808 +#: mod/admin.php:812 msgid "The worker was never executed. Please check your database structure!" msgstr "" -#: mod/admin.php:811 +#: mod/admin.php:815 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "" -#: mod/admin.php:816 mod/admin.php:1739 +#: mod/admin.php:820 msgid "Normal Account" msgstr "Venjulegur notandi" -#: mod/admin.php:817 mod/admin.php:1740 +#: mod/admin.php:821 msgid "Automatic Follower Account" msgstr "" -#: mod/admin.php:818 mod/admin.php:1741 +#: mod/admin.php:822 msgid "Public Forum Account" msgstr "" -#: mod/admin.php:819 mod/admin.php:1742 +#: mod/admin.php:823 msgid "Automatic Friend Account" msgstr "Verður sjálfkrafa vinur notandi" -#: mod/admin.php:820 +#: mod/admin.php:824 msgid "Blog Account" msgstr "" -#: mod/admin.php:821 +#: mod/admin.php:825 msgid "Private Forum Account" msgstr "" -#: mod/admin.php:843 +#: mod/admin.php:847 msgid "Message queues" msgstr "" -#: mod/admin.php:849 +#: mod/admin.php:853 msgid "Summary" msgstr "Samantekt" -#: mod/admin.php:851 +#: mod/admin.php:855 msgid "Registered users" msgstr "Skráðir notendur" -#: mod/admin.php:853 +#: mod/admin.php:857 msgid "Pending registrations" msgstr "Nýskráningar í bið" -#: mod/admin.php:854 +#: mod/admin.php:858 msgid "Version" msgstr "Útgáfunúmer" -#: mod/admin.php:859 +#: mod/admin.php:863 msgid "Active addons" msgstr "" -#: mod/admin.php:890 +#: mod/admin.php:894 msgid "Can not parse base url. Must have at least ://" msgstr "" -#: mod/admin.php:1209 +#: mod/admin.php:1224 msgid "Site settings updated." msgstr "Stillingar vefsvæðis uppfærðar." -#: mod/admin.php:1236 mod/settings.php:905 +#: mod/admin.php:1251 mod/settings.php:897 msgid "No special theme for mobile devices" msgstr "" -#: mod/admin.php:1265 +#: mod/admin.php:1280 +msgid "No community page for local users" +msgstr "" + +#: mod/admin.php:1281 msgid "No community page" msgstr "" -#: mod/admin.php:1266 +#: mod/admin.php:1282 msgid "Public postings from users of this site" msgstr "" -#: mod/admin.php:1267 +#: mod/admin.php:1283 msgid "Public postings from the federated network" msgstr "" -#: mod/admin.php:1268 +#: mod/admin.php:1284 msgid "Public postings from local users and the federated network" msgstr "" -#: mod/admin.php:1274 +#: mod/admin.php:1290 msgid "Users, Global Contacts" msgstr "" -#: mod/admin.php:1275 +#: mod/admin.php:1291 msgid "Users, Global Contacts/fallback" msgstr "" -#: mod/admin.php:1279 +#: mod/admin.php:1295 msgid "One month" msgstr "Einn mánuður" -#: mod/admin.php:1280 +#: mod/admin.php:1296 msgid "Three months" msgstr "Þrír mánuðir" -#: mod/admin.php:1281 +#: mod/admin.php:1297 msgid "Half a year" msgstr "Hálft ár" -#: mod/admin.php:1282 +#: mod/admin.php:1298 msgid "One year" msgstr "Eitt ár" -#: mod/admin.php:1287 +#: mod/admin.php:1303 msgid "Multi user instance" msgstr "" -#: mod/admin.php:1310 +#: mod/admin.php:1326 msgid "Closed" msgstr "Lokað" -#: mod/admin.php:1311 +#: mod/admin.php:1327 msgid "Requires approval" msgstr "Þarf samþykki" -#: mod/admin.php:1312 +#: mod/admin.php:1328 msgid "Open" msgstr "Opið" -#: mod/admin.php:1316 +#: mod/admin.php:1332 msgid "No SSL policy, links will track page SSL state" msgstr "" -#: mod/admin.php:1317 +#: mod/admin.php:1333 msgid "Force all links to use SSL" msgstr "" -#: mod/admin.php:1318 +#: mod/admin.php:1334 msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "" -#: mod/admin.php:1322 +#: mod/admin.php:1338 msgid "Don't check" msgstr "" -#: mod/admin.php:1323 +#: mod/admin.php:1339 msgid "check the stable version" msgstr "" -#: mod/admin.php:1324 +#: mod/admin.php:1340 msgid "check the development version" msgstr "" -#: mod/admin.php:1347 +#: mod/admin.php:1359 msgid "Republish users to directory" msgstr "" -#: mod/admin.php:1349 +#: mod/admin.php:1360 mod/register.php:267 +msgid "Registration" +msgstr "Nýskráning" + +#: mod/admin.php:1361 msgid "File upload" msgstr "Hlaða upp skrá" -#: mod/admin.php:1350 +#: mod/admin.php:1362 msgid "Policies" msgstr "Stefna" -#: mod/admin.php:1352 +#: mod/admin.php:1364 msgid "Auto Discovered Contact Directory" msgstr "" -#: mod/admin.php:1353 +#: mod/admin.php:1365 msgid "Performance" msgstr "Afköst" -#: mod/admin.php:1354 +#: mod/admin.php:1366 msgid "Worker" msgstr "" -#: mod/admin.php:1355 +#: mod/admin.php:1367 msgid "Message Relay" msgstr "" -#: mod/admin.php:1356 +#: mod/admin.php:1368 msgid "" "Relocate - WARNING: advanced function. Could make this server unreachable." msgstr "" -#: mod/admin.php:1359 +#: mod/admin.php:1371 msgid "Site name" msgstr "Nafn vefsvæðis" -#: mod/admin.php:1360 +#: mod/admin.php:1372 msgid "Host name" msgstr "Vélarheiti" -#: mod/admin.php:1361 +#: mod/admin.php:1373 msgid "Sender Email" msgstr "Tölvupóstfang sendanda" -#: mod/admin.php:1361 +#: mod/admin.php:1373 msgid "" "The email address your server shall use to send notification emails from." msgstr "" -#: mod/admin.php:1362 +#: mod/admin.php:1374 msgid "Banner/Logo" msgstr "Borði/Merki" -#: mod/admin.php:1363 +#: mod/admin.php:1375 msgid "Shortcut icon" msgstr "Táknmynd flýtivísunar" -#: mod/admin.php:1363 +#: mod/admin.php:1375 msgid "Link to an icon that will be used for browsers." msgstr "" -#: mod/admin.php:1364 +#: mod/admin.php:1376 msgid "Touch icon" msgstr "" -#: mod/admin.php:1364 +#: mod/admin.php:1376 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "" -#: mod/admin.php:1365 +#: mod/admin.php:1377 msgid "Additional Info" msgstr "Viðbótarupplýsingar" -#: mod/admin.php:1365 +#: mod/admin.php:1377 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/servers." msgstr "" -#: mod/admin.php:1366 +#: mod/admin.php:1378 msgid "System language" msgstr "Tungumál kerfis" -#: mod/admin.php:1367 +#: mod/admin.php:1379 msgid "System theme" msgstr "Þema kerfis" -#: mod/admin.php:1367 +#: mod/admin.php:1379 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "" -#: mod/admin.php:1368 +#: mod/admin.php:1380 msgid "Mobile system theme" msgstr "" -#: mod/admin.php:1368 +#: mod/admin.php:1380 msgid "Theme for mobile devices" msgstr "" -#: mod/admin.php:1369 +#: mod/admin.php:1381 msgid "SSL link policy" msgstr "" -#: mod/admin.php:1369 +#: mod/admin.php:1381 msgid "Determines whether generated links should be forced to use SSL" msgstr "" -#: mod/admin.php:1370 +#: mod/admin.php:1382 msgid "Force SSL" msgstr "Þvinga SSL" -#: mod/admin.php:1370 +#: mod/admin.php:1382 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "" -#: mod/admin.php:1371 +#: mod/admin.php:1383 msgid "Hide help entry from navigation menu" msgstr "" -#: mod/admin.php:1371 +#: mod/admin.php:1383 msgid "" "Hides the menu entry for the Help pages from the navigation menu. You can " "still access it calling /help directly." msgstr "" -#: mod/admin.php:1372 +#: mod/admin.php:1384 msgid "Single user instance" msgstr "" -#: mod/admin.php:1372 +#: mod/admin.php:1384 msgid "Make this instance multi-user or single-user for the named user" msgstr "" -#: mod/admin.php:1373 +#: mod/admin.php:1385 msgid "Maximum image size" msgstr "Mesta stærð mynda" -#: mod/admin.php:1373 +#: mod/admin.php:1385 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "" -#: mod/admin.php:1374 +#: mod/admin.php:1386 msgid "Maximum image length" msgstr "" -#: mod/admin.php:1374 +#: mod/admin.php:1386 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "" -#: mod/admin.php:1375 +#: mod/admin.php:1387 msgid "JPEG image quality" msgstr "JPEG myndgæði" -#: mod/admin.php:1375 +#: mod/admin.php:1387 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "" -#: mod/admin.php:1377 +#: mod/admin.php:1389 msgid "Register policy" msgstr "Stefna varðandi nýskráningar" -#: mod/admin.php:1378 +#: mod/admin.php:1390 msgid "Maximum Daily Registrations" msgstr "" -#: mod/admin.php:1378 +#: mod/admin.php:1390 msgid "" "If registration is permitted above, this sets the maximum number of new user" " registrations to accept per day. If register is set to closed, this " "setting has no effect." msgstr "" -#: mod/admin.php:1379 +#: mod/admin.php:1391 msgid "Register text" msgstr "Texti við nýskráningu" -#: mod/admin.php:1379 +#: mod/admin.php:1391 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "" -#: mod/admin.php:1380 +#: mod/admin.php:1392 msgid "Accounts abandoned after x days" msgstr "Yfirgefnir notendur eftir x daga" -#: mod/admin.php:1380 +#: mod/admin.php:1392 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Hættir að eyða afli í að sækja færslur á ytri vefi fyrir yfirgefna notendur. 0 þýðir notendur merkjast ekki yfirgefnir." -#: mod/admin.php:1381 +#: mod/admin.php:1393 msgid "Allowed friend domains" msgstr "Leyfð lén vina" -#: mod/admin.php:1381 +#: mod/admin.php:1393 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "" -#: mod/admin.php:1382 +#: mod/admin.php:1394 msgid "Allowed email domains" -msgstr "Leyfð lén póstfangs" +msgstr "Leyfð tölvupóstfangalén" -#: mod/admin.php:1382 +#: mod/admin.php:1394 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "" -#: mod/admin.php:1383 +#: mod/admin.php:1395 msgid "No OEmbed rich content" msgstr "" -#: mod/admin.php:1383 +#: mod/admin.php:1395 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "" -#: mod/admin.php:1384 +#: mod/admin.php:1396 msgid "Allowed OEmbed domains" msgstr "" -#: mod/admin.php:1384 +#: mod/admin.php:1396 msgid "" "Comma separated list of domains which oembed content is allowed to be " "displayed. Wildcards are accepted." msgstr "" -#: mod/admin.php:1385 +#: mod/admin.php:1397 msgid "Block public" msgstr "Loka á opinberar færslur" -#: mod/admin.php:1385 +#: mod/admin.php:1397 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "" -#: mod/admin.php:1386 +#: mod/admin.php:1398 msgid "Force publish" msgstr "Skylda að vera í tengiliðalista" -#: mod/admin.php:1386 +#: mod/admin.php:1398 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: mod/admin.php:1387 +#: mod/admin.php:1399 msgid "Global directory URL" msgstr "" -#: mod/admin.php:1387 +#: mod/admin.php:1399 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "" -#: mod/admin.php:1388 +#: mod/admin.php:1400 msgid "Private posts by default for new users" msgstr "" -#: mod/admin.php:1388 +#: mod/admin.php:1400 msgid "" "Set default post permissions for all new members to the default privacy " "group rather than public." msgstr "" -#: mod/admin.php:1389 +#: mod/admin.php:1401 msgid "Don't include post content in email notifications" msgstr "" -#: mod/admin.php:1389 +#: mod/admin.php:1401 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr "" -#: mod/admin.php:1390 +#: mod/admin.php:1402 msgid "Disallow public access to addons listed in the apps menu." msgstr "Hindra opið aðgengi að viðbótum í forritavalmyndinni." -#: mod/admin.php:1390 +#: mod/admin.php:1402 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "Ef hakað er í þetta verður aðgengi að viðbótum í forritavalmyndinni takmarkað við meðlimi." -#: mod/admin.php:1391 +#: mod/admin.php:1403 msgid "Don't embed private images in posts" msgstr "" -#: mod/admin.php:1391 +#: mod/admin.php:1403 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " @@ -5905,210 +4799,210 @@ msgid "" "while." msgstr "" -#: mod/admin.php:1392 +#: mod/admin.php:1404 msgid "Allow Users to set remote_self" msgstr "" -#: mod/admin.php:1392 +#: mod/admin.php:1404 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "" -#: mod/admin.php:1393 +#: mod/admin.php:1405 msgid "Block multiple registrations" msgstr "Banna margar skráningar" -#: mod/admin.php:1393 +#: mod/admin.php:1405 msgid "Disallow users to register additional accounts for use as pages." msgstr "" -#: mod/admin.php:1394 +#: mod/admin.php:1406 msgid "OpenID support" msgstr "Leyfa OpenID auðkenningu" -#: mod/admin.php:1394 +#: mod/admin.php:1406 msgid "OpenID support for registration and logins." msgstr "" -#: mod/admin.php:1395 +#: mod/admin.php:1407 msgid "Fullname check" msgstr "Fullt nafn skilyrði" -#: mod/admin.php:1395 +#: mod/admin.php:1407 msgid "" "Force users to register with a space between firstname and lastname in Full " "name, as an antispam measure" msgstr "" -#: mod/admin.php:1396 +#: mod/admin.php:1408 msgid "Community pages for visitors" msgstr "" -#: mod/admin.php:1396 +#: mod/admin.php:1408 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "" -#: mod/admin.php:1397 +#: mod/admin.php:1409 msgid "Posts per user on community page" msgstr "" -#: mod/admin.php:1397 +#: mod/admin.php:1409 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "'Global Community')" msgstr "" -#: mod/admin.php:1398 +#: mod/admin.php:1410 msgid "Enable OStatus support" msgstr "Leyfa OStatus stuðning" -#: mod/admin.php:1398 +#: mod/admin.php:1410 msgid "" "Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public, so privacy warnings will be " "occasionally displayed." msgstr "" -#: mod/admin.php:1399 +#: mod/admin.php:1411 msgid "Only import OStatus threads from our contacts" msgstr "" -#: mod/admin.php:1399 +#: mod/admin.php:1411 msgid "" "Normally we import every content from our OStatus contacts. With this option" " we only store threads that are started by a contact that is known on our " "system." msgstr "" -#: mod/admin.php:1400 +#: mod/admin.php:1412 msgid "OStatus support can only be enabled if threading is enabled." msgstr "" -#: mod/admin.php:1402 +#: mod/admin.php:1414 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "" -#: mod/admin.php:1403 +#: mod/admin.php:1415 msgid "Enable Diaspora support" msgstr "Leyfa Diaspora tengingar" -#: mod/admin.php:1403 +#: mod/admin.php:1415 msgid "Provide built-in Diaspora network compatibility." msgstr "" -#: mod/admin.php:1404 +#: mod/admin.php:1416 msgid "Only allow Friendica contacts" msgstr "Aðeins leyfa Friendica notendur" -#: mod/admin.php:1404 +#: mod/admin.php:1416 msgid "" "All contacts must use Friendica protocols. All other built-in communication " "protocols disabled." msgstr "" -#: mod/admin.php:1405 +#: mod/admin.php:1417 msgid "Verify SSL" msgstr "Sannreyna SSL" -#: mod/admin.php:1405 +#: mod/admin.php:1417 msgid "" "If you wish, you can turn on strict certificate checking. This will mean you" " cannot connect (at all) to self-signed SSL sites." msgstr "" -#: mod/admin.php:1406 +#: mod/admin.php:1418 msgid "Proxy user" msgstr "Proxy notandi" -#: mod/admin.php:1407 +#: mod/admin.php:1419 msgid "Proxy URL" msgstr "Proxy slóð" -#: mod/admin.php:1408 +#: mod/admin.php:1420 msgid "Network timeout" msgstr "Net tími útrunninn" -#: mod/admin.php:1408 +#: mod/admin.php:1420 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "" -#: mod/admin.php:1409 +#: mod/admin.php:1421 msgid "Maximum Load Average" msgstr "Mesta meðaltals álag" -#: mod/admin.php:1409 +#: mod/admin.php:1421 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "" -#: mod/admin.php:1410 +#: mod/admin.php:1422 msgid "Maximum Load Average (Frontend)" msgstr "" -#: mod/admin.php:1410 +#: mod/admin.php:1422 msgid "Maximum system load before the frontend quits service - default 50." msgstr "" -#: mod/admin.php:1411 +#: mod/admin.php:1423 msgid "Minimal Memory" msgstr "" -#: mod/admin.php:1411 +#: mod/admin.php:1423 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "" -#: mod/admin.php:1412 +#: mod/admin.php:1424 msgid "Maximum table size for optimization" msgstr "" -#: mod/admin.php:1412 +#: mod/admin.php:1424 msgid "" -"Maximum table size (in MB) for the automatic optimization - default 100 MB. " -"Enter -1 to disable it." +"Maximum table size (in MB) for the automatic optimization. Enter -1 to " +"disable it." msgstr "" -#: mod/admin.php:1413 +#: mod/admin.php:1425 msgid "Minimum level of fragmentation" msgstr "" -#: mod/admin.php:1413 +#: mod/admin.php:1425 msgid "" "Minimum fragmenation level to start the automatic optimization - default " "value is 30%." msgstr "" -#: mod/admin.php:1415 +#: mod/admin.php:1427 msgid "Periodical check of global contacts" msgstr "" -#: mod/admin.php:1415 +#: mod/admin.php:1427 msgid "" "If enabled, the global contacts are checked periodically for missing or " "outdated data and the vitality of the contacts and servers." msgstr "" -#: mod/admin.php:1416 +#: mod/admin.php:1428 msgid "Days between requery" msgstr "" -#: mod/admin.php:1416 +#: mod/admin.php:1428 msgid "Number of days after which a server is requeried for his contacts." msgstr "" -#: mod/admin.php:1417 +#: mod/admin.php:1429 msgid "Discover contacts from other servers" msgstr "" -#: mod/admin.php:1417 +#: mod/admin.php:1429 msgid "" "Periodically query other servers for contacts. You can choose between " "'users': the users on the remote system, 'Global Contacts': active contacts " @@ -6118,32 +5012,32 @@ msgid "" "Global Contacts'." msgstr "" -#: mod/admin.php:1418 +#: mod/admin.php:1430 msgid "Timeframe for fetching global contacts" msgstr "" -#: mod/admin.php:1418 +#: mod/admin.php:1430 msgid "" "When the discovery is activated, this value defines the timeframe for the " "activity of the global contacts that are fetched from other servers." msgstr "" -#: mod/admin.php:1419 +#: mod/admin.php:1431 msgid "Search the local directory" msgstr "" -#: mod/admin.php:1419 +#: mod/admin.php:1431 msgid "" "Search the local directory instead of the global directory. When searching " "locally, every search will be executed on the global directory in the " "background. This improves the search results when the search is repeated." msgstr "" -#: mod/admin.php:1421 +#: mod/admin.php:1433 msgid "Publish server information" msgstr "" -#: mod/admin.php:1421 +#: mod/admin.php:1433 msgid "" "If enabled, general server and usage data will be published. The data " "contains the name and version of the server, number of users with public " @@ -6151,147 +5045,180 @@ msgid "" " href='http://the-federation.info/'>the-federation.info for details." msgstr "" -#: mod/admin.php:1423 +#: mod/admin.php:1435 msgid "Check upstream version" msgstr "" -#: mod/admin.php:1423 +#: mod/admin.php:1435 msgid "" "Enables checking for new Friendica versions at github. If there is a new " "version, you will be informed in the admin panel overview." msgstr "" -#: mod/admin.php:1424 +#: mod/admin.php:1436 msgid "Suppress Tags" msgstr "" -#: mod/admin.php:1424 +#: mod/admin.php:1436 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "" -#: mod/admin.php:1425 +#: mod/admin.php:1437 +msgid "Clean database" +msgstr "" + +#: mod/admin.php:1437 +msgid "" +"Remove old remote items, orphaned database records and old content from some" +" other helper tables." +msgstr "" + +#: mod/admin.php:1438 +msgid "Lifespan of remote items" +msgstr "Líftími fjartengdra atriða" + +#: mod/admin.php:1438 +msgid "" +"When the database cleanup is enabled, this defines the days after which " +"remote items will be deleted. Own items, and marked or filed items are " +"always kept. 0 disables this behaviour." +msgstr "" + +#: mod/admin.php:1439 +msgid "Lifespan of unclaimed items" +msgstr "" + +#: mod/admin.php:1439 +msgid "" +"When the database cleanup is enabled, this defines the days after which " +"unclaimed remote items (mostly content from the relay) will be deleted. " +"Default value is 90 days. Defaults to the general lifespan value of remote " +"items if set to 0." +msgstr "" + +#: mod/admin.php:1440 msgid "Path to item cache" msgstr "" -#: mod/admin.php:1425 +#: mod/admin.php:1440 msgid "The item caches buffers generated bbcode and external images." msgstr "" -#: mod/admin.php:1426 +#: mod/admin.php:1441 msgid "Cache duration in seconds" msgstr "" -#: mod/admin.php:1426 +#: mod/admin.php:1441 msgid "" "How long should the cache files be hold? Default value is 86400 seconds (One" " day). To disable the item cache, set the value to -1." msgstr "" -#: mod/admin.php:1427 +#: mod/admin.php:1442 msgid "Maximum numbers of comments per post" msgstr "" -#: mod/admin.php:1427 +#: mod/admin.php:1442 msgid "How much comments should be shown for each post? Default value is 100." msgstr "" -#: mod/admin.php:1428 +#: mod/admin.php:1443 msgid "Temp path" msgstr "" -#: mod/admin.php:1428 +#: mod/admin.php:1443 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "" -#: mod/admin.php:1429 +#: mod/admin.php:1444 msgid "Base path to installation" msgstr "" -#: mod/admin.php:1429 +#: mod/admin.php:1444 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 "" -#: mod/admin.php:1430 +#: mod/admin.php:1445 msgid "Disable picture proxy" msgstr "" -#: mod/admin.php:1430 +#: mod/admin.php:1445 msgid "" "The picture proxy increases performance and privacy. It shouldn't be used on" " systems with very low bandwith." msgstr "" -#: mod/admin.php:1431 +#: mod/admin.php:1446 msgid "Only search in tags" msgstr "" -#: mod/admin.php:1431 +#: mod/admin.php:1446 msgid "On large systems the text search can slow down the system extremely." msgstr "" -#: mod/admin.php:1433 +#: mod/admin.php:1448 msgid "New base url" msgstr "" -#: mod/admin.php:1433 +#: mod/admin.php:1448 msgid "" "Change base url for this server. Sends relocate message to all Friendica and" " Diaspora* contacts of all users." msgstr "" -#: mod/admin.php:1435 +#: mod/admin.php:1450 msgid "RINO Encryption" msgstr "" -#: mod/admin.php:1435 +#: mod/admin.php:1450 msgid "Encryption layer between nodes." msgstr "" -#: mod/admin.php:1435 +#: mod/admin.php:1450 msgid "Enabled" msgstr "Virkt" -#: mod/admin.php:1437 +#: mod/admin.php:1452 msgid "Maximum number of parallel workers" msgstr "" -#: mod/admin.php:1437 +#: mod/admin.php:1452 msgid "" "On shared hosters set this to 2. On larger systems, values of 10 are great. " "Default value is 4." msgstr "" -#: mod/admin.php:1438 +#: mod/admin.php:1453 msgid "Don't use 'proc_open' with the worker" msgstr "" -#: mod/admin.php:1438 +#: mod/admin.php:1453 msgid "" "Enable this if your system doesn't allow the use of 'proc_open'. This can " "happen on shared hosters. If this is enabled you should increase the " "frequency of worker calls in your crontab." msgstr "" -#: mod/admin.php:1439 +#: mod/admin.php:1454 msgid "Enable fastlane" msgstr "" -#: mod/admin.php:1439 +#: mod/admin.php:1454 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes" " with higher priority are blocked by processes of lower priority." msgstr "" -#: mod/admin.php:1440 +#: mod/admin.php:1455 msgid "Enable frontend worker" msgstr "" -#: mod/admin.php:1440 +#: mod/admin.php:1455 #, php-format msgid "" "When enabled the Worker process is triggered when backend access is " @@ -6301,132 +5228,132 @@ msgid "" " on your server." msgstr "" -#: mod/admin.php:1442 +#: mod/admin.php:1457 msgid "Subscribe to relay" msgstr "" -#: mod/admin.php:1442 +#: mod/admin.php:1457 msgid "" "Enables the receiving of public posts from the relay. They will be included " "in the search, subscribed tags and on the global community page." msgstr "" -#: mod/admin.php:1443 +#: mod/admin.php:1458 msgid "Relay server" msgstr "" -#: mod/admin.php:1443 +#: mod/admin.php:1458 msgid "" "Address of the relay server where public posts should be send to. For " "example https://relay.diasp.org" msgstr "" -#: mod/admin.php:1444 +#: mod/admin.php:1459 msgid "Direct relay transfer" msgstr "" -#: mod/admin.php:1444 +#: mod/admin.php:1459 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "" -#: mod/admin.php:1445 +#: mod/admin.php:1460 msgid "Relay scope" msgstr "" -#: mod/admin.php:1445 +#: mod/admin.php:1460 msgid "" "Can be 'all' or 'tags'. 'all' means that every public post should be " "received. 'tags' means that only posts with selected tags should be " "received." msgstr "" -#: mod/admin.php:1445 +#: mod/admin.php:1460 msgid "all" msgstr "allt" -#: mod/admin.php:1445 +#: mod/admin.php:1460 msgid "tags" msgstr "merki" -#: mod/admin.php:1446 +#: mod/admin.php:1461 msgid "Server tags" msgstr "" -#: mod/admin.php:1446 +#: mod/admin.php:1461 msgid "Comma separated list of tags for the 'tags' subscription." msgstr "" -#: mod/admin.php:1447 +#: mod/admin.php:1462 msgid "Allow user tags" msgstr "" -#: mod/admin.php:1447 +#: mod/admin.php:1462 msgid "" "If enabled, the tags from the saved searches will used for the 'tags' " "subscription in addition to the 'relay_server_tags'." msgstr "" -#: mod/admin.php:1475 +#: mod/admin.php:1490 msgid "Update has been marked successful" msgstr "Uppfærsla merkt sem tókst" -#: mod/admin.php:1482 +#: mod/admin.php:1497 #, php-format msgid "Database structure update %s was successfully applied." msgstr "" -#: mod/admin.php:1485 +#: mod/admin.php:1500 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "" -#: mod/admin.php:1498 +#: mod/admin.php:1513 #, php-format msgid "Executing %s failed with error: %s" msgstr "" -#: mod/admin.php:1500 +#: mod/admin.php:1515 #, php-format msgid "Update %s was successfully applied." msgstr "Uppfærsla %s framkvæmd." -#: mod/admin.php:1503 +#: mod/admin.php:1518 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "Uppfærsla %s skilaði ekki gildi. Óvíst hvort tókst." -#: mod/admin.php:1506 +#: mod/admin.php:1521 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "" -#: mod/admin.php:1526 +#: mod/admin.php:1541 msgid "No failed updates." msgstr "Engar uppfærslur mistókust." -#: mod/admin.php:1527 +#: mod/admin.php:1542 msgid "Check database structure" msgstr "" -#: mod/admin.php:1532 +#: mod/admin.php:1547 msgid "Failed Updates" msgstr "Uppfærslur sem mistókust" -#: mod/admin.php:1533 +#: mod/admin.php:1548 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Þetta á ekki við uppfærslur fyrir 1139, þær skiluðu ekki lokastöðu." -#: mod/admin.php:1534 +#: mod/admin.php:1549 msgid "Mark success (if update was manually applied)" msgstr "Merkja sem tókst (ef uppfærsla var framkvæmd handvirkt)" -#: mod/admin.php:1535 +#: mod/admin.php:1550 msgid "Attempt to execute this update step automatically" msgstr "Framkvæma þessa uppfærslu sjálfkrafa" -#: mod/admin.php:1574 +#: mod/admin.php:1589 #, php-format msgid "" "\n" @@ -6434,7 +5361,7 @@ msgid "" "\t\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: mod/admin.php:1577 +#: mod/admin.php:1592 #, php-format msgid "" "\n" @@ -6466,168 +5393,208 @@ msgid "" "\t\t\tThank you and welcome to %4$s." msgstr "" -#: mod/admin.php:1611 src/Model/User.php:649 +#: mod/admin.php:1626 src/Model/User.php:663 #, php-format msgid "Registration details for %s" msgstr "Nýskráningar upplýsingar fyrir %s" -#: mod/admin.php:1621 +#: mod/admin.php:1636 #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" msgstr[0] "" msgstr[1] "" -#: mod/admin.php:1627 +#: mod/admin.php:1642 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "%s notanda eytt" msgstr[1] "%s notendum eytt" -#: mod/admin.php:1674 +#: mod/admin.php:1689 #, php-format msgid "User '%s' deleted" msgstr "Notanda '%s' eytt" -#: mod/admin.php:1682 +#: mod/admin.php:1697 #, php-format msgid "User '%s' unblocked" msgstr "Notanda '%s' gefið frelsi" -#: mod/admin.php:1682 +#: mod/admin.php:1697 #, php-format msgid "User '%s' blocked" msgstr "Notandi '%s' settur í bann" -#: mod/admin.php:1781 mod/admin.php:1793 mod/admin.php:1806 mod/admin.php:1824 +#: mod/admin.php:1754 mod/settings.php:1058 +msgid "Normal Account Page" +msgstr "" + +#: mod/admin.php:1755 mod/settings.php:1062 +msgid "Soapbox Page" +msgstr "" + +#: mod/admin.php:1756 mod/settings.php:1066 +msgid "Public Forum" +msgstr "" + +#: mod/admin.php:1757 mod/settings.php:1070 +msgid "Automatic Friend Page" +msgstr "" + +#: mod/admin.php:1758 +msgid "Private Forum" +msgstr "Einkaspjallsvæði" + +#: mod/admin.php:1761 mod/settings.php:1042 +msgid "Personal Page" +msgstr "" + +#: mod/admin.php:1762 mod/settings.php:1046 +msgid "Organisation Page" +msgstr "" + +#: mod/admin.php:1763 mod/settings.php:1050 +msgid "News Page" +msgstr "" + +#: mod/admin.php:1764 mod/settings.php:1054 +msgid "Community Forum" +msgstr "" + +#: mod/admin.php:1811 mod/admin.php:1822 mod/admin.php:1835 mod/admin.php:1853 #: src/Content/ContactSelector.php:82 msgid "Email" msgstr "Tölvupóstur" -#: mod/admin.php:1781 mod/admin.php:1806 +#: mod/admin.php:1811 mod/admin.php:1835 msgid "Register date" msgstr "Skráningardagur" -#: mod/admin.php:1781 mod/admin.php:1806 +#: mod/admin.php:1811 mod/admin.php:1835 msgid "Last login" msgstr "Síðast innskráður" -#: mod/admin.php:1781 mod/admin.php:1806 +#: mod/admin.php:1811 mod/admin.php:1835 msgid "Last item" msgstr "Síðasta atriði" -#: mod/admin.php:1781 mod/settings.php:55 -msgid "Account" -msgstr "Notandi" +#: mod/admin.php:1811 +msgid "Type" +msgstr "Tegund" -#: mod/admin.php:1789 +#: mod/admin.php:1818 msgid "Add User" msgstr "Bæta við notanda" -#: mod/admin.php:1791 +#: mod/admin.php:1820 msgid "User registrations waiting for confirm" msgstr "Skráning notanda býður samþykkis" -#: mod/admin.php:1792 +#: mod/admin.php:1821 msgid "User waiting for permanent deletion" msgstr "" -#: mod/admin.php:1793 +#: mod/admin.php:1822 msgid "Request date" msgstr "Dagsetning beiðnar" -#: mod/admin.php:1794 +#: mod/admin.php:1823 msgid "No registrations." msgstr "Engin skráning" -#: mod/admin.php:1795 +#: mod/admin.php:1824 msgid "Note from the user" msgstr "" -#: mod/admin.php:1797 +#: mod/admin.php:1825 mod/notifications.php:178 mod/notifications.php:262 +msgid "Approve" +msgstr "Samþykkja" + +#: mod/admin.php:1826 msgid "Deny" msgstr "Hafnað" -#: mod/admin.php:1801 +#: mod/admin.php:1830 msgid "Site admin" msgstr "Vefstjóri" -#: mod/admin.php:1802 +#: mod/admin.php:1831 msgid "Account expired" msgstr "Notandaaðgangur útrunninn" -#: mod/admin.php:1805 +#: mod/admin.php:1834 msgid "New User" msgstr "Nýr notandi" -#: mod/admin.php:1806 +#: mod/admin.php:1835 msgid "Deleted since" msgstr "Eytt síðan" -#: mod/admin.php:1811 +#: mod/admin.php:1840 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Valdir notendur verður eytt!\\n\\nAllt sem þessir notendur hafa deilt á þessum vef verður varanlega eytt!\\n\\nErtu alveg viss?" -#: mod/admin.php:1812 +#: mod/admin.php:1841 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 "Notandinn {0} verður eytt!\\n\\nAllt sem þessi notandi hefur deilt á þessum vef veður varanlega eytt!\\n\\nErtu alveg viss?" -#: mod/admin.php:1822 +#: mod/admin.php:1851 msgid "Name of the new user." msgstr "" -#: mod/admin.php:1823 +#: mod/admin.php:1852 msgid "Nickname" msgstr "Stuttnefni" -#: mod/admin.php:1823 +#: mod/admin.php:1852 msgid "Nickname of the new user." msgstr "" -#: mod/admin.php:1824 +#: mod/admin.php:1853 msgid "Email address of the new user." msgstr "" -#: mod/admin.php:1866 +#: mod/admin.php:1895 #, php-format msgid "Addon %s disabled." msgstr "" -#: mod/admin.php:1870 +#: mod/admin.php:1899 #, php-format msgid "Addon %s enabled." msgstr "" -#: mod/admin.php:1880 mod/admin.php:2129 +#: mod/admin.php:1909 mod/admin.php:2158 msgid "Disable" msgstr "Gera óvirkt" -#: mod/admin.php:1883 mod/admin.php:2132 +#: mod/admin.php:1912 mod/admin.php:2161 msgid "Enable" msgstr "Virkja" -#: mod/admin.php:1905 mod/admin.php:2174 +#: mod/admin.php:1934 mod/admin.php:2203 msgid "Toggle" msgstr "Skipta" -#: mod/admin.php:1913 mod/admin.php:2183 +#: mod/admin.php:1942 mod/admin.php:2212 msgid "Author: " msgstr "Höfundur:" -#: mod/admin.php:1914 mod/admin.php:2184 +#: mod/admin.php:1943 mod/admin.php:2213 msgid "Maintainer: " msgstr "Umsjónarmaður: " -#: mod/admin.php:1966 +#: mod/admin.php:1995 msgid "Reload active addons" msgstr "" -#: mod/admin.php:1971 +#: mod/admin.php:2000 #, php-format msgid "" "There are currently no addons available on your node. You can find the " @@ -6635,70 +5602,70 @@ msgid "" " the open addon registry at %2$s" msgstr "" -#: mod/admin.php:2091 +#: mod/admin.php:2120 msgid "No themes found." msgstr "Engin þemu fundust" -#: mod/admin.php:2165 +#: mod/admin.php:2194 msgid "Screenshot" msgstr "Skjámynd" -#: mod/admin.php:2219 +#: mod/admin.php:2248 msgid "Reload active themes" msgstr "" -#: mod/admin.php:2224 +#: mod/admin.php:2253 #, php-format msgid "No themes found on the system. They should be placed in %1$s" msgstr "" -#: mod/admin.php:2225 +#: mod/admin.php:2254 msgid "[Experimental]" msgstr "[Á tilraunastigi]" -#: mod/admin.php:2226 +#: mod/admin.php:2255 msgid "[Unsupported]" msgstr "[Óstutt]" -#: mod/admin.php:2250 +#: mod/admin.php:2279 msgid "Log settings updated." msgstr "Stillingar atburðaskrár uppfærðar. " -#: mod/admin.php:2282 +#: mod/admin.php:2311 msgid "PHP log currently enabled." msgstr "" -#: mod/admin.php:2284 +#: mod/admin.php:2313 msgid "PHP log currently disabled." msgstr "" -#: mod/admin.php:2293 +#: mod/admin.php:2322 msgid "Clear" msgstr "Hreinsa" -#: mod/admin.php:2297 +#: mod/admin.php:2326 msgid "Enable Debugging" msgstr "" -#: mod/admin.php:2298 +#: mod/admin.php:2327 msgid "Log file" msgstr "Atburðaskrá" -#: mod/admin.php:2298 +#: mod/admin.php:2327 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Vefþjónn verður að hafa skrifréttindi. Afstætt við Friendica rótar skráarsafn." -#: mod/admin.php:2299 +#: mod/admin.php:2328 msgid "Log level" msgstr "Stig atburðaskráningar" -#: mod/admin.php:2301 +#: mod/admin.php:2330 msgid "PHP logging" msgstr "" -#: mod/admin.php:2302 +#: mod/admin.php:2331 msgid "" "To enable logging of PHP errors and warnings you can add the following to " "the .htconfig.php file of your installation. The filename set in the " @@ -6707,70 +5674,915 @@ msgid "" "'display_errors' is to enable these options, set to '0' to disable them." msgstr "" -#: mod/admin.php:2333 +#: mod/admin.php:2362 #, php-format msgid "" "Error trying to open %1$s log file.\\r\\n
Check to see " "if file %1$s exist and is readable." msgstr "" -#: mod/admin.php:2337 +#: mod/admin.php:2366 #, php-format msgid "" "Couldn't open %1$s log file.\\r\\n
Check to see if file" " %1$s is readable." msgstr "" -#: mod/admin.php:2428 mod/admin.php:2429 mod/settings.php:775 +#: mod/admin.php:2457 mod/admin.php:2458 mod/settings.php:767 msgid "Off" msgstr "Slökkt" -#: mod/admin.php:2428 mod/admin.php:2429 mod/settings.php:775 +#: mod/admin.php:2457 mod/admin.php:2458 mod/settings.php:767 msgid "On" msgstr "Kveikt" -#: mod/admin.php:2429 +#: mod/admin.php:2458 #, php-format msgid "Lock feature %s" msgstr "" -#: mod/admin.php:2437 +#: mod/admin.php:2466 msgid "Manage Additional Features" msgstr "" -#: mod/settings.php:72 +#: mod/dfrn_confirm.php:74 mod/profiles.php:39 mod/profiles.php:149 +#: mod/profiles.php:196 mod/profiles.php:525 +msgid "Profile not found." +msgstr "Forsíða fannst ekki." + +#: mod/dfrn_confirm.php:130 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "" + +#: mod/dfrn_confirm.php:240 +msgid "Response from remote site was not understood." +msgstr "Ekki tókst að skilja svar frá fjartengdum vef." + +#: mod/dfrn_confirm.php:247 mod/dfrn_confirm.php:252 +msgid "Unexpected response from remote site: " +msgstr "Óskiljanlegt svar frá fjartengdum vef:" + +#: mod/dfrn_confirm.php:261 +msgid "Confirmation completed successfully." +msgstr "Staðfesting kláraði eðlilega." + +#: mod/dfrn_confirm.php:273 +msgid "Temporary failure. Please wait and try again." +msgstr "Tímabundin villa. Bíddu aðeins og reyndu svo aftur." + +#: mod/dfrn_confirm.php:276 +msgid "Introduction failed or was revoked." +msgstr "Kynning mistókst eða var afturkölluð." + +#: mod/dfrn_confirm.php:281 +msgid "Remote site reported: " +msgstr "Fjartengdur vefur svaraði:" + +#: mod/dfrn_confirm.php:392 +msgid "Unable to set contact photo." +msgstr "Ekki tókst að setja tengiliðamynd." + +#: mod/dfrn_confirm.php:450 +#, php-format +msgid "No user record found for '%s' " +msgstr "Engin notandafærsla fannst fyrir '%s'" + +#: mod/dfrn_confirm.php:460 +msgid "Our site encryption key is apparently messed up." +msgstr "Dulkóðunnar lykill síðunnar okker er í döðlu." + +#: mod/dfrn_confirm.php:471 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "Tómt slóð var uppgefin eða ekki okkur tókst ekki að afkóða slóð." + +#: mod/dfrn_confirm.php:487 +msgid "Contact record was not found for you on our site." +msgstr "Tengiliðafærslan þín fannst ekki á þjóninum okkar." + +#: mod/dfrn_confirm.php:501 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "Opinber lykill er ekki til í tengiliðafærslu fyrir slóð %s." + +#: mod/dfrn_confirm.php:517 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "Skilríkið sem þjónninn þinn gaf upp er þegar afritað á okkar þjón. Þetta ætti að virka ef þú bara reynir aftur." + +#: mod/dfrn_confirm.php:528 +msgid "Unable to set your contact credentials on our system." +msgstr "Ekki tókst að setja tengiliða skilríkið þitt upp á þjóninum okkar." + +#: mod/dfrn_confirm.php:583 +msgid "Unable to update your contact profile details on our system" +msgstr "Ekki tókst að uppfæra tengiliða skilríkis upplýsingarnar á okkar þjón" + +#: mod/dfrn_confirm.php:613 mod/dfrn_request.php:564 +#: src/Model/Contact.php:1578 +msgid "[Name Withheld]" +msgstr "[Nafn ekki sýnt]" + +#: mod/dfrn_request.php:94 +msgid "This introduction has already been accepted." +msgstr "Þessi kynning hefur þegar verið samþykkt." + +#: mod/dfrn_request.php:112 mod/dfrn_request.php:355 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Forsíðu slóð er ekki í lagi eða inniheldur ekki forsíðu upplýsingum." + +#: mod/dfrn_request.php:116 mod/dfrn_request.php:359 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Aðvörun: forsíðu staðsetning hefur ekki aðgreinanlegt eigendanafn." + +#: mod/dfrn_request.php:119 mod/dfrn_request.php:362 +msgid "Warning: profile location has no profile photo." +msgstr "Aðvörun: forsíðu slóð hefur ekki forsíðu mynd." + +#: mod/dfrn_request.php:123 mod/dfrn_request.php:366 +#, 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] "%d skilyrt breyta fannst ekki á uppgefinni staðsetningu" +msgstr[1] "%d skilyrtar breytur fundust ekki á uppgefninni staðsetningu" + +#: mod/dfrn_request.php:162 +msgid "Introduction complete." +msgstr "Kynning tilbúinn." + +#: mod/dfrn_request.php:199 +msgid "Unrecoverable protocol error." +msgstr "Alvarleg samskipta villa." + +#: mod/dfrn_request.php:226 +msgid "Profile unavailable." +msgstr "Ekki hægt að sækja forsíðu" + +#: mod/dfrn_request.php:248 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s hefur fengið of margar tengibeiðnir í dag." + +#: mod/dfrn_request.php:249 +msgid "Spam protection measures have been invoked." +msgstr "Kveikt hefur verið á ruslsíu" + +#: mod/dfrn_request.php:250 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Vinir eru beðnir um að reyna aftur eftir 24 klukkustundir." + +#: mod/dfrn_request.php:276 +msgid "Invalid locator" +msgstr "Ógild staðsetning" + +#: mod/dfrn_request.php:312 +msgid "You have already introduced yourself here." +msgstr "Kynning hefur þegar átt sér stað hér." + +#: mod/dfrn_request.php:315 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Þú ert þegar vinur %s." + +#: mod/dfrn_request.php:335 +msgid "Invalid profile URL." +msgstr "Ógild forsíðu slóð." + +#: mod/dfrn_request.php:341 src/Model/Contact.php:1276 +msgid "Disallowed profile URL." +msgstr "Óleyfileg forsíðu slóð." + +#: mod/dfrn_request.php:435 +msgid "Your introduction has been sent." +msgstr "Kynningin þín hefur verið send." + +#: mod/dfrn_request.php:473 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "" + +#: mod/dfrn_request.php:489 +msgid "Please login to confirm introduction." +msgstr "Skráðu þig inn til að staðfesta kynningu." + +#: mod/dfrn_request.php:497 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Ekki réttur notandi skráður inn. Skráðu þig inn sem þessi notandi." + +#: mod/dfrn_request.php:511 mod/dfrn_request.php:528 +msgid "Confirm" +msgstr "Staðfesta" + +#: mod/dfrn_request.php:523 +msgid "Hide this contact" +msgstr "Fela þennan tengilið" + +#: mod/dfrn_request.php:526 +#, php-format +msgid "Welcome home %s." +msgstr "Velkomin(n) heim %s." + +#: mod/dfrn_request.php:527 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Staðfestu kynninguna/tengibeiðnina við %s." + +#: mod/dfrn_request.php:637 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Settu inn 'Auðkennisnetfang' þitt úr einhverjum af eftirfarandi samskiptanetum:" + +#: mod/dfrn_request.php:640 +#, php-format +msgid "" +"If you are not yet a member of the free social web, follow " +"this link to find a public Friendica site and join us today." +msgstr "" + +#: mod/dfrn_request.php:645 +msgid "Friend/Connection Request" +msgstr "Vinabeiðni/Tengibeiðni" + +#: mod/dfrn_request.php:646 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@gnusocial.de" +msgstr "" + +#: mod/dfrn_request.php:651 src/Content/ContactSelector.php:79 +msgid "Friendica" +msgstr "Friendica" + +#: mod/dfrn_request.php:652 +msgid "GNU Social (Pleroma, Mastodon)" +msgstr "GNU Social (Pleroma, Mastodon)" + +#: mod/dfrn_request.php:653 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "Diaspora (Socialhome, Hubzilla)" + +#: mod/dfrn_request.php:654 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr "" + +#: mod/item.php:114 +msgid "Unable to locate original post." +msgstr "Ekki tókst að finna upphaflega færslu." + +#: mod/item.php:274 +msgid "Empty post discarded." +msgstr "Tóm færsla eytt." + +#: mod/item.php:804 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Skilaboðið sendi %s, notandi á Friendica samfélagsnetinu." + +#: mod/item.php:806 +#, php-format +msgid "You may visit them online at %s" +msgstr "Þú getur heimsótt þau á netinu á %s" + +#: mod/item.php:807 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Hafðu samband við sendanda með því að svara á þessari færslu ef þú villt ekki fá þessi skilaboð." + +#: mod/item.php:811 +#, php-format +msgid "%s posted an update." +msgstr "%s hefur sent uppfærslu." + +#: mod/notifications.php:37 +msgid "Invalid request identifier." +msgstr "Ógilt auðkenni beiðnar." + +#: mod/notifications.php:46 mod/notifications.php:182 +#: mod/notifications.php:229 +msgid "Discard" +msgstr "Henda" + +#: mod/notifications.php:98 src/Content/Nav.php:191 +msgid "Notifications" +msgstr "Tilkynningar" + +#: mod/notifications.php:107 +msgid "Network Notifications" +msgstr "Tilkynningar á neti" + +#: mod/notifications.php:119 +msgid "Personal Notifications" +msgstr "Einkatilkynningar." + +#: mod/notifications.php:125 +msgid "Home Notifications" +msgstr "Tilkynningar frá heimasvæði" + +#: mod/notifications.php:155 +msgid "Show Ignored Requests" +msgstr "Sýna hunsaðar beiðnir" + +#: mod/notifications.php:155 +msgid "Hide Ignored Requests" +msgstr "Fela hunsaðar beiðnir" + +#: mod/notifications.php:167 mod/notifications.php:236 +msgid "Notification type: " +msgstr "Gerð skilaboða: " + +#: mod/notifications.php:170 +#, php-format +msgid "suggested by %s" +msgstr "stungið uppá af %s" + +#: mod/notifications.php:197 +msgid "Claims to be known to you: " +msgstr "Þykist þekkja þig:" + +#: mod/notifications.php:198 +msgid "yes" +msgstr "já" + +#: mod/notifications.php:198 +msgid "no" +msgstr "nei" + +#: mod/notifications.php:199 mod/notifications.php:204 +msgid "Shall your connection be bidirectional or not?" +msgstr "" + +#: mod/notifications.php:200 mod/notifications.php:205 +#, 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 "" + +#: mod/notifications.php:201 +#, 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 "" + +#: mod/notifications.php:206 +#, php-format +msgid "" +"Accepting %s as a sharer allows them to subscribe to your posts, but you " +"will not receive updates from them in your news feed." +msgstr "" + +#: mod/notifications.php:217 +msgid "Friend" +msgstr "Vin" + +#: mod/notifications.php:218 +msgid "Sharer" +msgstr "Deilir" + +#: mod/notifications.php:218 +msgid "Subscriber" +msgstr "Áskrifandi" + +#: mod/notifications.php:273 +msgid "No introductions." +msgstr "Engar kynningar." + +#: mod/notifications.php:314 +msgid "Show unread" +msgstr "Birta ólesið" + +#: mod/notifications.php:314 +msgid "Show all" +msgstr "Birta allt" + +#: mod/notifications.php:320 +#, php-format +msgid "No more %s notifications." +msgstr "Ekki fleiri %s tilkynningar." + +#: mod/profile.php:37 src/Model/Profile.php:118 +msgid "Requested profile is not available." +msgstr "Umbeðin forsíða ekki til." + +#: mod/profile.php:78 mod/profile.php:81 src/Protocol/OStatus.php:1251 +#, php-format +msgid "%s's timeline" +msgstr "Tímalína fyrir %s" + +#: mod/profile.php:79 src/Protocol/OStatus.php:1252 +#, php-format +msgid "%s's posts" +msgstr "Færslur frá %s" + +#: mod/profile.php:80 src/Protocol/OStatus.php:1253 +#, php-format +msgid "%s's comments" +msgstr "Athugasemdir frá %s" + +#: mod/profile.php:195 +msgid "Tips for New Members" +msgstr "Ábendingar fyrir nýja notendur" + +#: mod/profiles.php:58 +msgid "Profile deleted." +msgstr "Forsíðu eytt." + +#: mod/profiles.php:74 mod/profiles.php:110 +msgid "Profile-" +msgstr "Forsíða-" + +#: mod/profiles.php:93 mod/profiles.php:132 +msgid "New profile created." +msgstr "Ný forsíða búinn til." + +#: mod/profiles.php:116 +msgid "Profile unavailable to clone." +msgstr "Ekki tókst að klóna forsíðu" + +#: mod/profiles.php:206 +msgid "Profile Name is required." +msgstr "Nafn á forsíðu er skilyrði" + +#: mod/profiles.php:347 +msgid "Marital Status" +msgstr "Hjúskaparstaða" + +#: mod/profiles.php:351 +msgid "Romantic Partner" +msgstr "" + +#: mod/profiles.php:363 +msgid "Work/Employment" +msgstr "Atvinna/Starf" + +#: mod/profiles.php:366 +msgid "Religion" +msgstr "Trúarbrögð" + +#: mod/profiles.php:370 +msgid "Political Views" +msgstr "Stórnmálaskoðanir" + +#: mod/profiles.php:374 +msgid "Gender" +msgstr "Kyn" + +#: mod/profiles.php:378 +msgid "Sexual Preference" +msgstr "Kynhneigð" + +#: mod/profiles.php:382 +msgid "XMPP" +msgstr "XMPP" + +#: mod/profiles.php:386 +msgid "Homepage" +msgstr "Heimasíða" + +#: mod/profiles.php:390 mod/profiles.php:593 +msgid "Interests" +msgstr "Áhugamál" + +#: mod/profiles.php:401 mod/profiles.php:589 +msgid "Location" +msgstr "Staðsetning" + +#: mod/profiles.php:483 +msgid "Profile updated." +msgstr "Forsíða uppfærð." + +#: mod/profiles.php:540 +msgid "Hide contacts and friends:" +msgstr "Fela tengiliði og vini" + +#: mod/profiles.php:545 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Fela tengiliða-/vinalista á þessari forsíðu?" + +#: mod/profiles.php:565 +msgid "Show more profile fields:" +msgstr "" + +#: mod/profiles.php:577 +msgid "Profile Actions" +msgstr "" + +#: mod/profiles.php:578 +msgid "Edit Profile Details" +msgstr "Breyta forsíðu upplýsingum" + +#: mod/profiles.php:580 +msgid "Change Profile Photo" +msgstr "Breyta forsíðumynd" + +#: mod/profiles.php:581 +msgid "View this profile" +msgstr "Skoða þessa forsíðu" + +#: mod/profiles.php:582 mod/profiles.php:677 src/Model/Profile.php:389 +msgid "Edit visibility" +msgstr "Sýsla með sýnileika" + +#: mod/profiles.php:583 +msgid "Create a new profile using these settings" +msgstr "Búa til nýja forsíðu með þessum stillingum" + +#: mod/profiles.php:584 +msgid "Clone this profile" +msgstr "Klóna þessa forsíðu" + +#: mod/profiles.php:585 +msgid "Delete this profile" +msgstr "Eyða þessari forsíðu" + +#: mod/profiles.php:587 +msgid "Basic information" +msgstr "Grunnupplýsingar" + +#: mod/profiles.php:588 +msgid "Profile picture" +msgstr "Notandamynd" + +#: mod/profiles.php:590 +msgid "Preferences" +msgstr "Kjörstillingar" + +#: mod/profiles.php:591 +msgid "Status information" +msgstr "" + +#: mod/profiles.php:592 +msgid "Additional information" +msgstr "Viðbótarupplýsingar" + +#: mod/profiles.php:595 +msgid "Relation" +msgstr "Vensl" + +#: mod/profiles.php:596 src/Util/Temporal.php:81 src/Util/Temporal.php:83 +msgid "Miscellaneous" +msgstr "Ýmislegt" + +#: mod/profiles.php:599 +msgid "Your Gender:" +msgstr "Kyn:" + +#: mod/profiles.php:600 +msgid " Marital Status:" +msgstr " Hjúskaparstaða:" + +#: mod/profiles.php:601 src/Model/Profile.php:780 +msgid "Sexual Preference:" +msgstr "Kynhneigð:" + +#: mod/profiles.php:602 +msgid "Example: fishing photography software" +msgstr "Til dæmis: fishing photography software" + +#: mod/profiles.php:607 +msgid "Profile Name:" +msgstr "Forsíðu nafn:" + +#: mod/profiles.php:609 +msgid "" +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "Þetta er opinber forsíða.
Hún verður sjáanleg öðrum sem nota alnetið." + +#: mod/profiles.php:610 +msgid "Your Full Name:" +msgstr "Fullt nafn:" + +#: mod/profiles.php:611 +msgid "Title/Description:" +msgstr "Starfsheiti/Lýsing:" + +#: mod/profiles.php:614 +msgid "Street Address:" +msgstr "Gata:" + +#: mod/profiles.php:615 +msgid "Locality/City:" +msgstr "Bær/Borg:" + +#: mod/profiles.php:616 +msgid "Region/State:" +msgstr "Svæði/Sýsla" + +#: mod/profiles.php:617 +msgid "Postal/Zip Code:" +msgstr "Póstnúmer:" + +#: mod/profiles.php:618 +msgid "Country:" +msgstr "Land:" + +#: mod/profiles.php:619 src/Util/Temporal.php:149 +msgid "Age: " +msgstr "Aldur: " + +#: mod/profiles.php:622 +msgid "Who: (if applicable)" +msgstr "Hver: (ef við á)" + +#: mod/profiles.php:622 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Dæmi: cathy123, Cathy Williams, cathy@example.com" + +#: mod/profiles.php:623 +msgid "Since [date]:" +msgstr "Síðan [date]:" + +#: mod/profiles.php:625 +msgid "Tell us about yourself..." +msgstr "Segðu okkur frá sjálfum þér..." + +#: mod/profiles.php:626 +msgid "XMPP (Jabber) address:" +msgstr "XMPP (Jabber) vistfang:" + +#: mod/profiles.php:626 +msgid "" +"The XMPP address will be propagated to your contacts so that they can follow" +" you." +msgstr "" + +#: mod/profiles.php:627 +msgid "Homepage URL:" +msgstr "Slóð heimasíðu:" + +#: mod/profiles.php:628 src/Model/Profile.php:788 +msgid "Hometown:" +msgstr "Heimabær:" + +#: mod/profiles.php:629 src/Model/Profile.php:796 +msgid "Political Views:" +msgstr "Stórnmálaskoðanir:" + +#: mod/profiles.php:630 +msgid "Religious Views:" +msgstr "Trúarskoðanir" + +#: mod/profiles.php:631 +msgid "Public Keywords:" +msgstr "Opinber leitarorð:" + +#: mod/profiles.php:631 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Notað til að stinga uppá mögulegum vinum, aðrir geta séð)" + +#: mod/profiles.php:632 +msgid "Private Keywords:" +msgstr "Einka leitarorð:" + +#: mod/profiles.php:632 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Notað við leit að öðrum notendum, aldrei sýnt öðrum)" + +#: mod/profiles.php:633 src/Model/Profile.php:812 +msgid "Likes:" +msgstr "Líkar:" + +#: mod/profiles.php:634 src/Model/Profile.php:816 +msgid "Dislikes:" +msgstr "Mislíkar:" + +#: mod/profiles.php:635 +msgid "Musical interests" +msgstr "Tónlistarsmekkur" + +#: mod/profiles.php:636 +msgid "Books, literature" +msgstr "Bækur, bókmenntir" + +#: mod/profiles.php:637 +msgid "Television" +msgstr "Sjónvarp" + +#: mod/profiles.php:638 +msgid "Film/dance/culture/entertainment" +msgstr "Kvikmyndir/dans/menning/afþreying" + +#: mod/profiles.php:639 +msgid "Hobbies/Interests" +msgstr "Áhugamál" + +#: mod/profiles.php:640 +msgid "Love/romance" +msgstr "Ást/rómantík" + +#: mod/profiles.php:641 +msgid "Work/employment" +msgstr "Atvinna:" + +#: mod/profiles.php:642 +msgid "School/education" +msgstr "Skóli/menntun" + +#: mod/profiles.php:643 +msgid "Contact information and Social Networks" +msgstr "Tengiliðaupplýsingar og samfélagsnet" + +#: mod/profiles.php:674 src/Model/Profile.php:385 +msgid "Profile Image" +msgstr "Forsíðumynd" + +#: mod/profiles.php:676 src/Model/Profile.php:388 +msgid "visible to everybody" +msgstr "sýnilegt öllum" + +#: mod/profiles.php:683 +msgid "Edit/Manage Profiles" +msgstr "Sýsla með forsíður" + +#: mod/profiles.php:684 src/Model/Profile.php:375 src/Model/Profile.php:397 +msgid "Change profile photo" +msgstr "Breyta forsíðumynd" + +#: mod/profiles.php:685 src/Model/Profile.php:376 +msgid "Create New Profile" +msgstr "Stofna nýja forsíðu" + +#: mod/register.php:100 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Nýskráning tóks. Frekari fyrirmæli voru send í tölvupósti." + +#: mod/register.php:104 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
login: %s
" +"password: %s

You can change your password after login." +msgstr "" + +#: mod/register.php:111 +msgid "Registration successful." +msgstr "Nýskráning tókst." + +#: mod/register.php:116 +msgid "Your registration can not be processed." +msgstr "Skráninguna þína er ekki hægt að vinna." + +#: mod/register.php:163 +msgid "Your registration is pending approval by the site owner." +msgstr "Skráningin þín bíður samþykkis af eiganda síðunnar." + +#: mod/register.php:221 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Þú mátt (valfrjálst) fylla í þetta svæði gegnum OpenID með því gefa upp þitt OpenID og ýta á 'Skrá'." + +#: mod/register.php:222 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Ef þú veist ekki hvað OpenID er, skildu þá þetta svæði eftir tómt en fylltu í restin af svæðunum." + +#: mod/register.php:223 +msgid "Your OpenID (optional): " +msgstr "Þitt OpenID (valfrjálst):" + +#: mod/register.php:235 +msgid "Include your profile in member directory?" +msgstr "Á forsíðan þín að sjást í notendalistanum?" + +#: mod/register.php:262 +msgid "Note for the admin" +msgstr "" + +#: mod/register.php:262 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "" + +#: mod/register.php:263 +msgid "Membership on this site is by invitation only." +msgstr "Aðild að þessum vef er " + +#: mod/register.php:264 +msgid "Your invitation code: " +msgstr "" + +#: mod/register.php:273 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "" + +#: mod/register.php:274 +msgid "" +"Your Email Address: (Initial information will be send there, so this has to " +"be an existing address.)" +msgstr "" + +#: mod/register.php:276 mod/settings.php:1190 +msgid "New Password:" +msgstr "Nýtt aðgangsorð:" + +#: mod/register.php:276 +msgid "Leave empty for an auto generated password." +msgstr "" + +#: mod/register.php:277 mod/settings.php:1191 +msgid "Confirm:" +msgstr "Staðfesta:" + +#: mod/register.php:278 +#, php-format +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be 'nickname@%s'." +msgstr "" + +#: mod/register.php:279 +msgid "Choose a nickname: " +msgstr "Veldu gælunafn:" + +#: mod/register.php:282 src/Content/Nav.php:128 src/Module/Login.php:284 +msgid "Register" +msgstr "Nýskrá" + +#: mod/register.php:289 +msgid "Import your profile to this friendica instance" +msgstr "" + +#: mod/removeme.php:44 +msgid "User deleted their account" +msgstr "" + +#: mod/removeme.php:45 +msgid "" +"On your Friendica node an user deleted their account. Please ensure that " +"their data is removed from the backups." +msgstr "" + +#: mod/removeme.php:46 +#, php-format +msgid "The user id is %d" +msgstr "" + +#: mod/removeme.php:77 mod/removeme.php:80 +msgid "Remove My Account" +msgstr "Eyða þessum notanda" + +#: mod/removeme.php:78 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Þetta mun algjörlega eyða notandanum. Þegar þetta hefur verið gert er þetta ekki afturkræft." + +#: mod/removeme.php:79 +msgid "Please enter your password for verification:" +msgstr "Sláðu inn aðgangsorð yðar:" + +#: mod/settings.php:56 +msgid "Account" +msgstr "Notandi" + +#: mod/settings.php:73 msgid "Display" msgstr "Birting" -#: mod/settings.php:79 mod/settings.php:842 +#: mod/settings.php:80 mod/settings.php:834 msgid "Social Networks" msgstr "Samfélagsnet" -#: mod/settings.php:93 src/Content/Nav.php:204 +#: mod/settings.php:94 src/Content/Nav.php:205 msgid "Delegations" msgstr "" -#: mod/settings.php:100 +#: mod/settings.php:101 msgid "Connected apps" msgstr "Tengd forrit" -#: mod/settings.php:114 +#: mod/settings.php:115 msgid "Remove account" msgstr "Henda tengilið" -#: mod/settings.php:168 +#: mod/settings.php:167 msgid "Missing some important data!" msgstr "Vantar mikilvæg gögn!" -#: mod/settings.php:279 +#: mod/settings.php:278 msgid "Failed to connect with email account using the settings provided." msgstr "Ekki tókst að tengjast við pósthólf með stillingum sem uppgefnar eru." -#: mod/settings.php:284 +#: mod/settings.php:283 msgid "Email settings updated." msgstr "Stillingar póstfangs uppfærðar." -#: mod/settings.php:300 +#: mod/settings.php:299 msgid "Features updated" msgstr "" @@ -6778,7 +6590,7 @@ msgstr "" msgid "Relocate message has been send to your contacts" msgstr "" -#: mod/settings.php:384 src/Model/User.php:325 +#: mod/settings.php:384 src/Model/User.php:339 msgid "Passwords do not match. Password unchanged." msgstr "Aðgangsorð ber ekki saman. Aðgangsorð óbreytt." @@ -6786,7 +6598,7 @@ msgstr "Aðgangsorð ber ekki saman. Aðgangsorð óbreytt." msgid "Empty passwords are not allowed. Password unchanged." msgstr "Tóm aðgangsorð eru ekki leyfileg. Aðgangsorð óbreytt." -#: mod/settings.php:394 src/Core/Console/NewPassword.php:78 +#: mod/settings.php:394 src/Core/Console/NewPassword.php:87 msgid "" "The new password has been exposed in a public data dump, please choose " "another." @@ -6796,136 +6608,136 @@ msgstr "" msgid "Wrong password." msgstr "Rangt lykilorð." -#: mod/settings.php:407 src/Core/Console/NewPassword.php:85 +#: mod/settings.php:407 src/Core/Console/NewPassword.php:94 msgid "Password changed." msgstr "Aðgangsorði breytt." -#: mod/settings.php:409 src/Core/Console/NewPassword.php:82 +#: mod/settings.php:409 src/Core/Console/NewPassword.php:91 msgid "Password update failed. Please try again." msgstr "Uppfærsla á aðgangsorði tókst ekki. Reyndu aftur." -#: mod/settings.php:496 +#: mod/settings.php:493 msgid " Please use a shorter name." msgstr " Notaðu styttra nafn." -#: mod/settings.php:499 +#: mod/settings.php:496 msgid " Name too short." msgstr "Nafn of stutt." -#: mod/settings.php:507 +#: mod/settings.php:504 msgid "Wrong Password" msgstr "Rangt lykilorð" -#: mod/settings.php:512 +#: mod/settings.php:509 msgid "Invalid email." msgstr "Ógilt tölvupóstfang." -#: mod/settings.php:519 +#: mod/settings.php:516 msgid "Cannot change to that email." msgstr "" -#: mod/settings.php:572 +#: mod/settings.php:566 msgid "Private forum has no privacy permissions. Using default privacy group." msgstr "" -#: mod/settings.php:575 +#: mod/settings.php:569 msgid "Private forum has no privacy permissions and no default privacy group." msgstr "" -#: mod/settings.php:615 +#: mod/settings.php:609 msgid "Settings updated." msgstr "Stillingar uppfærðar." -#: mod/settings.php:674 mod/settings.php:700 mod/settings.php:736 +#: mod/settings.php:668 mod/settings.php:694 mod/settings.php:728 msgid "Add application" msgstr "Bæta við forriti" -#: mod/settings.php:678 mod/settings.php:704 +#: mod/settings.php:672 mod/settings.php:698 msgid "Consumer Key" msgstr "Notenda lykill" -#: mod/settings.php:679 mod/settings.php:705 +#: mod/settings.php:673 mod/settings.php:699 msgid "Consumer Secret" msgstr "Notenda leyndarmál" -#: mod/settings.php:680 mod/settings.php:706 +#: mod/settings.php:674 mod/settings.php:700 msgid "Redirect" msgstr "Áframsenda" -#: mod/settings.php:681 mod/settings.php:707 +#: mod/settings.php:675 mod/settings.php:701 msgid "Icon url" msgstr "Táknmyndar slóð" -#: mod/settings.php:692 +#: mod/settings.php:686 msgid "You can't edit this application." msgstr "Þú getur ekki breytt þessu forriti." -#: mod/settings.php:735 +#: mod/settings.php:727 msgid "Connected Apps" msgstr "Tengd forrit" -#: mod/settings.php:737 src/Object/Post.php:155 src/Object/Post.php:157 +#: mod/settings.php:729 src/Object/Post.php:155 src/Object/Post.php:157 msgid "Edit" msgstr "Breyta" -#: mod/settings.php:739 +#: mod/settings.php:731 msgid "Client key starts with" msgstr "Lykill viðskiptavinar byrjar á" -#: mod/settings.php:740 +#: mod/settings.php:732 msgid "No name" msgstr "Ekkert nafn" -#: mod/settings.php:741 +#: mod/settings.php:733 msgid "Remove authorization" msgstr "Fjarlæga auðkenningu" -#: mod/settings.php:752 +#: mod/settings.php:744 msgid "No Addon settings configured" msgstr "" -#: mod/settings.php:761 +#: mod/settings.php:753 msgid "Addon Settings" msgstr "" -#: mod/settings.php:782 +#: mod/settings.php:774 msgid "Additional Features" -msgstr "" +msgstr "Viðbótareiginleikar" -#: mod/settings.php:805 src/Content/ContactSelector.php:83 +#: mod/settings.php:797 src/Content/ContactSelector.php:83 msgid "Diaspora" msgstr "Diaspora" -#: mod/settings.php:805 mod/settings.php:806 +#: mod/settings.php:797 mod/settings.php:798 msgid "enabled" msgstr "kveikt" -#: mod/settings.php:805 mod/settings.php:806 +#: mod/settings.php:797 mod/settings.php:798 msgid "disabled" msgstr "slökkt" -#: mod/settings.php:805 mod/settings.php:806 +#: mod/settings.php:797 mod/settings.php:798 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "Innbyggður stuðningur fyrir %s tenging er%s" -#: mod/settings.php:806 +#: mod/settings.php:798 msgid "GNU Social (OStatus)" msgstr "GNU Social (OStatus)" -#: mod/settings.php:837 +#: mod/settings.php:829 msgid "Email access is disabled on this site." msgstr "Slökkt hefur verið á tölvupóst aðgang á þessum þjón." -#: mod/settings.php:847 +#: mod/settings.php:839 msgid "General Social Media Settings" msgstr "Almennar stillingar samfélagsmiðla" -#: mod/settings.php:848 +#: mod/settings.php:840 msgid "Disable Content Warning" msgstr "" -#: mod/settings.php:848 +#: mod/settings.php:840 msgid "" "Users on networks like Mastodon or Pleroma are able to set a content warning" " field which collapse their post by default. This disables the automatic " @@ -6933,351 +6745,319 @@ msgid "" "any other content filtering you eventually set up." msgstr "" -#: mod/settings.php:849 +#: mod/settings.php:841 msgid "Disable intelligent shortening" msgstr "" -#: mod/settings.php:849 +#: mod/settings.php:841 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If this option is enabled then every shortened post will always point to the" " original friendica post." msgstr "" -#: mod/settings.php:850 +#: mod/settings.php:842 msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" msgstr "" -#: mod/settings.php:850 +#: mod/settings.php:842 msgid "" "If you receive a message from an unknown OStatus user, this option decides " "what to do. If it is checked, a new contact will be created for every " "unknown user." msgstr "" -#: mod/settings.php:851 +#: mod/settings.php:843 msgid "Default group for OStatus contacts" msgstr "" -#: mod/settings.php:852 +#: mod/settings.php:844 msgid "Your legacy GNU Social account" msgstr "" -#: mod/settings.php:852 +#: mod/settings.php:844 msgid "" "If you enter your old GNU Social/Statusnet account name here (in the format " "user@domain.tld), your contacts will be added automatically. The field will " "be emptied when done." msgstr "" -#: mod/settings.php:855 +#: mod/settings.php:847 msgid "Repair OStatus subscriptions" msgstr "" -#: mod/settings.php:859 +#: mod/settings.php:851 msgid "Email/Mailbox Setup" msgstr "Tölvupóstur stilling" -#: mod/settings.php:860 +#: mod/settings.php:852 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." -msgstr "Ef þú villt hafa samskipti við tölvupósts tengiliði með þessari þjónustu (valfrjálst), skilgreindu þá hvernig á að tengjast póstfanginu þínu." +msgstr "Ef þú villt hafa samskipti við tölvupóststengiliði með þessari þjónustu (valfrjálst), skilgreindu þá hvernig á að tengjast póstfanginu þínu." -#: mod/settings.php:861 +#: mod/settings.php:853 msgid "Last successful email check:" -msgstr "Póstfang sannreynt síðast:" +msgstr "Síðasta prófun á tölvupóstfangi:" -#: mod/settings.php:863 +#: mod/settings.php:855 msgid "IMAP server name:" msgstr "IMAP þjónn:" -#: mod/settings.php:864 +#: mod/settings.php:856 msgid "IMAP port:" msgstr "IMAP port:" -#: mod/settings.php:865 +#: mod/settings.php:857 msgid "Security:" msgstr "Öryggi:" -#: mod/settings.php:865 mod/settings.php:870 +#: mod/settings.php:857 mod/settings.php:862 msgid "None" msgstr "Ekkert" -#: mod/settings.php:866 +#: mod/settings.php:858 msgid "Email login name:" msgstr "Notandanafn tölvupóstfangs:" -#: mod/settings.php:867 +#: mod/settings.php:859 msgid "Email password:" msgstr "Lykilorð tölvupóstfangs:" -#: mod/settings.php:868 +#: mod/settings.php:860 msgid "Reply-to address:" msgstr "Svarpóstfang:" -#: mod/settings.php:869 +#: mod/settings.php:861 msgid "Send public posts to all email contacts:" msgstr "Senda opinberar færslur á alla tölvupóst viðtakendur:" -#: mod/settings.php:870 +#: mod/settings.php:862 msgid "Action after import:" msgstr "" -#: mod/settings.php:870 src/Content/Nav.php:191 +#: mod/settings.php:862 src/Content/Nav.php:193 msgid "Mark as seen" msgstr "Merka sem séð" -#: mod/settings.php:870 +#: mod/settings.php:862 msgid "Move to folder" msgstr "Flytja yfir í skrásafn" -#: mod/settings.php:871 +#: mod/settings.php:863 msgid "Move to folder:" msgstr "Flytja yfir í skrásafn:" -#: mod/settings.php:914 +#: mod/settings.php:906 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (ekki stutt)" -#: mod/settings.php:916 +#: mod/settings.php:908 #, php-format msgid "%s - (Experimental)" msgstr "%s - (á tilraunastigi)" -#: mod/settings.php:959 +#: mod/settings.php:951 msgid "Display Settings" msgstr "Birtingarstillingar" -#: mod/settings.php:965 mod/settings.php:989 +#: mod/settings.php:957 mod/settings.php:981 msgid "Display Theme:" msgstr "Útlits þema:" -#: mod/settings.php:966 +#: mod/settings.php:958 msgid "Mobile Theme:" msgstr "Farsímaþema" -#: mod/settings.php:967 +#: mod/settings.php:959 msgid "Suppress warning of insecure networks" msgstr "" -#: mod/settings.php:967 +#: mod/settings.php:959 msgid "" "Should the system suppress the warning that the current group contains " "members of networks that can't receive non public postings." msgstr "" -#: mod/settings.php:968 +#: mod/settings.php:960 msgid "Update browser every xx seconds" msgstr "Endurhlaða vefsíðu á xx sekúndu fresti" -#: mod/settings.php:968 +#: mod/settings.php:960 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "" -#: mod/settings.php:969 +#: mod/settings.php:961 msgid "Number of items to display per page:" msgstr "" -#: mod/settings.php:969 mod/settings.php:970 +#: mod/settings.php:961 mod/settings.php:962 msgid "Maximum of 100 items" msgstr "" -#: mod/settings.php:970 +#: mod/settings.php:962 msgid "Number of items to display per page when viewed from mobile device:" msgstr "" -#: mod/settings.php:971 +#: mod/settings.php:963 msgid "Don't show emoticons" -msgstr "" +msgstr "Ekki birta tjáningartákn" -#: mod/settings.php:972 +#: mod/settings.php:964 msgid "Calendar" msgstr "Dagatal" -#: mod/settings.php:973 +#: mod/settings.php:965 msgid "Beginning of week:" msgstr "Upphaf viku:" -#: mod/settings.php:974 +#: mod/settings.php:966 msgid "Don't show notices" -msgstr "" +msgstr "Ekki birta tilkynningar" -#: mod/settings.php:975 +#: mod/settings.php:967 msgid "Infinite scroll" msgstr "" -#: mod/settings.php:976 +#: mod/settings.php:968 msgid "Automatic updates only at the top of the network page" msgstr "" -#: mod/settings.php:976 +#: mod/settings.php:968 msgid "" "When disabled, the network page is updated all the time, which could be " "confusing while reading." msgstr "" -#: mod/settings.php:977 +#: mod/settings.php:969 msgid "Bandwith Saver Mode" msgstr "" -#: mod/settings.php:977 +#: mod/settings.php:969 msgid "" "When enabled, embedded content is not displayed on automatic updates, they " "only show on page reload." msgstr "" -#: mod/settings.php:978 +#: mod/settings.php:970 msgid "Smart Threading" msgstr "" -#: mod/settings.php:978 +#: mod/settings.php:970 msgid "" "When enabled, suppress extraneous thread indentation while keeping it where " "it matters. Only works if threading is available and enabled." msgstr "" -#: mod/settings.php:980 +#: mod/settings.php:972 msgid "General Theme Settings" msgstr "" -#: mod/settings.php:981 +#: mod/settings.php:973 msgid "Custom Theme Settings" msgstr "" -#: mod/settings.php:982 +#: mod/settings.php:974 msgid "Content Settings" msgstr "Stillingar efnis" -#: mod/settings.php:983 view/theme/duepuntozero/config.php:73 -#: view/theme/frio/config.php:115 view/theme/quattro/config.php:75 +#: mod/settings.php:975 view/theme/duepuntozero/config.php:73 +#: view/theme/frio/config.php:120 view/theme/quattro/config.php:75 #: view/theme/vier/config.php:121 msgid "Theme settings" msgstr "Þemastillingar" -#: mod/settings.php:1002 +#: mod/settings.php:994 msgid "Unable to find your profile. Please contact your admin." msgstr "" -#: mod/settings.php:1044 +#: mod/settings.php:1033 msgid "Account Types" msgstr "Gerðir notendaaðganga" -#: mod/settings.php:1045 +#: mod/settings.php:1034 msgid "Personal Page Subtypes" msgstr "" -#: mod/settings.php:1046 +#: mod/settings.php:1035 msgid "Community Forum Subtypes" msgstr "" -#: mod/settings.php:1053 -msgid "Personal Page" -msgstr "" - -#: mod/settings.php:1054 +#: mod/settings.php:1043 msgid "Account for a personal profile." msgstr "" -#: mod/settings.php:1057 -msgid "Organisation Page" -msgstr "" - -#: mod/settings.php:1058 +#: mod/settings.php:1047 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "" -#: mod/settings.php:1061 -msgid "News Page" -msgstr "" - -#: mod/settings.php:1062 +#: mod/settings.php:1051 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: mod/settings.php:1065 -msgid "Community Forum" -msgstr "" - -#: mod/settings.php:1066 +#: mod/settings.php:1055 msgid "Account for community discussions." msgstr "" -#: mod/settings.php:1069 -msgid "Normal Account Page" -msgstr "" - -#: mod/settings.php:1070 +#: mod/settings.php:1059 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "" -#: mod/settings.php:1073 -msgid "Soapbox Page" -msgstr "" - -#: mod/settings.php:1074 +#: mod/settings.php:1063 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: mod/settings.php:1077 -msgid "Public Forum" -msgstr "" - -#: mod/settings.php:1078 +#: mod/settings.php:1067 msgid "Automatically approves all contact requests." msgstr "" -#: mod/settings.php:1081 -msgid "Automatic Friend Page" -msgstr "" - -#: mod/settings.php:1082 +#: mod/settings.php:1071 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "" -#: mod/settings.php:1085 +#: mod/settings.php:1074 msgid "Private Forum [Experimental]" msgstr "Einkaspjallsvæði [á tilraunastigi]" -#: mod/settings.php:1086 +#: mod/settings.php:1075 msgid "Requires manual approval of contact requests." msgstr "" -#: mod/settings.php:1097 +#: mod/settings.php:1086 msgid "OpenID:" msgstr "OpenID:" -#: mod/settings.php:1097 +#: mod/settings.php:1086 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Valfrjálst) Leyfa þessu OpenID til að auðkennast sem þessi notandi." -#: mod/settings.php:1105 +#: mod/settings.php:1094 msgid "Publish your default profile in your local site directory?" msgstr "Gefa út sjálfgefna forsíðu í tengiliðalista á þessum þjón?" -#: mod/settings.php:1105 +#: mod/settings.php:1094 #, php-format msgid "" "Your profile will be published in the global friendica directories (e.g. %s). Your profile will be visible in public." msgstr "" -#: mod/settings.php:1111 +#: mod/settings.php:1100 msgid "Publish your default profile in the global social directory?" msgstr "Gefa sjálfgefna forsíðu út í alheimstengiliðalista?" -#: mod/settings.php:1111 +#: mod/settings.php:1100 #, php-format msgid "" "Your profile will be published in this node's local " @@ -7285,308 +7065,580 @@ msgid "" " system settings." msgstr "" -#: mod/settings.php:1118 +#: mod/settings.php:1107 msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "Fela tengiliða-/vinalistann þinn fyrir áhorfendum á sjálfgefinni forsíðu?" -#: mod/settings.php:1118 +#: mod/settings.php:1107 msgid "" "Your contact list won't be shown in your default profile page. You can " "decide to show your contact list separately for each additional profile you " "create" msgstr "" -#: mod/settings.php:1122 +#: mod/settings.php:1111 msgid "Hide your profile details from anonymous viewers?" msgstr "" -#: mod/settings.php:1122 +#: mod/settings.php:1111 msgid "" "Anonymous visitors will only see your profile picture, your display name and" " the nickname you are using on your profile page. Disables posting public " "messages to Diaspora and other networks." msgstr "" -#: mod/settings.php:1126 +#: mod/settings.php:1115 msgid "Allow friends to post to your profile page?" msgstr "Leyfa vinum að deila á forsíðuna þína?" -#: mod/settings.php:1126 +#: mod/settings.php:1115 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "" -#: mod/settings.php:1130 +#: mod/settings.php:1119 msgid "Allow friends to tag your posts?" msgstr "Leyfa vinum að merkja færslurnar þínar?" -#: mod/settings.php:1130 +#: mod/settings.php:1119 msgid "Your contacts can add additional tags to your posts." msgstr "" -#: mod/settings.php:1134 +#: mod/settings.php:1123 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Leyfa að stungið verði uppá þér sem hugsamlegum vinur fyrir aðra notendur? " -#: mod/settings.php:1134 +#: mod/settings.php:1123 msgid "" "If you like, Friendica may suggest new members to add you as a contact." msgstr "" -#: mod/settings.php:1138 +#: mod/settings.php:1127 msgid "Permit unknown people to send you private mail?" msgstr "" -#: mod/settings.php:1138 +#: mod/settings.php:1127 msgid "" "Friendica network users may send you private messages even if they are not " "in your contact list." msgstr "" -#: mod/settings.php:1142 +#: mod/settings.php:1131 msgid "Profile is not published." msgstr "Forsíðu hefur ekki verið gefinn út." -#: mod/settings.php:1148 +#: mod/settings.php:1137 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "" -#: mod/settings.php:1155 +#: mod/settings.php:1144 msgid "Automatically expire posts after this many days:" msgstr "Sjálfkrafa fyrna færslu eftir hvað marga daga:" -#: mod/settings.php:1155 +#: mod/settings.php:1144 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Tómar færslur renna ekki út. Útrunnum færslum er eytt" -#: mod/settings.php:1156 +#: mod/settings.php:1145 msgid "Advanced expiration settings" msgstr "Ítarlegar stillingar fyrningatíma" -#: mod/settings.php:1157 +#: mod/settings.php:1146 msgid "Advanced Expiration" msgstr "Flókin fyrning" -#: mod/settings.php:1158 +#: mod/settings.php:1147 msgid "Expire posts:" msgstr "Fyrna færslur:" -#: mod/settings.php:1159 +#: mod/settings.php:1148 msgid "Expire personal notes:" msgstr "Fyrna einka glósur:" -#: mod/settings.php:1160 +#: mod/settings.php:1149 msgid "Expire starred posts:" msgstr "Fyrna stjörnumerktar færslur:" -#: mod/settings.php:1161 +#: mod/settings.php:1150 msgid "Expire photos:" msgstr "Fyrna myndum:" -#: mod/settings.php:1162 +#: mod/settings.php:1151 msgid "Only expire posts by others:" msgstr "" -#: mod/settings.php:1192 +#: mod/settings.php:1181 msgid "Account Settings" msgstr "Stillingar aðgangs" -#: mod/settings.php:1200 +#: mod/settings.php:1189 msgid "Password Settings" msgstr "Stillingar aðgangsorða" -#: mod/settings.php:1202 +#: mod/settings.php:1191 msgid "Leave password fields blank unless changing" msgstr "Hafðu aðgangsorða svæði tóm nema þegar verið er að breyta" -#: mod/settings.php:1203 +#: mod/settings.php:1192 msgid "Current Password:" msgstr "Núverandi lykilorð:" -#: mod/settings.php:1203 mod/settings.php:1204 +#: mod/settings.php:1192 mod/settings.php:1193 msgid "Your current password to confirm the changes" msgstr "" -#: mod/settings.php:1204 +#: mod/settings.php:1193 msgid "Password:" msgstr "Lykilorð:" -#: mod/settings.php:1208 +#: mod/settings.php:1197 msgid "Basic Settings" msgstr "Grunnstillingar" -#: mod/settings.php:1209 src/Model/Profile.php:738 +#: mod/settings.php:1198 src/Model/Profile.php:736 msgid "Full Name:" msgstr "Fullt nafn:" -#: mod/settings.php:1210 +#: mod/settings.php:1199 msgid "Email Address:" -msgstr "Póstfang:" +msgstr "Tölvupóstfang:" -#: mod/settings.php:1211 +#: mod/settings.php:1200 msgid "Your Timezone:" msgstr "Þitt tímabelti:" -#: mod/settings.php:1212 +#: mod/settings.php:1201 msgid "Your Language:" msgstr "Tungumálið þitt:" -#: mod/settings.php:1212 +#: mod/settings.php:1201 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "" -#: mod/settings.php:1213 +#: mod/settings.php:1202 msgid "Default Post Location:" msgstr "Sjálfgefin staðsetning færslu:" -#: mod/settings.php:1214 +#: mod/settings.php:1203 msgid "Use Browser Location:" msgstr "Nota vafra staðsetningu:" -#: mod/settings.php:1217 +#: mod/settings.php:1206 msgid "Security and Privacy Settings" msgstr "Öryggis og friðhelgistillingar" -#: mod/settings.php:1219 +#: mod/settings.php:1208 msgid "Maximum Friend Requests/Day:" msgstr "Hámarks vinabeiðnir á dag:" -#: mod/settings.php:1219 mod/settings.php:1248 +#: mod/settings.php:1208 mod/settings.php:1237 msgid "(to prevent spam abuse)" msgstr "(til að koma í veg fyrir rusl misnotkun)" -#: mod/settings.php:1220 +#: mod/settings.php:1209 msgid "Default Post Permissions" msgstr "Sjálfgefnar aðgangstýring á færslum" -#: mod/settings.php:1221 +#: mod/settings.php:1210 msgid "(click to open/close)" msgstr "(ýttu á til að opna/loka)" -#: mod/settings.php:1231 +#: mod/settings.php:1220 msgid "Default Private Post" -msgstr "" +msgstr "Sjálfgefin einkafærsla" -#: mod/settings.php:1232 +#: mod/settings.php:1221 msgid "Default Public Post" -msgstr "" +msgstr "Sjálfgefin opinber færsla" -#: mod/settings.php:1236 +#: mod/settings.php:1225 msgid "Default Permissions for New Posts" -msgstr "" +msgstr "Sjálfgefnar heimildir á nýjum færslum" -#: mod/settings.php:1248 +#: mod/settings.php:1237 msgid "Maximum private messages per day from unknown people:" msgstr "" -#: mod/settings.php:1251 +#: mod/settings.php:1240 msgid "Notification Settings" msgstr "Stillingar á tilkynningum" -#: mod/settings.php:1252 -msgid "By default post a status message when:" -msgstr "" - -#: mod/settings.php:1253 -msgid "accepting a friend request" -msgstr "samþykki vinabeiðni" - -#: mod/settings.php:1254 -msgid "joining a forum/community" -msgstr "ganga til liðs við hóp/samfélag" - -#: mod/settings.php:1255 -msgid "making an interesting profile change" -msgstr "" - -#: mod/settings.php:1256 +#: mod/settings.php:1241 msgid "Send a notification email when:" -msgstr "Senda tilkynninga tölvupóst þegar:" +msgstr "Senda tilkynningapóst þegar:" -#: mod/settings.php:1257 +#: mod/settings.php:1242 msgid "You receive an introduction" msgstr "Þú færð kynningu" -#: mod/settings.php:1258 +#: mod/settings.php:1243 msgid "Your introductions are confirmed" msgstr "Kynningarnar þínar eru samþykktar" -#: mod/settings.php:1259 +#: mod/settings.php:1244 msgid "Someone writes on your profile wall" -msgstr "Einhver skrifar á vegginn þínn" +msgstr "Einhver skrifar á vegginn þinn" -#: mod/settings.php:1260 +#: mod/settings.php:1245 msgid "Someone writes a followup comment" msgstr "Einhver skrifar athugasemd á færslu hjá þér" -#: mod/settings.php:1261 +#: mod/settings.php:1246 msgid "You receive a private message" msgstr "Þú færð einkaskilaboð" -#: mod/settings.php:1262 +#: mod/settings.php:1247 msgid "You receive a friend suggestion" msgstr "Þér hefur borist vina uppástunga" -#: mod/settings.php:1263 +#: mod/settings.php:1248 msgid "You are tagged in a post" msgstr "Þú varst merkt(ur) í færslu" -#: mod/settings.php:1264 +#: mod/settings.php:1249 msgid "You are poked/prodded/etc. in a post" -msgstr "" +msgstr "Það var potað/ýtt/o.s.frv. við þér í færslu" -#: mod/settings.php:1266 +#: mod/settings.php:1251 msgid "Activate desktop notifications" msgstr "" -#: mod/settings.php:1266 +#: mod/settings.php:1251 msgid "Show desktop popup on new notifications" msgstr "" -#: mod/settings.php:1268 +#: mod/settings.php:1253 msgid "Text-only notification emails" msgstr "" -#: mod/settings.php:1270 +#: mod/settings.php:1255 msgid "Send text only notification emails, without the html part" msgstr "" -#: mod/settings.php:1272 +#: mod/settings.php:1257 msgid "Show detailled notifications" msgstr "" -#: mod/settings.php:1274 +#: mod/settings.php:1259 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "" -#: mod/settings.php:1276 +#: mod/settings.php:1261 msgid "Advanced Account/Page Type Settings" msgstr "" -#: mod/settings.php:1277 +#: mod/settings.php:1262 msgid "Change the behaviour of this account for special situations" msgstr "" -#: mod/settings.php:1280 +#: mod/settings.php:1265 msgid "Relocate" -msgstr "" +msgstr "Endurstaðsetja" -#: mod/settings.php:1281 +#: mod/settings.php:1266 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "" -#: mod/settings.php:1282 +#: mod/settings.php:1267 msgid "Resend relocate message to contacts" msgstr "" +#: view/theme/duepuntozero/config.php:54 src/Model/User.php:502 +msgid "default" +msgstr "sjálfgefið" + +#: view/theme/duepuntozero/config.php:55 +msgid "greenzero" +msgstr "" + +#: view/theme/duepuntozero/config.php:56 +msgid "purplezero" +msgstr "" + +#: view/theme/duepuntozero/config.php:57 +msgid "easterbunny" +msgstr "" + +#: view/theme/duepuntozero/config.php:58 +msgid "darkzero" +msgstr "" + +#: view/theme/duepuntozero/config.php:59 +msgid "comix" +msgstr "" + +#: view/theme/duepuntozero/config.php:60 +msgid "slackr" +msgstr "" + +#: view/theme/duepuntozero/config.php:74 +msgid "Variations" +msgstr "Tilbrigði" + +#: view/theme/frio/php/Image.php:24 +msgid "Top Banner" +msgstr "Borði efst" + +#: view/theme/frio/php/Image.php:24 +msgid "" +"Resize image to the width of the screen and show background color below on " +"long pages." +msgstr "" + +#: view/theme/frio/php/Image.php:25 +msgid "Full screen" +msgstr "Skjáfylli" + +#: view/theme/frio/php/Image.php:25 +msgid "" +"Resize image to fill entire screen, clipping either the right or the bottom." +msgstr "" + +#: view/theme/frio/php/Image.php:26 +msgid "Single row mosaic" +msgstr "" + +#: view/theme/frio/php/Image.php:26 +msgid "" +"Resize image to repeat it on a single row, either vertical or horizontal." +msgstr "" + +#: view/theme/frio/php/Image.php:27 +msgid "Mosaic" +msgstr "Mósaík" + +#: view/theme/frio/php/Image.php:27 +msgid "Repeat image to fill the screen." +msgstr "" + +#: view/theme/frio/config.php:102 +msgid "Custom" +msgstr "Sérsniðið" + +#: view/theme/frio/config.php:114 +msgid "Note" +msgstr "Minnispunktur" + +#: view/theme/frio/config.php:114 +msgid "Check image permissions if all users are allowed to see the image" +msgstr "" + +#: view/theme/frio/config.php:121 +msgid "Select color scheme" +msgstr "Veldu litastef" + +#: view/theme/frio/config.php:122 +msgid "Navigation bar background color" +msgstr "" + +#: view/theme/frio/config.php:123 +msgid "Navigation bar icon color " +msgstr "" + +#: view/theme/frio/config.php:124 +msgid "Link color" +msgstr "Litur tengils" + +#: view/theme/frio/config.php:125 +msgid "Set the background color" +msgstr "Stilltu bakgrunnslit" + +#: view/theme/frio/config.php:126 +msgid "Content background opacity" +msgstr "" + +#: view/theme/frio/config.php:127 +msgid "Set the background image" +msgstr "" + +#: view/theme/frio/config.php:128 +msgid "Background image style" +msgstr "Stíll bakgrunnsmyndar" + +#: view/theme/frio/config.php:133 +msgid "Login page background image" +msgstr "" + +#: view/theme/frio/config.php:137 +msgid "Login page background color" +msgstr "" + +#: view/theme/frio/config.php:137 +msgid "Leave background image and color empty for theme defaults" +msgstr "" + +#: view/theme/frio/theme.php:238 +msgid "Guest" +msgstr "Gestur" + +#: view/theme/frio/theme.php:243 +msgid "Visitor" +msgstr "Í heimsókn" + +#: view/theme/frio/theme.php:256 src/Content/Nav.php:97 +#: src/Module/Login.php:312 +msgid "Logout" +msgstr "Útskráning" + +#: view/theme/frio/theme.php:256 src/Content/Nav.php:97 +msgid "End this session" +msgstr "Loka þessu innliti" + +#: view/theme/frio/theme.php:259 src/Content/Nav.php:100 +#: src/Content/Nav.php:186 +msgid "Your posts and conversations" +msgstr "Samtölin þín" + +#: view/theme/frio/theme.php:260 src/Content/Nav.php:101 +msgid "Your profile page" +msgstr "Forsíðan þín" + +#: view/theme/frio/theme.php:261 src/Content/Nav.php:102 +msgid "Your photos" +msgstr "Myndirnar þínar" + +#: view/theme/frio/theme.php:262 src/Content/Nav.php:103 +#: src/Model/Profile.php:910 src/Model/Profile.php:913 +msgid "Videos" +msgstr "Myndskeið" + +#: view/theme/frio/theme.php:262 src/Content/Nav.php:103 +msgid "Your videos" +msgstr "Myndskeiðin þín" + +#: view/theme/frio/theme.php:263 src/Content/Nav.php:104 +msgid "Your events" +msgstr "Atburðirnir þínir" + +#: view/theme/frio/theme.php:266 src/Content/Nav.php:183 +msgid "Conversations from your friends" +msgstr "Samtöl frá vinum" + +#: view/theme/frio/theme.php:267 src/Content/Nav.php:170 +#: src/Model/Profile.php:925 src/Model/Profile.php:936 +msgid "Events and Calendar" +msgstr "Atburðir og dagskrá" + +#: view/theme/frio/theme.php:268 src/Content/Nav.php:196 +msgid "Private mail" +msgstr "Einka skilaboð" + +#: view/theme/frio/theme.php:269 src/Content/Nav.php:207 +msgid "Account settings" +msgstr "Stillingar aðgangsreiknings" + +#: view/theme/frio/theme.php:270 src/Content/Nav.php:213 +msgid "Manage/edit friends and contacts" +msgstr "Sýsla með vini og tengiliði" + +#: view/theme/quattro/config.php:76 +msgid "Alignment" +msgstr "Hliðjöfnun" + +#: view/theme/quattro/config.php:76 +msgid "Left" +msgstr "Vinstri" + +#: view/theme/quattro/config.php:76 +msgid "Center" +msgstr "Miðjað" + +#: view/theme/quattro/config.php:77 +msgid "Color scheme" +msgstr "Litastef" + +#: view/theme/quattro/config.php:78 +msgid "Posts font size" +msgstr "Leturstærð færslna" + +#: view/theme/quattro/config.php:79 +msgid "Textareas font size" +msgstr "Leturstærð textareita" + +#: view/theme/vier/config.php:75 +msgid "Comma separated list of helper forums" +msgstr "" + +#: view/theme/vier/config.php:115 src/Core/ACL.php:309 +msgid "don't show" +msgstr "fela" + +#: view/theme/vier/config.php:115 src/Core/ACL.php:308 +msgid "show" +msgstr "sýna" + +#: view/theme/vier/config.php:122 +msgid "Set style" +msgstr "Setja stíl" + +#: view/theme/vier/config.php:123 +msgid "Community Pages" +msgstr "Síður samfélagsins" + +#: view/theme/vier/config.php:124 view/theme/vier/theme.php:150 +msgid "Community Profiles" +msgstr "Forsíður samfélagsins" + +#: view/theme/vier/config.php:125 +msgid "Help or @NewHere ?" +msgstr "Hjálp eða @NýrHér ?" + +#: view/theme/vier/config.php:126 view/theme/vier/theme.php:388 +msgid "Connect Services" +msgstr "Tengja þjónustur" + +#: view/theme/vier/config.php:127 +msgid "Find Friends" +msgstr "Finna vini" + +#: view/theme/vier/config.php:128 view/theme/vier/theme.php:181 +msgid "Last users" +msgstr "Nýjustu notendurnir" + +#: view/theme/vier/theme.php:199 src/Content/Widget.php:59 +msgid "Find People" +msgstr "Finna fólk" + +#: view/theme/vier/theme.php:200 src/Content/Widget.php:60 +msgid "Enter name or interest" +msgstr "Settu inn nafn eða áhugamál" + +#: view/theme/vier/theme.php:202 src/Content/Widget.php:62 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Dæmi: Jón Jónsson, Veiði" + +#: view/theme/vier/theme.php:205 src/Content/Widget.php:65 +msgid "Similar Interests" +msgstr "Svipuð áhugamál" + +#: view/theme/vier/theme.php:206 src/Content/Widget.php:66 +msgid "Random Profile" +msgstr "Forsíða af handahófi" + +#: view/theme/vier/theme.php:207 src/Content/Widget.php:67 +msgid "Invite Friends" +msgstr "Bjóða vinum aðgang" + +#: view/theme/vier/theme.php:210 src/Content/Widget.php:70 +msgid "Local Directory" +msgstr "Staðvær mappa" + +#: view/theme/vier/theme.php:255 src/Content/ForumManager.php:127 +msgid "External link to forum" +msgstr "Ytri tengill á spjallsvæði" + +#: view/theme/vier/theme.php:291 +msgid "Quick Start" +msgstr "" + #: src/Core/UserImport.php:104 msgid "Error decoding account file" msgstr "" @@ -7619,16 +7671,54 @@ msgstr[1] "" msgid "Done. You can now login with your username and password" msgstr "" +#: src/Core/ACL.php:295 +msgid "Post to Email" +msgstr "Senda skilaboð á tölvupóst" + +#: src/Core/ACL.php:301 +msgid "Hide your profile details from unknown viewers?" +msgstr "Fela forsíðuupplýsingar fyrir óþekktum?" + +#: src/Core/ACL.php:300 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "" + +#: src/Core/ACL.php:307 +msgid "Visible to everybody" +msgstr "Sjáanlegt öllum" + +#: src/Core/ACL.php:319 +msgid "Close" +msgstr "Loka" + +#: src/Core/Console/NewPassword.php:78 +msgid "Enter new password: " +msgstr "Settu inn nýtt lykilorð: " + +#: src/Core/Console/NewPassword.php:83 src/Model/User.php:262 +msgid "Password can't be empty" +msgstr "Lykilorð getur ekki verið autt" + +#: src/Core/Console/ArchiveContact.php:67 +#, php-format +msgid "Could not find any unarchived contact entry for this URL (%s)" +msgstr "" + +#: src/Core/Console/ArchiveContact.php:72 +msgid "The contact entries have been archived" +msgstr "" + #: src/Core/NotificationsManager.php:171 msgid "System" msgstr "Kerfi" #: src/Core/NotificationsManager.php:192 src/Content/Nav.php:124 -#: src/Content/Nav.php:181 +#: src/Content/Nav.php:186 msgid "Home" msgstr "Heim" -#: src/Core/NotificationsManager.php:199 src/Content/Nav.php:186 +#: src/Core/NotificationsManager.php:199 src/Content/Nav.php:190 msgid "Introductions" msgstr "Kynningar" @@ -7684,36 +7774,235 @@ msgstr "Vinabeiðni/Tengibeiðni" msgid "New Follower" msgstr "Nýr fylgjandi" -#: src/Core/ACL.php:295 -msgid "Post to Email" -msgstr "Senda skilaboð á tölvupóst" +#: src/Core/Install.php:157 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Gat ekki fundið skipanalínu útgáfu af PHP í vefþjóns PATH." -#: src/Core/ACL.php:301 -msgid "Hide your profile details from unknown viewers?" -msgstr "Fela forsíðuupplýsingar fyrir óþekktum?" - -#: src/Core/ACL.php:300 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." +#: src/Core/Install.php:158 +msgid "" +"If you don't have a command line version of PHP installed on your server, " +"you will not be able to run the background processing. See 'Setup the worker'" msgstr "" -#: src/Core/ACL.php:307 -msgid "Visible to everybody" -msgstr "Sjáanlegt öllum" +#: src/Core/Install.php:162 +msgid "PHP executable path" +msgstr "PHP keyrslu slóð" -#: src/Core/ACL.php:308 view/theme/vier/config.php:115 -msgid "show" -msgstr "sýna" +#: src/Core/Install.php:162 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "" -#: src/Core/ACL.php:309 view/theme/vier/config.php:115 -msgid "don't show" -msgstr "fela" +#: src/Core/Install.php:167 +msgid "Command line PHP" +msgstr "Skipanalínu PHP" -#: src/Core/ACL.php:319 -msgid "Close" -msgstr "Loka" +#: src/Core/Install.php:176 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "" -#: src/Util/Temporal.php:147 src/Model/Profile.php:758 +#: src/Core/Install.php:177 +msgid "Found PHP version: " +msgstr "Fann PHP útgáfu: " + +#: src/Core/Install.php:179 +msgid "PHP cli binary" +msgstr "" + +#: src/Core/Install.php:189 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "Skipanalínu útgáfa af PHP á vefþjóninum hefur ekki kveikt á \"register_argc_argv\"." + +#: src/Core/Install.php:190 +msgid "This is required for message delivery to work." +msgstr "Þetta er skilyrt fyrir því að skilaboð komist til skila." + +#: src/Core/Install.php:192 +msgid "PHP register_argc_argv" +msgstr "" + +#: src/Core/Install.php:220 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Villa: Stefjan \"openssl_pkey_new\" á vefþjóninum getur ekki stofnað dulkóðunar lykla" + +#: src/Core/Install.php:221 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Ef keyrt er á Window, skoðaðu þá \"http://www.php.net/manual/en/openssl.installation.php\"." + +#: src/Core/Install.php:223 +msgid "Generate encryption keys" +msgstr "Búa til dulkóðunar lykla" + +#: src/Core/Install.php:244 +msgid "libCurl PHP module" +msgstr "libCurl PHP eining" + +#: src/Core/Install.php:245 +msgid "GD graphics PHP module" +msgstr "GD graphics PHP eining" + +#: src/Core/Install.php:246 +msgid "OpenSSL PHP module" +msgstr "OpenSSL PHP eining" + +#: src/Core/Install.php:247 +msgid "PDO or MySQLi PHP module" +msgstr "" + +#: src/Core/Install.php:248 +msgid "mb_string PHP module" +msgstr "mb_string PHP eining" + +#: src/Core/Install.php:249 +msgid "XML PHP module" +msgstr "" + +#: src/Core/Install.php:250 +msgid "iconv PHP module" +msgstr "" + +#: src/Core/Install.php:251 +msgid "POSIX PHP module" +msgstr "" + +#: src/Core/Install.php:255 src/Core/Install.php:257 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite eining" + +#: src/Core/Install.php:255 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Villa: Apache vefþjóns eining mod-rewrite er skilyrði og er ekki uppsett. " + +#: src/Core/Install.php:263 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Villa: libCurl PHP eining er skilyrði og er ekki uppsett." + +#: src/Core/Install.php:267 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Villa: GD graphics PHP eining með JPEG stuðningi er skilyrði og er ekki uppsett." + +#: src/Core/Install.php:271 +msgid "Error: openssl PHP module required but not installed." +msgstr "Villa: openssl PHP eining skilyrði og er ekki uppsett." + +#: src/Core/Install.php:275 +msgid "Error: PDO or MySQLi PHP module required but not installed." +msgstr "" + +#: src/Core/Install.php:279 +msgid "Error: The MySQL driver for PDO is not installed." +msgstr "" + +#: src/Core/Install.php:283 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Villa: mb_string PHP eining skilyrði en ekki uppsett." + +#: src/Core/Install.php:287 +msgid "Error: iconv PHP module required but not installed." +msgstr "" + +#: src/Core/Install.php:291 +msgid "Error: POSIX PHP module required but not installed." +msgstr "" + +#: src/Core/Install.php:301 +msgid "Error, XML PHP module required but not installed." +msgstr "" + +#: src/Core/Install.php:320 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "Vef uppsetningar forrit þarf að geta stofnað skránna \".htconfig.php\" in efsta skráarsafninu á vefþjóninum og það getur ekki gert það." + +#: src/Core/Install.php:321 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "Þetta er oftast aðgangsstýringa stilling, þar sem vefþjónninn getur ekki skrifað út skrár í skráarsafnið - þó þú getir það." + +#: src/Core/Install.php:322 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "" + +#: src/Core/Install.php:323 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "" + +#: src/Core/Install.php:326 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php er skrifanleg" + +#: src/Core/Install.php:344 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "" + +#: src/Core/Install.php:345 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/smarty3/ under the Friendica top level " +"folder." +msgstr "" + +#: src/Core/Install.php:346 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "" + +#: src/Core/Install.php:347 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/smarty3/ only--not the template files (.tpl) that it contains." +msgstr "" + +#: src/Core/Install.php:350 +msgid "view/smarty3 is writable" +msgstr "" + +#: src/Core/Install.php:375 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "" + +#: src/Core/Install.php:377 +msgid "Error message from Curl when fetching" +msgstr "" + +#: src/Core/Install.php:381 +msgid "Url rewrite is working" +msgstr "" + +#: src/Core/Install.php:408 +msgid "ImageMagick PHP extension is not installed" +msgstr "" + +#: src/Core/Install.php:410 +msgid "ImageMagick PHP extension is installed" +msgstr "" + +#: src/Core/Install.php:412 +msgid "ImageMagick supports GIF" +msgstr "" + +#: src/Util/Temporal.php:147 src/Model/Profile.php:756 msgid "Birthday:" msgstr "Afmælisdagur:" @@ -7778,216 +8067,36 @@ msgstr "sekúndur" msgid "%1$d %2$s ago" msgstr "Fyrir %1$d %2$s síðan" -#: src/Content/Text/BBCode.php:555 +#: src/Content/Text/BBCode.php:416 msgid "view full size" msgstr "Skoða í fullri stærð" -#: src/Content/Text/BBCode.php:981 src/Content/Text/BBCode.php:1750 -#: src/Content/Text/BBCode.php:1751 +#: src/Content/Text/BBCode.php:842 src/Content/Text/BBCode.php:1611 +#: src/Content/Text/BBCode.php:1612 msgid "Image/photo" msgstr "Mynd" -#: src/Content/Text/BBCode.php:1119 +#: src/Content/Text/BBCode.php:980 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:1677 src/Content/Text/BBCode.php:1699 +#: src/Content/Text/BBCode.php:1538 src/Content/Text/BBCode.php:1560 msgid "$1 wrote:" msgstr "$1 skrifaði:" -#: src/Content/Text/BBCode.php:1759 src/Content/Text/BBCode.php:1760 +#: src/Content/Text/BBCode.php:1620 src/Content/Text/BBCode.php:1621 msgid "Encrypted content" msgstr "Dulritað efni" -#: src/Content/Text/BBCode.php:1879 +#: src/Content/Text/BBCode.php:1740 msgid "Invalid source protocol" msgstr "" -#: src/Content/Text/BBCode.php:1890 +#: src/Content/Text/BBCode.php:1751 msgid "Invalid link protocol" msgstr "" -#: src/Content/ForumManager.php:127 view/theme/vier/theme.php:256 -msgid "External link to forum" -msgstr "Ytri tengill á spjallsvæði" - -#: src/Content/Nav.php:53 -msgid "Nothing new here" -msgstr "Ekkert nýtt hér" - -#: src/Content/Nav.php:57 -msgid "Clear notifications" -msgstr "Hreinsa tilkynningar" - -#: src/Content/Nav.php:97 src/Module/Login.php:311 -#: view/theme/frio/theme.php:256 -msgid "Logout" -msgstr "Útskráning" - -#: src/Content/Nav.php:97 view/theme/frio/theme.php:256 -msgid "End this session" -msgstr "Loka þessu innliti" - -#: src/Content/Nav.php:100 src/Content/Nav.php:181 -#: view/theme/frio/theme.php:259 -msgid "Your posts and conversations" -msgstr "Samtölin þín" - -#: src/Content/Nav.php:101 view/theme/frio/theme.php:260 -msgid "Your profile page" -msgstr "Forsíðan þín" - -#: src/Content/Nav.php:102 view/theme/frio/theme.php:261 -msgid "Your photos" -msgstr "Myndirnar þínar" - -#: src/Content/Nav.php:103 src/Model/Profile.php:912 src/Model/Profile.php:915 -#: view/theme/frio/theme.php:262 -msgid "Videos" -msgstr "Myndskeið" - -#: src/Content/Nav.php:103 view/theme/frio/theme.php:262 -msgid "Your videos" -msgstr "Myndskeiðin þín" - -#: src/Content/Nav.php:104 view/theme/frio/theme.php:263 -msgid "Your events" -msgstr "Atburðirnir þínir" - -#: src/Content/Nav.php:105 -msgid "Personal notes" -msgstr "Einkaglósur" - -#: src/Content/Nav.php:105 -msgid "Your personal notes" -msgstr "Einkaglósurnar þínar" - -#: src/Content/Nav.php:114 -msgid "Sign in" -msgstr "Innskrá" - -#: src/Content/Nav.php:124 -msgid "Home Page" -msgstr "Heimasíða" - -#: src/Content/Nav.php:128 -msgid "Create an account" -msgstr "Stofna notanda" - -#: src/Content/Nav.php:134 -msgid "Help and documentation" -msgstr "Hjálp og leiðbeiningar" - -#: src/Content/Nav.php:138 -msgid "Apps" -msgstr "Forrit" - -#: src/Content/Nav.php:138 -msgid "Addon applications, utilities, games" -msgstr "Viðbótarforrit, nytjatól, leikir" - -#: src/Content/Nav.php:142 -msgid "Search site content" -msgstr "Leita í efni á vef" - -#: src/Content/Nav.php:165 -msgid "Community" -msgstr "Samfélag" - -#: src/Content/Nav.php:165 -msgid "Conversations on this and other servers" -msgstr "" - -#: src/Content/Nav.php:169 src/Model/Profile.php:927 src/Model/Profile.php:938 -#: view/theme/frio/theme.php:267 -msgid "Events and Calendar" -msgstr "Atburðir og dagskrá" - -#: src/Content/Nav.php:172 -msgid "Directory" -msgstr "Mappa" - -#: src/Content/Nav.php:172 -msgid "People directory" -msgstr "Nafnaskrá" - -#: src/Content/Nav.php:174 -msgid "Information about this friendica instance" -msgstr "Upplýsingar um þetta tilvik Friendica" - -#: src/Content/Nav.php:178 view/theme/frio/theme.php:266 -msgid "Conversations from your friends" -msgstr "Samtöl frá vinum" - -#: src/Content/Nav.php:179 -msgid "Network Reset" -msgstr "Núllstilling netkerfis" - -#: src/Content/Nav.php:179 -msgid "Load Network page with no filters" -msgstr "" - -#: src/Content/Nav.php:186 -msgid "Friend Requests" -msgstr "Vinabeiðnir" - -#: src/Content/Nav.php:190 -msgid "See all notifications" -msgstr "Sjá allar tilkynningar" - -#: src/Content/Nav.php:191 -msgid "Mark all system notifications seen" -msgstr "Merkja allar tilkynningar sem séðar" - -#: src/Content/Nav.php:195 view/theme/frio/theme.php:268 -msgid "Private mail" -msgstr "Einka skilaboð" - -#: src/Content/Nav.php:196 -msgid "Inbox" -msgstr "Innhólf" - -#: src/Content/Nav.php:197 -msgid "Outbox" -msgstr "Úthólf" - -#: src/Content/Nav.php:201 -msgid "Manage" -msgstr "Umsýsla" - -#: src/Content/Nav.php:201 -msgid "Manage other pages" -msgstr "Sýsla með aðrar síður" - -#: src/Content/Nav.php:206 view/theme/frio/theme.php:269 -msgid "Account settings" -msgstr "Stillingar aðgangsreiknings" - -#: src/Content/Nav.php:209 src/Model/Profile.php:372 -msgid "Profiles" -msgstr "Forsíður" - -#: src/Content/Nav.php:209 -msgid "Manage/Edit Profiles" -msgstr "Sýsla með forsíður" - -#: src/Content/Nav.php:212 view/theme/frio/theme.php:270 -msgid "Manage/edit friends and contacts" -msgstr "Sýsla með vini og tengiliði" - -#: src/Content/Nav.php:217 -msgid "Site setup and configuration" -msgstr "Uppsetning og stillingar vefsvæðis" - -#: src/Content/Nav.php:220 -msgid "Navigation" -msgstr "Yfirsýn" - -#: src/Content/Nav.php:220 -msgid "Site map" -msgstr "Yfirlit um vefsvæði" - #: src/Content/OEmbed.php:253 msgid "Embedding disabled" msgstr "Innfelling ekki leyfð" @@ -8008,287 +8117,6 @@ msgstr "Flytja dagatal út sem ICAL" msgid "Export calendar as csv" msgstr "Flytja dagatal út sem CSV" -#: src/Content/Feature.php:79 -msgid "General Features" -msgstr "Almennir eiginleikar" - -#: src/Content/Feature.php:81 -msgid "Multiple Profiles" -msgstr "" - -#: src/Content/Feature.php:81 -msgid "Ability to create multiple profiles" -msgstr "" - -#: src/Content/Feature.php:82 -msgid "Photo Location" -msgstr "Staðsetning ljósmyndar" - -#: src/Content/Feature.php:82 -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:83 -msgid "Export Public Calendar" -msgstr "Flytja út opinbert dagatal" - -#: src/Content/Feature.php:83 -msgid "Ability for visitors to download the public calendar" -msgstr "" - -#: src/Content/Feature.php:88 -msgid "Post Composition Features" -msgstr "" - -#: src/Content/Feature.php:89 -msgid "Post Preview" -msgstr "" - -#: src/Content/Feature.php:89 -msgid "Allow previewing posts and comments before publishing them" -msgstr "" - -#: src/Content/Feature.php:90 -msgid "Auto-mention Forums" -msgstr "" - -#: src/Content/Feature.php:90 -msgid "" -"Add/remove mention when a forum page is selected/deselected in ACL window." -msgstr "" - -#: src/Content/Feature.php:95 -msgid "Network Sidebar Widgets" -msgstr "" - -#: src/Content/Feature.php:96 -msgid "Search by Date" -msgstr "Leita eftir dagsetningu" - -#: src/Content/Feature.php:96 -msgid "Ability to select posts by date ranges" -msgstr "" - -#: src/Content/Feature.php:97 src/Content/Feature.php:127 -msgid "List Forums" -msgstr "Spjallsvæðalistar" - -#: src/Content/Feature.php:97 -msgid "Enable widget to display the forums your are connected with" -msgstr "" - -#: src/Content/Feature.php:98 -msgid "Group Filter" -msgstr "" - -#: src/Content/Feature.php:98 -msgid "Enable widget to display Network posts only from selected group" -msgstr "" - -#: src/Content/Feature.php:99 -msgid "Network Filter" -msgstr "" - -#: src/Content/Feature.php:99 -msgid "Enable widget to display Network posts only from selected network" -msgstr "" - -#: src/Content/Feature.php:100 -msgid "Save search terms for re-use" -msgstr "" - -#: src/Content/Feature.php:105 -msgid "Network Tabs" -msgstr "" - -#: src/Content/Feature.php:106 -msgid "Network Personal Tab" -msgstr "" - -#: src/Content/Feature.php:106 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "" - -#: src/Content/Feature.php:107 -msgid "Network New Tab" -msgstr "" - -#: src/Content/Feature.php:107 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "" - -#: src/Content/Feature.php:108 -msgid "Network Shared Links Tab" -msgstr "" - -#: src/Content/Feature.php:108 -msgid "Enable tab to display only Network posts with links in them" -msgstr "" - -#: src/Content/Feature.php:113 -msgid "Post/Comment Tools" -msgstr "" - -#: src/Content/Feature.php:114 -msgid "Multiple Deletion" -msgstr "" - -#: src/Content/Feature.php:114 -msgid "Select and delete multiple posts/comments at once" -msgstr "" - -#: src/Content/Feature.php:115 -msgid "Edit Sent Posts" -msgstr "" - -#: src/Content/Feature.php:115 -msgid "Edit and correct posts and comments after sending" -msgstr "" - -#: src/Content/Feature.php:116 -msgid "Tagging" -msgstr "" - -#: src/Content/Feature.php:116 -msgid "Ability to tag existing posts" -msgstr "" - -#: src/Content/Feature.php:117 -msgid "Post Categories" -msgstr "" - -#: src/Content/Feature.php:117 -msgid "Add categories to your posts" -msgstr "" - -#: src/Content/Feature.php:118 src/Content/Widget.php:200 -msgid "Saved Folders" -msgstr "Vistaðar möppur" - -#: src/Content/Feature.php:118 -msgid "Ability to file posts under folders" -msgstr "" - -#: src/Content/Feature.php:119 -msgid "Dislike Posts" -msgstr "" - -#: src/Content/Feature.php:119 -msgid "Ability to dislike posts/comments" -msgstr "" - -#: src/Content/Feature.php:120 -msgid "Star Posts" -msgstr "" - -#: src/Content/Feature.php:120 -msgid "Ability to mark special posts with a star indicator" -msgstr "" - -#: src/Content/Feature.php:121 -msgid "Mute Post Notifications" -msgstr "" - -#: src/Content/Feature.php:121 -msgid "Ability to mute notifications for a thread" -msgstr "" - -#: src/Content/Feature.php:126 -msgid "Advanced Profile Settings" -msgstr "" - -#: src/Content/Feature.php:127 -msgid "Show visitors public community forums at the Advanced Profile Page" -msgstr "" - -#: src/Content/Feature.php:128 -msgid "Tag Cloud" -msgstr "" - -#: src/Content/Feature.php:128 -msgid "Provide a personal tag cloud on your profile page" -msgstr "" - -#: src/Content/Feature.php:129 -msgid "Display Membership Date" -msgstr "" - -#: src/Content/Feature.php:129 -msgid "Display membership date in profile" -msgstr "" - -#: src/Content/Widget.php:33 -msgid "Add New Contact" -msgstr "Bæta við tengilið" - -#: src/Content/Widget.php:34 -msgid "Enter address or web location" -msgstr "Settu inn slóð" - -#: src/Content/Widget.php:35 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Dæmi: gudmundur@simnet.is, http://simnet.is/gudmundur" - -#: src/Content/Widget.php:53 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d boðskort í boði" -msgstr[1] "%d boðskort í boði" - -#: src/Content/Widget.php:59 -msgid "Find People" -msgstr "Finna fólk" - -#: src/Content/Widget.php:60 -msgid "Enter name or interest" -msgstr "Settu inn nafn eða áhugamál" - -#: src/Content/Widget.php:62 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Dæmi: Jón Jónsson, Veiði" - -#: src/Content/Widget.php:65 view/theme/vier/theme.php:202 -msgid "Similar Interests" -msgstr "Svipuð áhugamál" - -#: src/Content/Widget.php:66 -msgid "Random Profile" -msgstr "" - -#: src/Content/Widget.php:67 view/theme/vier/theme.php:204 -msgid "Invite Friends" -msgstr "Bjóða vinum aðgang" - -#: src/Content/Widget.php:68 -msgid "View Global Directory" -msgstr "" - -#: src/Content/Widget.php:159 -msgid "Networks" -msgstr "Net" - -#: src/Content/Widget.php:162 -msgid "All Networks" -msgstr "Öll net" - -#: src/Content/Widget.php:203 src/Content/Widget.php:243 -msgid "Everything" -msgstr "Allt" - -#: src/Content/Widget.php:240 -msgid "Categories" -msgstr "Flokkar" - -#: src/Content/Widget.php:307 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d tengiliður sameiginlegur" -msgstr[1] "%d tengiliðir sameiginlegir" - #: src/Content/ContactSelector.php:55 msgid "Frequently" msgstr "Oft" @@ -8315,7 +8143,7 @@ msgstr "Mánaðarlega" #: src/Content/ContactSelector.php:80 msgid "OStatus" -msgstr "" +msgstr "OStatus" #: src/Content/ContactSelector.php:81 msgid "RSS/Atom" @@ -8509,7 +8337,7 @@ msgstr "Ótrú/r" msgid "Sex Addict" msgstr "Kynlífsfíkill" -#: src/Content/ContactSelector.php:169 src/Model/User.php:505 +#: src/Content/ContactSelector.php:169 src/Model/User.php:519 msgid "Friends" msgstr "Vinir" @@ -8597,6 +8425,379 @@ msgstr "Gæti ekki verið meira sama" msgid "Ask me" msgstr "Spurðu mig" +#: src/Content/Widget.php:33 +msgid "Add New Contact" +msgstr "Bæta við tengilið" + +#: src/Content/Widget.php:34 +msgid "Enter address or web location" +msgstr "Settu inn slóð" + +#: src/Content/Widget.php:35 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Dæmi: gudmundur@simnet.is, http://simnet.is/gudmundur" + +#: src/Content/Widget.php:53 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d boðskort í boði" +msgstr[1] "%d boðskort í boði" + +#: src/Content/Widget.php:164 +msgid "Networks" +msgstr "Net" + +#: src/Content/Widget.php:167 +msgid "All Networks" +msgstr "Öll net" + +#: src/Content/Widget.php:205 src/Content/Feature.php:118 +msgid "Saved Folders" +msgstr "Vistaðar möppur" + +#: src/Content/Widget.php:208 src/Content/Widget.php:248 +msgid "Everything" +msgstr "Allt" + +#: src/Content/Widget.php:245 +msgid "Categories" +msgstr "Flokkar" + +#: src/Content/Widget.php:312 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d tengiliður sameiginlegur" +msgstr[1] "%d tengiliðir sameiginlegir" + +#: src/Content/Feature.php:79 +msgid "General Features" +msgstr "Almennir eiginleikar" + +#: src/Content/Feature.php:81 +msgid "Multiple Profiles" +msgstr "" + +#: src/Content/Feature.php:81 +msgid "Ability to create multiple profiles" +msgstr "" + +#: src/Content/Feature.php:82 +msgid "Photo Location" +msgstr "Staðsetning ljósmyndar" + +#: src/Content/Feature.php:82 +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:83 +msgid "Export Public Calendar" +msgstr "Flytja út opinbert dagatal" + +#: src/Content/Feature.php:83 +msgid "Ability for visitors to download the public calendar" +msgstr "" + +#: src/Content/Feature.php:88 +msgid "Post Composition Features" +msgstr "" + +#: src/Content/Feature.php:89 +msgid "Post Preview" +msgstr "" + +#: src/Content/Feature.php:89 +msgid "Allow previewing posts and comments before publishing them" +msgstr "" + +#: src/Content/Feature.php:90 +msgid "Auto-mention Forums" +msgstr "" + +#: src/Content/Feature.php:90 +msgid "" +"Add/remove mention when a forum page is selected/deselected in ACL window." +msgstr "" + +#: src/Content/Feature.php:95 +msgid "Network Sidebar" +msgstr "" + +#: src/Content/Feature.php:96 +msgid "Ability to select posts by date ranges" +msgstr "" + +#: src/Content/Feature.php:97 src/Content/Feature.php:127 +msgid "List Forums" +msgstr "Spjallsvæðalistar" + +#: src/Content/Feature.php:97 +msgid "Enable widget to display the forums your are connected with" +msgstr "" + +#: src/Content/Feature.php:98 +msgid "Group Filter" +msgstr "" + +#: src/Content/Feature.php:98 +msgid "Enable widget to display Network posts only from selected group" +msgstr "" + +#: src/Content/Feature.php:99 +msgid "Network Filter" +msgstr "" + +#: src/Content/Feature.php:99 +msgid "Enable widget to display Network posts only from selected network" +msgstr "" + +#: src/Content/Feature.php:100 +msgid "Save search terms for re-use" +msgstr "" + +#: src/Content/Feature.php:105 +msgid "Network Tabs" +msgstr "" + +#: src/Content/Feature.php:106 +msgid "Network Personal Tab" +msgstr "" + +#: src/Content/Feature.php:106 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "" + +#: src/Content/Feature.php:107 +msgid "Network New Tab" +msgstr "" + +#: src/Content/Feature.php:107 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "" + +#: src/Content/Feature.php:108 +msgid "Network Shared Links Tab" +msgstr "" + +#: src/Content/Feature.php:108 +msgid "Enable tab to display only Network posts with links in them" +msgstr "" + +#: src/Content/Feature.php:113 +msgid "Post/Comment Tools" +msgstr "" + +#: src/Content/Feature.php:114 +msgid "Multiple Deletion" +msgstr "" + +#: src/Content/Feature.php:114 +msgid "Select and delete multiple posts/comments at once" +msgstr "" + +#: src/Content/Feature.php:115 +msgid "Edit Sent Posts" +msgstr "" + +#: src/Content/Feature.php:115 +msgid "Edit and correct posts and comments after sending" +msgstr "" + +#: src/Content/Feature.php:116 +msgid "Tagging" +msgstr "" + +#: src/Content/Feature.php:116 +msgid "Ability to tag existing posts" +msgstr "" + +#: src/Content/Feature.php:117 +msgid "Post Categories" +msgstr "" + +#: src/Content/Feature.php:117 +msgid "Add categories to your posts" +msgstr "" + +#: src/Content/Feature.php:118 +msgid "Ability to file posts under folders" +msgstr "" + +#: src/Content/Feature.php:119 +msgid "Dislike Posts" +msgstr "" + +#: src/Content/Feature.php:119 +msgid "Ability to dislike posts/comments" +msgstr "" + +#: src/Content/Feature.php:120 +msgid "Star Posts" +msgstr "" + +#: src/Content/Feature.php:120 +msgid "Ability to mark special posts with a star indicator" +msgstr "" + +#: src/Content/Feature.php:121 +msgid "Mute Post Notifications" +msgstr "" + +#: src/Content/Feature.php:121 +msgid "Ability to mute notifications for a thread" +msgstr "" + +#: src/Content/Feature.php:126 +msgid "Advanced Profile Settings" +msgstr "" + +#: src/Content/Feature.php:127 +msgid "Show visitors public community forums at the Advanced Profile Page" +msgstr "" + +#: src/Content/Feature.php:128 +msgid "Tag Cloud" +msgstr "Merkjaský" + +#: src/Content/Feature.php:128 +msgid "Provide a personal tag cloud on your profile page" +msgstr "" + +#: src/Content/Feature.php:129 +msgid "Display Membership Date" +msgstr "" + +#: src/Content/Feature.php:129 +msgid "Display membership date in profile" +msgstr "" + +#: src/Content/Nav.php:53 +msgid "Nothing new here" +msgstr "Ekkert nýtt hér" + +#: src/Content/Nav.php:57 +msgid "Clear notifications" +msgstr "Hreinsa tilkynningar" + +#: src/Content/Nav.php:105 +msgid "Personal notes" +msgstr "Einkaglósur" + +#: src/Content/Nav.php:105 +msgid "Your personal notes" +msgstr "Einkaglósurnar þínar" + +#: src/Content/Nav.php:114 +msgid "Sign in" +msgstr "Innskrá" + +#: src/Content/Nav.php:124 +msgid "Home Page" +msgstr "Heimasíða" + +#: src/Content/Nav.php:128 +msgid "Create an account" +msgstr "Stofna notanda" + +#: src/Content/Nav.php:134 +msgid "Help and documentation" +msgstr "Hjálp og leiðbeiningar" + +#: src/Content/Nav.php:138 +msgid "Apps" +msgstr "Forrit" + +#: src/Content/Nav.php:138 +msgid "Addon applications, utilities, games" +msgstr "Viðbótarforrit, nytjatól, leikir" + +#: src/Content/Nav.php:142 +msgid "Search site content" +msgstr "Leita í efni á vef" + +#: src/Content/Nav.php:166 +msgid "Community" +msgstr "Samfélag" + +#: src/Content/Nav.php:166 +msgid "Conversations on this and other servers" +msgstr "" + +#: src/Content/Nav.php:173 +msgid "Directory" +msgstr "Mappa" + +#: src/Content/Nav.php:173 +msgid "People directory" +msgstr "Nafnaskrá" + +#: src/Content/Nav.php:175 +msgid "Information about this friendica instance" +msgstr "Upplýsingar um þetta tilvik Friendica" + +#: src/Content/Nav.php:178 +msgid "Terms of Service of this Friendica instance" +msgstr "" + +#: src/Content/Nav.php:184 +msgid "Network Reset" +msgstr "Núllstilling netkerfis" + +#: src/Content/Nav.php:184 +msgid "Load Network page with no filters" +msgstr "" + +#: src/Content/Nav.php:190 +msgid "Friend Requests" +msgstr "Vinabeiðnir" + +#: src/Content/Nav.php:192 +msgid "See all notifications" +msgstr "Sjá allar tilkynningar" + +#: src/Content/Nav.php:193 +msgid "Mark all system notifications seen" +msgstr "Merkja allar tilkynningar sem séðar" + +#: src/Content/Nav.php:197 +msgid "Inbox" +msgstr "Innhólf" + +#: src/Content/Nav.php:198 +msgid "Outbox" +msgstr "Úthólf" + +#: src/Content/Nav.php:202 +msgid "Manage" +msgstr "Umsýsla" + +#: src/Content/Nav.php:202 +msgid "Manage other pages" +msgstr "Sýsla með aðrar síður" + +#: src/Content/Nav.php:210 src/Model/Profile.php:368 +msgid "Profiles" +msgstr "Forsíður" + +#: src/Content/Nav.php:210 +msgid "Manage/Edit Profiles" +msgstr "Sýsla með forsíður" + +#: src/Content/Nav.php:218 +msgid "Site setup and configuration" +msgstr "Uppsetning og stillingar vefsvæðis" + +#: src/Content/Nav.php:221 +msgid "Navigation" +msgstr "Yfirsýn" + +#: src/Content/Nav.php:221 +msgid "Site map" +msgstr "Yfirlit um vefsvæði" + #: src/Database/DBStructure.php:32 msgid "There are no tables on MyISAM." msgstr "" @@ -8631,7 +8832,8 @@ msgid "Errors encountered performing database changes: " msgstr "" #: src/Database/DBStructure.php:210 -msgid ": Database update" +#, php-format +msgid "%s: Database update" msgstr "" #: src/Database/DBStructure.php:460 @@ -8643,257 +8845,6 @@ msgstr "" msgid "[no subject]" msgstr "[ekkert efni]" -#: src/Model/Profile.php:97 -msgid "Requested account is not available." -msgstr "Umbeðin forsíða er ekki til." - -#: src/Model/Profile.php:168 src/Model/Profile.php:399 -#: src/Model/Profile.php:859 -msgid "Edit profile" -msgstr "Breyta forsíðu" - -#: src/Model/Profile.php:336 -msgid "Atom feed" -msgstr "Atom fréttaveita" - -#: src/Model/Profile.php:372 -msgid "Manage/edit profiles" -msgstr "Sýsla með forsíður" - -#: src/Model/Profile.php:548 src/Model/Profile.php:641 -msgid "g A l F d" -msgstr "g A l F d" - -#: src/Model/Profile.php:549 -msgid "F d" -msgstr "F d" - -#: src/Model/Profile.php:606 src/Model/Profile.php:703 -msgid "[today]" -msgstr "[í dag]" - -#: src/Model/Profile.php:617 -msgid "Birthday Reminders" -msgstr "Afmælisáminningar" - -#: src/Model/Profile.php:618 -msgid "Birthdays this week:" -msgstr "Afmæli í þessari viku:" - -#: src/Model/Profile.php:690 -msgid "[No description]" -msgstr "[Engin lýsing]" - -#: src/Model/Profile.php:717 -msgid "Event Reminders" -msgstr "Atburðaáminningar" - -#: src/Model/Profile.php:718 -msgid "Events this week:" -msgstr "Atburðir vikunnar:" - -#: src/Model/Profile.php:741 -msgid "Member since:" -msgstr "Meðlimur síðan:" - -#: src/Model/Profile.php:749 -msgid "j F, Y" -msgstr "j F, Y" - -#: src/Model/Profile.php:750 -msgid "j F" -msgstr "j F" - -#: src/Model/Profile.php:765 -msgid "Age:" -msgstr "Aldur:" - -#: src/Model/Profile.php:778 -#, php-format -msgid "for %1$d %2$s" -msgstr "fyrir %1$d %2$s" - -#: src/Model/Profile.php:802 -msgid "Religion:" -msgstr "Trúarskoðanir:" - -#: src/Model/Profile.php:810 -msgid "Hobbies/Interests:" -msgstr "Áhugamál/Áhugasvið:" - -#: src/Model/Profile.php:822 -msgid "Contact information and Social Networks:" -msgstr "Tengiliðaupplýsingar og samfélagsnet:" - -#: src/Model/Profile.php:826 -msgid "Musical interests:" -msgstr "Tónlistaráhugi:" - -#: src/Model/Profile.php:830 -msgid "Books, literature:" -msgstr "Bækur, bókmenntir:" - -#: src/Model/Profile.php:834 -msgid "Television:" -msgstr "Sjónvarp:" - -#: src/Model/Profile.php:838 -msgid "Film/dance/culture/entertainment:" -msgstr "Kvikmyndir/dans/menning/afþreying:" - -#: src/Model/Profile.php:842 -msgid "Love/Romance:" -msgstr "Ást/rómantík:" - -#: src/Model/Profile.php:846 -msgid "Work/employment:" -msgstr "Atvinna:" - -#: src/Model/Profile.php:850 -msgid "School/education:" -msgstr "Skóli/menntun:" - -#: src/Model/Profile.php:855 -msgid "Forums:" -msgstr "Spjallsvæði:" - -#: src/Model/Profile.php:949 -msgid "Only You Can See This" -msgstr "Aðeins þú sérð þetta" - -#: src/Model/Item.php:1676 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "" - -#: src/Model/Item.php:1681 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "" - -#: src/Model/Item.php:1686 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "" - -#: src/Model/Group.php:44 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Hóp sem var eytt hefur verið endurlífgaður. Færslur sem þegar voru til geta mögulega farið á hópinn og framtíðar meðlimir. Ef þetta er ekki það sem þú vilt, þá þarftu að búa til nýjan hóp með öðru nafni." - -#: src/Model/Group.php:328 -msgid "Default privacy group for new contacts" -msgstr "" - -#: src/Model/Group.php:361 -msgid "Everybody" -msgstr "Allir" - -#: src/Model/Group.php:381 -msgid "edit" -msgstr "breyta" - -#: src/Model/Group.php:405 -msgid "Edit group" -msgstr "Breyta hóp" - -#: src/Model/Group.php:406 -msgid "Contacts not in any group" -msgstr "Tengiliðir ekki í neinum hópum" - -#: src/Model/Group.php:407 -msgid "Create a new group" -msgstr "Stofna nýjan hóp" - -#: src/Model/Group.php:409 -msgid "Edit groups" -msgstr "Breyta hópum" - -#: src/Model/Contact.php:645 -msgid "Drop Contact" -msgstr "Henda tengilið" - -#: src/Model/Contact.php:1048 -msgid "Organisation" -msgstr "" - -#: src/Model/Contact.php:1051 -msgid "News" -msgstr "Fréttir" - -#: src/Model/Contact.php:1054 -msgid "Forum" -msgstr "Spjallsvæði" - -#: src/Model/Contact.php:1233 -msgid "Connect URL missing." -msgstr "Tengislóð vantar." - -#: src/Model/Contact.php:1242 -msgid "" -"The contact could not be added. Please check the relevant network " -"credentials in your Settings -> Social Networks page." -msgstr "" - -#: src/Model/Contact.php:1289 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Þessi vefur er ekki uppsettur til að leyfa samskipti við önnur samfélagsnet." - -#: src/Model/Contact.php:1290 src/Model/Contact.php:1304 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Engir samhæfðir samskiptastaðlar né fréttastraumar fundust." - -#: src/Model/Contact.php:1302 -msgid "The profile address specified does not provide adequate information." -msgstr "Uppgefin forsíðuslóð inniheldur ekki nægilegar upplýsingar." - -#: src/Model/Contact.php:1307 -msgid "An author or name was not found." -msgstr "Höfundur eða nafn fannst ekki." - -#: src/Model/Contact.php:1310 -msgid "No browser URL could be matched to this address." -msgstr "Engin vefslóð passaði við þetta vistfang." - -#: src/Model/Contact.php:1313 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "" - -#: src/Model/Contact.php:1314 -msgid "Use mailto: in front of address to force email check." -msgstr "" - -#: src/Model/Contact.php:1320 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "Þessi forsíðu slóð tilheyrir neti sem er bannað á þessum vef." - -#: src/Model/Contact.php:1325 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Takmörkuð forsíða. Þessi tengiliður mun ekki getað tekið á móti beinum/einka tilkynningum frá þér." - -#: src/Model/Contact.php:1376 -msgid "Unable to retrieve contact information." -msgstr "Ekki hægt að sækja tengiliðs upplýsingar." - -#: src/Model/Contact.php:1588 -#, php-format -msgid "%s's birthday" -msgstr "Afmælisdagur %s" - -#: src/Model/Contact.php:1589 src/Protocol/DFRN.php:1478 -#, php-format -msgid "Happy Birthday %s" -msgstr "Til hamingju með afmælið %s" - #: src/Model/Event.php:53 src/Model/Event.php:70 src/Model/Event.php:419 #: src/Model/Event.php:882 msgid "Starts:" @@ -8950,100 +8901,249 @@ msgstr "Birta kort" #: src/Model/Event.php:902 msgid "Hide map" +msgstr "Fela kort" + +#: src/Model/Group.php:44 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Hóp sem var eytt hefur verið endurlífgaður. Færslur sem þegar voru til geta mögulega farið á hópinn og framtíðar meðlimir. Ef þetta er ekki það sem þú vilt, þá þarftu að búa til nýjan hóp með öðru nafni." + +#: src/Model/Group.php:341 +msgid "Default privacy group for new contacts" msgstr "" -#: src/Model/User.php:144 +#: src/Model/Group.php:374 +msgid "Everybody" +msgstr "Allir" + +#: src/Model/Group.php:394 +msgid "edit" +msgstr "breyta" + +#: src/Model/Group.php:418 +msgid "Edit group" +msgstr "Breyta hóp" + +#: src/Model/Group.php:419 +msgid "Contacts not in any group" +msgstr "Tengiliðir ekki í neinum hópum" + +#: src/Model/Group.php:420 +msgid "Create a new group" +msgstr "Stofna nýjan hóp" + +#: src/Model/Group.php:422 +msgid "Edit groups" +msgstr "Breyta hópum" + +#: src/Model/Profile.php:97 +msgid "Requested account is not available." +msgstr "Umbeðin forsíða er ekki til." + +#: src/Model/Profile.php:164 src/Model/Profile.php:395 +#: src/Model/Profile.php:857 +msgid "Edit profile" +msgstr "Breyta forsíðu" + +#: src/Model/Profile.php:332 +msgid "Atom feed" +msgstr "Atom fréttaveita" + +#: src/Model/Profile.php:368 +msgid "Manage/edit profiles" +msgstr "Sýsla með forsíður" + +#: src/Model/Profile.php:546 src/Model/Profile.php:639 +msgid "g A l F d" +msgstr "g A l F d" + +#: src/Model/Profile.php:547 +msgid "F d" +msgstr "F d" + +#: src/Model/Profile.php:604 src/Model/Profile.php:701 +msgid "[today]" +msgstr "[í dag]" + +#: src/Model/Profile.php:615 +msgid "Birthday Reminders" +msgstr "Afmælisáminningar" + +#: src/Model/Profile.php:616 +msgid "Birthdays this week:" +msgstr "Afmæli í þessari viku:" + +#: src/Model/Profile.php:688 +msgid "[No description]" +msgstr "[Engin lýsing]" + +#: src/Model/Profile.php:715 +msgid "Event Reminders" +msgstr "Atburðaáminningar" + +#: src/Model/Profile.php:716 +msgid "Events this week:" +msgstr "Atburðir vikunnar:" + +#: src/Model/Profile.php:739 +msgid "Member since:" +msgstr "Meðlimur síðan:" + +#: src/Model/Profile.php:747 +msgid "j F, Y" +msgstr "j F, Y" + +#: src/Model/Profile.php:748 +msgid "j F" +msgstr "j F" + +#: src/Model/Profile.php:763 +msgid "Age:" +msgstr "Aldur:" + +#: src/Model/Profile.php:776 +#, php-format +msgid "for %1$d %2$s" +msgstr "fyrir %1$d %2$s" + +#: src/Model/Profile.php:800 +msgid "Religion:" +msgstr "Trúarskoðanir:" + +#: src/Model/Profile.php:808 +msgid "Hobbies/Interests:" +msgstr "Áhugamál/Áhugasvið:" + +#: src/Model/Profile.php:820 +msgid "Contact information and Social Networks:" +msgstr "Tengiliðaupplýsingar og samfélagsnet:" + +#: src/Model/Profile.php:824 +msgid "Musical interests:" +msgstr "Tónlistaráhugi:" + +#: src/Model/Profile.php:828 +msgid "Books, literature:" +msgstr "Bækur, bókmenntir:" + +#: src/Model/Profile.php:832 +msgid "Television:" +msgstr "Sjónvarp:" + +#: src/Model/Profile.php:836 +msgid "Film/dance/culture/entertainment:" +msgstr "Kvikmyndir/dans/menning/afþreying:" + +#: src/Model/Profile.php:840 +msgid "Love/Romance:" +msgstr "Ást/rómantík:" + +#: src/Model/Profile.php:844 +msgid "Work/employment:" +msgstr "Atvinna:" + +#: src/Model/Profile.php:848 +msgid "School/education:" +msgstr "Skóli/menntun:" + +#: src/Model/Profile.php:853 +msgid "Forums:" +msgstr "Spjallsvæði:" + +#: src/Model/Profile.php:947 +msgid "Only You Can See This" +msgstr "Aðeins þú sérð þetta" + +#: src/Model/User.php:154 msgid "Login failed" msgstr "Innskráning mistókst" -#: src/Model/User.php:175 +#: src/Model/User.php:185 msgid "Not enough information to authenticate" msgstr "" -#: src/Model/User.php:332 +#: src/Model/User.php:346 msgid "An invitation is required." msgstr "Boðskort er skilyrði." -#: src/Model/User.php:336 +#: src/Model/User.php:350 msgid "Invitation could not be verified." msgstr "Ekki hægt að sannreyna boðskort." -#: src/Model/User.php:343 +#: src/Model/User.php:357 msgid "Invalid OpenID url" msgstr "OpenID slóð ekki til" -#: src/Model/User.php:356 src/Module/Login.php:100 +#: src/Model/User.php:370 src/Module/Login.php:101 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:356 src/Module/Login.php:100 +#: src/Model/User.php:370 src/Module/Login.php:101 msgid "The error message was:" msgstr "Villumeldingin var:" -#: src/Model/User.php:362 +#: src/Model/User.php:376 msgid "Please enter the required information." msgstr "Settu inn umbeðnar upplýsingar." -#: src/Model/User.php:375 +#: src/Model/User.php:389 msgid "Please use a shorter name." msgstr "Notaðu styttra nafn." -#: src/Model/User.php:378 +#: src/Model/User.php:392 msgid "Name too short." msgstr "Nafn of stutt." -#: src/Model/User.php:386 +#: src/Model/User.php:400 msgid "That doesn't appear to be your full (First Last) name." msgstr "Þetta virðist ekki vera fullt nafn (Jón Jónsson)." -#: src/Model/User.php:391 +#: src/Model/User.php:405 msgid "Your email domain is not among those allowed on this site." msgstr "Póstþjónninn er ekki í lista yfir leyfða póstþjóna á þessum vef." -#: src/Model/User.php:395 +#: src/Model/User.php:409 msgid "Not a valid email address." msgstr "Ekki tækt tölvupóstfang." -#: src/Model/User.php:399 src/Model/User.php:407 +#: src/Model/User.php:413 src/Model/User.php:421 msgid "Cannot use that email." msgstr "Ekki hægt að nota þetta póstfang." -#: src/Model/User.php:414 +#: src/Model/User.php:428 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "" -#: src/Model/User.php:421 src/Model/User.php:477 +#: src/Model/User.php:435 src/Model/User.php:491 msgid "Nickname is already registered. Please choose another." msgstr "Gælunafn þegar skráð. Veldu annað." -#: src/Model/User.php:431 +#: src/Model/User.php:445 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "VERULEGA ALVARLEG VILLA: Stofnun á öryggislyklum tókst ekki." -#: src/Model/User.php:464 src/Model/User.php:468 +#: src/Model/User.php:478 src/Model/User.php:482 msgid "An error occurred during registration. Please try again." msgstr "Villa kom upp við nýskráningu. Reyndu aftur." -#: src/Model/User.php:488 view/theme/duepuntozero/config.php:54 -msgid "default" -msgstr "sjálfgefið" - -#: src/Model/User.php:493 +#: src/Model/User.php:507 msgid "An error occurred creating your default profile. Please try again." msgstr "Villa kom upp við að stofna sjálfgefna forsíðu. Vinnsamlegast reyndu aftur." -#: src/Model/User.php:500 +#: src/Model/User.php:514 msgid "An error occurred creating your self contact. Please try again." msgstr "" -#: src/Model/User.php:509 +#: src/Model/User.php:523 msgid "" "An error occurred creating your default contact group. Please try again." msgstr "" -#: src/Model/User.php:583 +#: src/Model/User.php:597 #, php-format msgid "" "\n" @@ -9052,12 +9152,12 @@ msgid "" "\t\t" msgstr "" -#: src/Model/User.php:593 +#: src/Model/User.php:607 #, php-format msgid "Registration at %s" msgstr "" -#: src/Model/User.php:611 +#: src/Model/User.php:625 #, php-format msgid "" "\n" @@ -9066,7 +9166,7 @@ msgid "" "\t\t" msgstr "" -#: src/Model/User.php:615 +#: src/Model/User.php:629 #, php-format msgid "" "\n" @@ -9098,6 +9198,104 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "" +#: src/Model/Contact.php:667 +msgid "Drop Contact" +msgstr "Henda tengilið" + +#: src/Model/Contact.php:1101 +msgid "Organisation" +msgstr "" + +#: src/Model/Contact.php:1104 +msgid "News" +msgstr "Fréttir" + +#: src/Model/Contact.php:1107 +msgid "Forum" +msgstr "Spjallsvæði" + +#: src/Model/Contact.php:1286 +msgid "Connect URL missing." +msgstr "Tengislóð vantar." + +#: src/Model/Contact.php:1295 +msgid "" +"The contact could not be added. Please check the relevant network " +"credentials in your Settings -> Social Networks page." +msgstr "" + +#: src/Model/Contact.php:1342 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Þessi vefur er ekki uppsettur til að leyfa samskipti við önnur samfélagsnet." + +#: src/Model/Contact.php:1343 src/Model/Contact.php:1357 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Engir samhæfðir samskiptastaðlar né fréttastraumar fundust." + +#: src/Model/Contact.php:1355 +msgid "The profile address specified does not provide adequate information." +msgstr "Uppgefin forsíðuslóð inniheldur ekki nægilegar upplýsingar." + +#: src/Model/Contact.php:1360 +msgid "An author or name was not found." +msgstr "Höfundur eða nafn fannst ekki." + +#: src/Model/Contact.php:1363 +msgid "No browser URL could be matched to this address." +msgstr "Engin vefslóð passaði við þetta vistfang." + +#: src/Model/Contact.php:1366 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "" + +#: src/Model/Contact.php:1367 +msgid "Use mailto: in front of address to force email check." +msgstr "" + +#: src/Model/Contact.php:1373 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "Þessi forsíðu slóð tilheyrir neti sem er bannað á þessum vef." + +#: src/Model/Contact.php:1378 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Takmörkuð forsíða. Þessi tengiliður mun ekki getað tekið á móti beinum/einka tilkynningum frá þér." + +#: src/Model/Contact.php:1429 +msgid "Unable to retrieve contact information." +msgstr "Ekki hægt að sækja tengiliðs upplýsingar." + +#: src/Model/Contact.php:1646 src/Protocol/DFRN.php:1513 +#, php-format +msgid "%s's birthday" +msgstr "Afmælisdagur %s" + +#: src/Model/Contact.php:1647 src/Protocol/DFRN.php:1514 +#, php-format +msgid "Happy Birthday %s" +msgstr "Til hamingju með afmælið %s" + +#: src/Model/Item.php:1851 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "" + +#: src/Model/Item.php:1856 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "" + +#: src/Model/Item.php:1861 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "" + #: src/Protocol/OStatus.php:1799 #, php-format msgid "%s is now following %s." @@ -9116,383 +9314,242 @@ msgstr "" msgid "stopped following" msgstr "hætt að fylgja" -#: src/Protocol/DFRN.php:1477 -#, php-format -msgid "%s\\'s birthday" -msgstr "Afmælisdagur %s" - -#: src/Protocol/Diaspora.php:2651 +#: src/Protocol/Diaspora.php:2521 msgid "Sharing notification from Diaspora network" msgstr "Tilkynning um að einhver deildi atriði á Diaspora netinu" -#: src/Protocol/Diaspora.php:3738 +#: src/Protocol/Diaspora.php:3609 msgid "Attachments:" msgstr "Viðhengi:" -#: src/Worker/Delivery.php:392 +#: src/Worker/Delivery.php:415 msgid "(no subject)" msgstr "(ekkert efni)" -#: src/Object/Post.php:128 -msgid "This entry was edited" +#: src/Module/Logout.php:28 +msgid "Logged out." +msgstr "Skráður út." + +#: src/Module/Login.php:283 +msgid "Create a New Account" +msgstr "Stofna nýjan notanda" + +#: src/Module/Login.php:316 +msgid "Password: " +msgstr "Aðgangsorð: " + +#: src/Module/Login.php:317 +msgid "Remember me" +msgstr "Muna eftir mér" + +#: src/Module/Login.php:320 +msgid "Or login using OpenID: " +msgstr "Eða auðkenna með OpenID: " + +#: src/Module/Login.php:326 +msgid "Forgot your password?" +msgstr "Gleymt lykilorð?" + +#: src/Module/Login.php:329 +msgid "Website Terms of Service" +msgstr "Þjónustuskilmálar vefsvæðis" + +#: src/Module/Login.php:330 +msgid "terms of service" +msgstr "þjónustuskilmálar" + +#: src/Module/Login.php:332 +msgid "Website Privacy Policy" +msgstr "Persónuverndarstefna" + +#: src/Module/Login.php:333 +msgid "privacy policy" +msgstr "persónuverndarstefna" + +#: src/Module/Tos.php:34 src/Module/Tos.php:74 +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/Object/Post.php:182 +#: src/Module/Tos.php:35 src/Module/Tos.php:75 +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:36 src/Module/Tos.php:76 +#, php-format +msgid "" +"At any point in time a logged in user can export their account data from the" +" account settings. If the user wants " +"to delete their account they can do so at %1$s/removeme. 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:39 src/Module/Tos.php:73 +msgid "Privacy Statement" +msgstr "Yfirlýsing um gagnaleynd" + +#: src/Object/Post.php:128 +msgid "This entry was edited" +msgstr "Þessari færslu var breytt" + +#: src/Object/Post.php:187 +msgid "Remove from your stream" +msgstr "" + +#: src/Object/Post.php:200 msgid "save to folder" msgstr "vista í möppu" -#: src/Object/Post.php:235 +#: src/Object/Post.php:243 msgid "I will attend" -msgstr "" +msgstr "Ég mæti" -#: src/Object/Post.php:235 +#: src/Object/Post.php:243 msgid "I will not attend" -msgstr "" +msgstr "Ég mæti ekki" -#: src/Object/Post.php:235 +#: src/Object/Post.php:243 msgid "I might attend" -msgstr "" +msgstr "Ég gæti mætt" -#: src/Object/Post.php:263 +#: src/Object/Post.php:271 msgid "add star" msgstr "bæta við stjörnu" -#: src/Object/Post.php:264 +#: src/Object/Post.php:272 msgid "remove star" msgstr "eyða stjörnu" -#: src/Object/Post.php:265 +#: src/Object/Post.php:273 msgid "toggle star status" msgstr "Kveikja/slökkva á stjörnu" -#: src/Object/Post.php:268 +#: src/Object/Post.php:276 msgid "starred" msgstr "stjörnumerkt" -#: src/Object/Post.php:274 +#: src/Object/Post.php:282 msgid "ignore thread" -msgstr "" +msgstr "Hunsa þráð" -#: src/Object/Post.php:275 +#: src/Object/Post.php:283 msgid "unignore thread" msgstr "" -#: src/Object/Post.php:276 +#: src/Object/Post.php:284 msgid "toggle ignore status" msgstr "" -#: src/Object/Post.php:285 +#: src/Object/Post.php:293 msgid "add tag" msgstr "bæta við merki" -#: src/Object/Post.php:296 +#: src/Object/Post.php:304 msgid "like" msgstr "líkar" -#: src/Object/Post.php:297 +#: src/Object/Post.php:305 msgid "dislike" msgstr "mislíkar" -#: src/Object/Post.php:300 +#: src/Object/Post.php:308 msgid "Share this" msgstr "Deila þessu" -#: src/Object/Post.php:300 +#: src/Object/Post.php:308 msgid "share" msgstr "deila" -#: src/Object/Post.php:365 +#: src/Object/Post.php:373 msgid "to" msgstr "við" -#: src/Object/Post.php:366 +#: src/Object/Post.php:374 msgid "via" msgstr "gegnum" -#: src/Object/Post.php:367 +#: src/Object/Post.php:375 msgid "Wall-to-Wall" msgstr "vegg við vegg" -#: src/Object/Post.php:368 +#: src/Object/Post.php:376 msgid "via Wall-To-Wall:" msgstr "gegnum vegg við vegg" -#: src/Object/Post.php:427 +#: src/Object/Post.php:435 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d ummæli" msgstr[1] "%d ummæli" -#: src/Object/Post.php:797 +#: src/Object/Post.php:805 msgid "Bold" msgstr "Feitletrað" -#: src/Object/Post.php:798 +#: src/Object/Post.php:806 msgid "Italic" msgstr "Skáletrað" -#: src/Object/Post.php:799 +#: src/Object/Post.php:807 msgid "Underline" msgstr "Undirstrikað" -#: src/Object/Post.php:800 +#: src/Object/Post.php:808 msgid "Quote" msgstr "Gæsalappir" -#: src/Object/Post.php:801 +#: src/Object/Post.php:809 msgid "Code" msgstr "Kóði" -#: src/Object/Post.php:802 +#: src/Object/Post.php:810 msgid "Image" msgstr "Mynd" -#: src/Object/Post.php:803 +#: src/Object/Post.php:811 msgid "Link" msgstr "Tengill" -#: src/Object/Post.php:804 +#: src/Object/Post.php:812 msgid "Video" msgstr "Myndband" -#: src/Module/Login.php:282 -msgid "Create a New Account" -msgstr "Stofna nýjan notanda" - -#: src/Module/Login.php:315 -msgid "Password: " -msgstr "Aðgangsorð: " - -#: src/Module/Login.php:316 -msgid "Remember me" -msgstr "Muna eftir mér" - -#: src/Module/Login.php:319 -msgid "Or login using OpenID: " -msgstr "Eða auðkenna með OpenID: " - -#: src/Module/Login.php:325 -msgid "Forgot your password?" -msgstr "Gleymt lykilorð?" - -#: src/Module/Login.php:328 -msgid "Website Terms of Service" -msgstr "Þjónustuskilmálar vefsvæðis" - -#: src/Module/Login.php:329 -msgid "terms of service" -msgstr "þjónustuskilmálar" - -#: src/Module/Login.php:331 -msgid "Website Privacy Policy" -msgstr "Persónuverndarstefna" - -#: src/Module/Login.php:332 -msgid "privacy policy" -msgstr "persónuverndarstefna" - -#: src/Module/Logout.php:28 -msgid "Logged out." -msgstr "Skráður út." - -#: src/App.php:511 +#: src/App.php:524 msgid "Delete this item?" msgstr "Eyða þessu atriði?" -#: src/App.php:513 +#: src/App.php:526 msgid "show fewer" msgstr "birta minna" -#: view/theme/duepuntozero/config.php:55 -msgid "greenzero" +#: src/App.php:1114 +msgid "No system theme config value set." msgstr "" -#: view/theme/duepuntozero/config.php:56 -msgid "purplezero" -msgstr "" - -#: view/theme/duepuntozero/config.php:57 -msgid "easterbunny" -msgstr "" - -#: view/theme/duepuntozero/config.php:58 -msgid "darkzero" -msgstr "" - -#: view/theme/duepuntozero/config.php:59 -msgid "comix" -msgstr "" - -#: view/theme/duepuntozero/config.php:60 -msgid "slackr" -msgstr "" - -#: view/theme/duepuntozero/config.php:74 -msgid "Variations" -msgstr "Tilbrigði" - -#: view/theme/frio/php/Image.php:25 -msgid "Repeat the image" -msgstr "Endurtaka myndina" - -#: view/theme/frio/php/Image.php:25 -msgid "Will repeat your image to fill the background." -msgstr "" - -#: view/theme/frio/php/Image.php:27 -msgid "Stretch" -msgstr "Teygja" - -#: view/theme/frio/php/Image.php:27 -msgid "Will stretch to width/height of the image." -msgstr "" - -#: view/theme/frio/php/Image.php:29 -msgid "Resize fill and-clip" -msgstr "" - -#: view/theme/frio/php/Image.php:29 -msgid "Resize to fill and retain aspect ratio." -msgstr "" - -#: view/theme/frio/php/Image.php:31 -msgid "Resize best fit" -msgstr "Stærðarbreyta svo að passi" - -#: view/theme/frio/php/Image.php:31 -msgid "Resize to best fit and retain aspect ratio." -msgstr "Stærðarbreyta svo að passi og halda upphaflegum hlutföllum." - -#: view/theme/frio/config.php:97 -msgid "Default" -msgstr "Sjálfgefið" - -#: view/theme/frio/config.php:109 -msgid "Note" -msgstr "Minnispunktur" - -#: view/theme/frio/config.php:109 -msgid "Check image permissions if all users are allowed to visit the image" -msgstr "" - -#: view/theme/frio/config.php:116 -msgid "Select scheme" -msgstr "Veldu litastef" - -#: view/theme/frio/config.php:117 -msgid "Navigation bar background color" -msgstr "" - -#: view/theme/frio/config.php:118 -msgid "Navigation bar icon color " -msgstr "" - -#: view/theme/frio/config.php:119 -msgid "Link color" -msgstr "Litur tengils" - -#: view/theme/frio/config.php:120 -msgid "Set the background color" -msgstr "Stilltu bakgrunnslit" - -#: view/theme/frio/config.php:121 -msgid "Content background opacity" -msgstr "" - -#: view/theme/frio/config.php:122 -msgid "Set the background image" -msgstr "" - -#: view/theme/frio/config.php:127 -msgid "Login page background image" -msgstr "" - -#: view/theme/frio/config.php:130 -msgid "Login page background color" -msgstr "" - -#: view/theme/frio/config.php:130 -msgid "Leave background image and color empty for theme defaults" -msgstr "" - -#: view/theme/frio/theme.php:238 -msgid "Guest" -msgstr "Gestur" - -#: view/theme/frio/theme.php:243 -msgid "Visitor" -msgstr "Í heimsókn" - -#: view/theme/quattro/config.php:76 -msgid "Alignment" -msgstr "Hliðjöfnun" - -#: view/theme/quattro/config.php:76 -msgid "Left" -msgstr "Vinstri" - -#: view/theme/quattro/config.php:76 -msgid "Center" -msgstr "Miðjað" - -#: view/theme/quattro/config.php:77 -msgid "Color scheme" -msgstr "Litastef" - -#: view/theme/quattro/config.php:78 -msgid "Posts font size" -msgstr "" - -#: view/theme/quattro/config.php:79 -msgid "Textareas font size" -msgstr "" - -#: view/theme/vier/config.php:75 -msgid "Comma separated list of helper forums" -msgstr "" - -#: view/theme/vier/config.php:122 -msgid "Set style" -msgstr "" - -#: view/theme/vier/config.php:123 -msgid "Community Pages" -msgstr "" - -#: view/theme/vier/config.php:124 view/theme/vier/theme.php:150 -msgid "Community Profiles" -msgstr "" - -#: view/theme/vier/config.php:125 -msgid "Help or @NewHere ?" -msgstr "" - -#: view/theme/vier/config.php:126 view/theme/vier/theme.php:389 -msgid "Connect Services" -msgstr "" - -#: view/theme/vier/config.php:127 view/theme/vier/theme.php:199 -msgid "Find Friends" -msgstr "Finna vini" - -#: view/theme/vier/config.php:128 view/theme/vier/theme.php:181 -msgid "Last users" -msgstr "Nýjustu notendurnir" - -#: view/theme/vier/theme.php:200 -msgid "Local Directory" -msgstr "Staðvær mappa" - -#: view/theme/vier/theme.php:292 -msgid "Quick Start" -msgstr "" - -#: index.php:444 +#: index.php:464 msgid "toggle mobile" msgstr "" -#: boot.php:791 +#: update.php:193 +#, php-format +msgid "%s: Updating author-id and owner-id in item and thread table. " +msgstr "" + +#: boot.php:796 #, php-format msgid "Update %s failed. See error logs." msgstr "Uppfærsla á %s mistókst. Skoðaðu villuannál." diff --git a/view/lang/is/strings.php b/view/lang/is/strings.php index d67b45816..44adc7c1f 100644 --- a/view/lang/is/strings.php +++ b/view/lang/is/strings.php @@ -6,6 +6,65 @@ function string_plural_select_is($n){ return ($n % 10 != 1 || $n % 100 == 11);; }} ; +$a->strings["Friendica Notification"] = "Friendica tilkynning"; +$a->strings["Thank You,"] = "Takk fyrir,"; +$a->strings["%s Administrator"] = "Kerfisstjóri %s"; +$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, kerfisstjóri %2\$s"; +$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notify] Nýr póstur móttekinn %s"; +$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s sendi þér ný einkaskilaboð %2\$s."; +$a->strings["a private message"] = "einkaskilaboð"; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s sendi þér %2\$s."; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Farðu á %s til að skoða og/eða svara einkaskilaboðunum þínum."; +$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s setti inn athugasemd um [url=%2\$s]a %3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s setti inn athugasemd um [url=%2\$s]frá %3\$s %4\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s setti inn athugasemd um [url=%2\$s]frá þér %3\$s[/url]"; +$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notify] Athugasemd við samtal #%1\$d eftir %2\$s"; +$a->strings["%s commented on an item/conversation you have been following."] = "%s skrifaði athugasemd á færslu/samtal sem þú ert að fylgja."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Farðu á %s til að skoða og/eða svara samtali."; +$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s skrifaði á vegginn þinn"; +$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s skrifaði á vegginn þinn %2\$s"; +$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s skrifaði á [url=%2\$s]vegginn þinn[/url]"; +$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s merkti þig"; +$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s merkti þig %2\$s"; +$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]merkti þig[/url]."; +$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s deildi nýrri færslu"; +$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s deildi nýrri færslu %2\$s"; +$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]deildi færslu[/url]."; +$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s potaði í þig"; +$a->strings["%1\$s poked you at %2\$s"] = "%1\$s potaði í þig %2\$s"; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]potaði í þig[/url]."; +$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notify] %s merkti færslu frá þér"; +$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s merkti færslu frá þér %2\$s"; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s merkti [url=%2\$s]færslu frá þér[/url]"; +$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notify] Tók á móti kynningu"; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Þú tókst við kynningu frá '%1\$s', %2\$s"; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Þú tókst við [url=%1\$s]kynningu[/url] frá %2\$s."; +$a->strings["You may visit their profile at %s"] = "Þú getur heimsótt síðuna þeirra á %s"; +$a->strings["Please visit %s to approve or reject the introduction."] = "Farðu á %s til að samþykkja eða hunsa þessa kynningu."; +$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Notify] Nýr aðili er að deila með þér"; +$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s er að deila með þér, %2\$s"; +$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Notify] Þú ert með nýjan fylgjanda"; +$a->strings["You have a new follower at %2\$s : %1\$s"] = "Þú hefur nýjan fylgjanda á %2\$s : %1\$s"; +$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notify] Tók á móti uppástungu um vin"; +$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Þér hefur borist uppástunga um vin frá '%1\$s' kl. %2\$s"; +$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Þér hefur borist [url=%1\$s]uppástunga um vin[/url] fyrir %2\$s frá %3\$s."; +$a->strings["Name:"] = "Nafn:"; +$a->strings["Photo:"] = "Mynd:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Farðu á %s til að samþykkja eða hunsa þessa uppástungu."; +$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Notify] Tenging samþykkt"; +$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' samþykkti tengibeiðni þína %2\$s"; +$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s samþykkti [url=%1\$s]tengibeiðni þína[/url]."; +$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "Þið eruð núna gagnkvæmir vinir og getið skipst á stöðuuppfærslum, myndum og tölvupósti án hindrana."; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = ""; +$a->strings["'%1\$s' has chosen to accept you a fan, which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = ""; +$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = ""; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = ""; +$a->strings["[Friendica System Notify]"] = ""; +$a->strings["registration request"] = "beiðni um skráningu"; +$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = ""; +$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = ""; +$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = ""; +$a->strings["Please visit %s to approve or reject the request."] = "Farðu á %s til að samþykkja eða hunsa þessa beiðni."; $a->strings["Welcome "] = "Velkomin(n)"; $a->strings["Please upload a profile photo."] = "Gerðu svo vel að hlaða inn forsíðumynd."; $a->strings["Welcome back "] = "Velkomin(n) aftur"; @@ -21,85 +80,19 @@ $a->strings["Weekly posting limit of %d post reached. The post was rejected."] = ]; $a->strings["Monthly posting limit of %d post reached. The post was rejected."] = ""; $a->strings["Profile Photos"] = "Forsíðumyndir"; -$a->strings["Friendica Notification"] = "Friendica tilkynning"; -$a->strings["Thank You,"] = "Takk fyrir,"; -$a->strings["%s Administrator"] = "Kerfisstjóri %s"; -$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s kerfisstjóri"; -$a->strings["noreply"] = "ekki svara"; -$a->strings["[Friendica:Notify] New mail received at %s"] = ""; -$a->strings["%1\$s sent you a new private message at %2\$s."] = ""; -$a->strings["a private message"] = "einkaskilaboð"; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s sendi þér %2\$s."; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Farðu á %s til að skoða og/eða svara einkaskilaboðunum þínum."; -$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = ""; -$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = ""; -$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = ""; -$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = ""; -$a->strings["%s commented on an item/conversation you have been following."] = "%s skrifaði athugasemd á færslu/samtal sem þú ert að fylgja."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Farðu á %s til að skoða og/eða svara samtali."; -$a->strings["[Friendica:Notify] %s posted to your profile wall"] = ""; -$a->strings["%1\$s posted to your profile wall at %2\$s"] = ""; -$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = ""; -$a->strings["[Friendica:Notify] %s tagged you"] = ""; -$a->strings["%1\$s tagged you at %2\$s"] = ""; -$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = ""; -$a->strings["[Friendica:Notify] %s shared a new post"] = ""; -$a->strings["%1\$s shared a new post at %2\$s"] = ""; -$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = ""; -$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s potaði í þig"; -$a->strings["%1\$s poked you at %2\$s"] = "%1\$s potaði í þig %2\$s"; -$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = ""; -$a->strings["[Friendica:Notify] %s tagged your post"] = ""; -$a->strings["%1\$s tagged your post at %2\$s"] = ""; -$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = ""; -$a->strings["[Friendica:Notify] Introduction received"] = ""; -$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = ""; -$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = ""; -$a->strings["You may visit their profile at %s"] = "Þú getur heimsótt síðuna þeirra á %s"; -$a->strings["Please visit %s to approve or reject the introduction."] = "Farðu á %s til að samþykkja eða hunsa þessa kynningu."; -$a->strings["[Friendica:Notify] A new person is sharing with you"] = ""; -$a->strings["%1\$s is sharing with you at %2\$s"] = ""; -$a->strings["[Friendica:Notify] You have a new follower"] = ""; -$a->strings["You have a new follower at %2\$s : %1\$s"] = ""; -$a->strings["[Friendica:Notify] Friend suggestion received"] = ""; -$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = ""; -$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = ""; -$a->strings["Name:"] = "Nafn:"; -$a->strings["Photo:"] = "Mynd:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Farðu á %s til að samþykkja eða hunsa þessa uppástungu."; -$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Notify] Tenging samþykkt"; -$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = ""; -$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = ""; -$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = ""; -$a->strings["Please visit %s if you wish to make any changes to this relationship."] = ""; -$a->strings["'%1\$s' has chosen to accept you a fan, which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = ""; -$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = ""; -$a->strings["Please visit %s if you wish to make any changes to this relationship."] = ""; -$a->strings["[Friendica System:Notify] registration request"] = "[Friendica System:Notify] beiðni um skráningu"; -$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = ""; -$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = ""; -$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = ""; -$a->strings["Please visit %s to approve or reject the request."] = "Farðu á %s til að samþykkja eða hunsa þessa beiðni."; -$a->strings["Item not found."] = "Atriði fannst ekki."; -$a->strings["Do you really want to delete this item?"] = "Viltu í alvörunni eyða þessu atriði?"; -$a->strings["Yes"] = "Já"; -$a->strings["Cancel"] = "Hætta við"; -$a->strings["Permission denied."] = "Heimild ekki veitt."; -$a->strings["Archives"] = "Safnskrár"; -$a->strings["show more"] = "birta meira"; $a->strings["event"] = "atburður"; $a->strings["status"] = "staða"; $a->strings["photo"] = "mynd"; $a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s líkar við %3\$s hjá %2\$s "; $a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s líkar ekki við %3\$s hjá %2\$s "; -$a->strings["%1\$s attends %2\$s's %3\$s"] = ""; -$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = ""; -$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = ""; +$a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s mætir á %3\$s hjá %2\$s"; +$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s mætir ekki á %3\$s hjá %2\$s"; +$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s mætir kannski á %3\$s hjá %2\$s"; $a->strings["%1\$s is now friends with %2\$s"] = "Núna er %1\$s vinur %2\$s"; $a->strings["%1\$s poked %2\$s"] = "%1\$s potaði í %2\$s"; $a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s merkti %2\$s's %3\$s með %4\$s"; -$a->strings["post/item"] = ""; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = ""; +$a->strings["post/item"] = "færslur/atriði"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s merkti %3\$s hjá %2\$s sem eftirlæti"; $a->strings["Likes"] = "Líkar"; $a->strings["Dislikes"] = "Mislíkar"; $a->strings["Attending"] = [ @@ -122,7 +115,7 @@ $a->strings["Follow Thread"] = "Fylgja þræði"; $a->strings["View Status"] = "Skoða stöðu"; $a->strings["View Profile"] = "Skoða forsíðu"; $a->strings["View Photos"] = "Skoða myndir"; -$a->strings["Network Posts"] = ""; +$a->strings["Network Posts"] = "Færslur á neti"; $a->strings["View Contact"] = "Skoða tengilið"; $a->strings["Send PM"] = "Senda einkaboð"; $a->strings["Poke"] = "Pota"; @@ -133,17 +126,17 @@ $a->strings["%s attends."] = "%s mætir."; $a->strings["%s doesn't attend."] = "%s mætir ekki."; $a->strings["%s attends maybe."] = "%s mætir kannski."; $a->strings["and"] = "og"; -$a->strings["and %d other people"] = ""; -$a->strings["%2\$d people like this"] = ""; -$a->strings["%s like this."] = ""; -$a->strings["%2\$d people don't like this"] = ""; -$a->strings["%s don't like this."] = ""; -$a->strings["%2\$d people attend"] = ""; -$a->strings["%s attend."] = ""; -$a->strings["%2\$d people don't attend"] = ""; -$a->strings["%s don't attend."] = ""; -$a->strings["%2\$d people attend maybe"] = ""; -$a->strings["%s attend maybe."] = ""; +$a->strings["and %d other people"] = "og %d öðrum"; +$a->strings["%2\$d people like this"] = "%2\$d fólki líkar þetta"; +$a->strings["%s like this."] = "%s líkar þetta."; +$a->strings["%2\$d people don't like this"] = "%2\$d fólki líkar þetta ekki"; +$a->strings["%s don't like this."] = "%s líkar þetta ekki."; +$a->strings["%2\$d people attend"] = "%2\$d fólki mæta"; +$a->strings["%s attend."] = "%s mætir."; +$a->strings["%2\$d people don't attend"] = "%2\$d fólki mæta ekki"; +$a->strings["%s don't attend."] = "%s mætir ekki."; +$a->strings["%2\$d people attend maybe"] = "%2\$d fólki mæta kannski"; +$a->strings["%s attend maybe."] = "%s mætir kannski."; $a->strings["Visible to everybody"] = "Sjáanlegt öllum"; $a->strings["Please enter a link URL:"] = "Sláðu inn slóð:"; $a->strings["Please enter a video link/URL:"] = "Settu inn slóð á myndskeið:"; @@ -174,6 +167,7 @@ $a->strings["Permission settings"] = "Stillingar aðgangsheimilda"; $a->strings["permissions"] = "aðgangsstýring"; $a->strings["Public post"] = "Opinber færsla"; $a->strings["Preview"] = "Forskoðun"; +$a->strings["Cancel"] = "Hætta við"; $a->strings["Post to Groups"] = "Senda á hópa"; $a->strings["Post to Contacts"] = "Senda á tengiliði"; $a->strings["Private post"] = "Einkafærsla"; @@ -196,6 +190,12 @@ $a->strings["Undecided"] = [ 0 => "Óviss", 1 => "Óvissir", ]; +$a->strings["Item not found."] = "Atriði fannst ekki."; +$a->strings["Do you really want to delete this item?"] = "Viltu í alvörunni eyða þessu atriði?"; +$a->strings["Yes"] = "Já"; +$a->strings["Permission denied."] = "Heimild ekki veitt."; +$a->strings["Archives"] = "Safnskrár"; +$a->strings["show more"] = "birta meira"; $a->strings["newer"] = "nýrri"; $a->strings["older"] = "eldri"; $a->strings["first"] = "fremsta"; @@ -220,12 +220,12 @@ $a->strings["Contacts"] = "Tengiliðir"; $a->strings["Forums"] = "Spjallsvæði"; $a->strings["poke"] = "pota"; $a->strings["poked"] = "potaði"; -$a->strings["ping"] = "ping"; -$a->strings["pinged"] = ""; -$a->strings["prod"] = ""; -$a->strings["prodded"] = ""; -$a->strings["slap"] = ""; -$a->strings["slapped"] = ""; +$a->strings["ping"] = "bjalla"; +$a->strings["pinged"] = "bjallað"; +$a->strings["prod"] = "ýta"; +$a->strings["prodded"] = "ýtti"; +$a->strings["slap"] = "slá"; +$a->strings["slapped"] = "slegið"; $a->strings["finger"] = "fingur"; $a->strings["fingered"] = ""; $a->strings["rebuff"] = ""; @@ -296,40 +296,14 @@ $a->strings["No contacts in common."] = "Engir sameiginlegir tengiliðir."; $a->strings["Common Friends"] = "Sameiginlegir vinir"; $a->strings["Credits"] = "Þakkir"; $a->strings["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!"] = ""; -$a->strings["Contact settings applied."] = "Stillingar tengiliðs uppfærðar."; -$a->strings["Contact update failed."] = "Uppfærsla tengiliðs mistókst."; -$a->strings["Contact not found."] = "Tengiliður fannst ekki."; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "AÐVÖRUN: Þetta er mjög flókið og ef þú setur inn vitlausar upplýsingar þá munu samskipti við þennan tengilið hætta að virka."; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Notaðu \"Til baka\" hnappinn núna ef þú ert ekki viss um hvað þú eigir að gera á þessari síðu."; -$a->strings["No mirroring"] = ""; -$a->strings["Mirror as forwarded posting"] = ""; -$a->strings["Mirror as my own posting"] = ""; -$a->strings["Return to contact editor"] = "Fara til baka í tengiliðasýsl"; -$a->strings["Refetch contact data"] = ""; -$a->strings["Submit"] = "Senda inn"; -$a->strings["Remote Self"] = ""; -$a->strings["Mirror postings from this contact"] = ""; -$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = ""; -$a->strings["Name"] = "Nafn"; -$a->strings["Account Nickname"] = "Gælunafn notanda"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@Merkjanafn - yfirskrifar Nafn/Gælunafn"; -$a->strings["Account URL"] = "Heimasíða notanda"; -$a->strings["Friend Request URL"] = "Slóð vinabeiðnar"; -$a->strings["Friend Confirm URL"] = "Slóð vina staðfestingar "; -$a->strings["Notification Endpoint URL"] = "Slóð loka tilkynningar"; -$a->strings["Poll/Feed URL"] = "Slóð á könnun/fréttastraum"; -$a->strings["New photo from this URL"] = "Ný mynd frá slóð"; $a->strings["Photos"] = "Myndir"; $a->strings["Contact Photos"] = "Myndir tengiliðs"; $a->strings["Upload"] = "Senda inn"; $a->strings["Files"] = "Skrár"; $a->strings["Not Found"] = "Fannst ekki"; $a->strings["No profile"] = "Engin forsíða"; -$a->strings["Help:"] = "Hjálp:"; -$a->strings["Help"] = "Hjálp"; -$a->strings["Page not found."] = "Síða fannst ekki."; $a->strings["Welcome to %s"] = "Velkomin í %s"; -$a->strings["Remote privacy information not available."] = "Persónuverndar upplýsingar ekki fyrir hendi á fjarlægum vefþjón."; +$a->strings["Remote privacy information not available."] = "Persónuverndarupplýsingar ekki fyrir hendi á fjartengdum vefþjóni."; $a->strings["Visible to:"] = "Sýnilegt eftirfarandi:"; $a->strings["System down for maintenance"] = "Kerfið er óvirkt vegna viðhalds"; $a->strings["Welcome to Friendica"] = "Velkomin(n) á Friendica"; @@ -345,185 +319,62 @@ $a->strings["Review the other settings, particularly the privacy settings. An un $a->strings["Profile"] = "Forsíða"; $a->strings["Upload Profile Photo"] = "Hlaða upp forsíðu mynd"; $a->strings["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."] = "Að hlaða upp forsíðu mynd ef þú hefur ekki þegar gert það. Rannsóknir sýna að fólk sem hefur alvöru mynd af sér er tíu sinnum líklegra til að eignast vini en fólk sem ekki hefur mynd."; -$a->strings["Edit Your Profile"] = ""; +$a->strings["Edit Your Profile"] = "Breyta forsíðunni þinni"; $a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Breyttu sjálfgefnu forsíðunni einsog þú villt. Yfirfarðu stillingu til að fela vinalista á forsíðu og stillingu til að fela forsíðu fyrir ókunnum."; -$a->strings["Profile Keywords"] = ""; +$a->strings["Profile Keywords"] = "Stikkorð notandans"; $a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Bættu við leitarorðum í sjálfgefnu forsíðuna þína sem lýsa áhugamálum þínum. Þá er hægt að fólk með svipuð áhugamál og stinga uppá vinskap."; $a->strings["Connecting"] = "Tengist"; $a->strings["Importing Emails"] = "Flyt inn pósta"; $a->strings["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"] = "Fylltu út aðgangsupplýsingar póstfangsins þíns á Tengistillingasíðunni ef þú vilt sækja tölvupóst og eiga samskipti við vini eða póstlista úr innhólfi tölvupóstsins þíns"; -$a->strings["Go to Your Contacts Page"] = ""; +$a->strings["Go to Your Contacts Page"] = "Fara yfir á tengiliðasíðuna"; $a->strings["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 Add New Contact dialog."] = "Tengiliðasíðan er gáttin þín til að sýsla með vinasambönd og tengjast við vini á öðrum netum. Oftast setur þú vistfang eða slóð þeirra í Bæta við tengilið glugganum."; $a->strings["Go to Your Site's Directory"] = ""; $a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "Tengiliðalistinn er góð leit til að finna fólk á samfélagsnetinu eða öðrum sambandsnetum. Leitaðu að Tengjast/Connect eða Fylgja/Follow tenglum á forsíðunni þeirra. Mögulega þarftu að gefa upp auðkennisslóðina þína."; -$a->strings["Finding New People"] = ""; +$a->strings["Finding New People"] = "Finna nýtt fólk"; $a->strings["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."] = ""; $a->strings["Groups"] = "Hópar"; -$a->strings["Group Your Contacts"] = ""; +$a->strings["Group Your Contacts"] = "Hópa tengiliðina þína"; $a->strings["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."] = "Eftir að þú hefur eignast nokkra vini, þá er best að flokka þá niður í hópa á hliðar slánni á Tengiliðasíðunni. Eftir það getur þú haft samskipti við hvern hóp fyrir sig á Samfélagssíðunni."; -$a->strings["Why Aren't My Posts Public?"] = ""; -$a->strings["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."] = ""; +$a->strings["Why Aren't My Posts Public?"] = "Hvers vegna eru færslurnar mínar ekki opinberar?"; +$a->strings["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."] = "Friendica virðir gagnaleynd þína. Sjálfgefið er að færslurnar þínar birtast einungis þeim sem þú hefur bætt við sem vinum. Til að sjá nánari upplýsingar, skoðaðu þá hjálparhlutann með því að smella á tengilinn hér fyrir ofan."; $a->strings["Getting Help"] = "Til að fá hjálp"; -$a->strings["Go to the Help Section"] = ""; +$a->strings["Go to the Help Section"] = "Fara í hjálparhlutann"; $a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Hægt er að styðjast við Hjálp síðuna til að fá leiðbeiningar um aðra eiginleika."; $a->strings["Visit %s's profile [%s]"] = "Heimsækja forsíðu %s [%s]"; $a->strings["Edit contact"] = "Breyta tengilið"; -$a->strings["Contacts who are not members of a group"] = ""; +$a->strings["Contacts who are not members of a group"] = "Tengiliðir sem ekki eru í neinum hópi"; $a->strings["Not Extended"] = ""; $a->strings["Resubscribing to OStatus contacts"] = ""; $a->strings["Error"] = "Villa"; $a->strings["Done"] = "Lokið"; -$a->strings["Keep this window open until done."] = ""; -$a->strings["Do you really want to delete this suggestion?"] = ""; +$a->strings["Keep this window open until done."] = "Halda þessum glugga opnum þar til öllu er lokið."; +$a->strings["Do you really want to delete this suggestion?"] = "Viltu örugglega eyða þessari tillögu?"; $a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Engar uppástungur tiltækar. Ef þetta er nýr vefur, reyndu þá aftur eftir um 24 klukkustundir."; $a->strings["Ignore/Hide"] = "Hunsa/Fela"; $a->strings["Friend Suggestions"] = "Vina uppástungur"; +$a->strings["[Embedded content - reload page to view]"] = "[Innfelt efni - endurhlaða síðu til að sjá]"; $a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Þessi vefur hefur náð hámarks fjölda daglegra nýskráninga. Reyndu aftur á morgun."; $a->strings["Import"] = "Flytja inn"; $a->strings["Move account"] = "Flytja aðgang"; -$a->strings["You can import an account from another Friendica server."] = ""; +$a->strings["You can import an account from another Friendica server."] = "Þú getur flutt inn notandaaðgang frá öðrum Friendica-þjóni."; $a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = ""; $a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = ""; -$a->strings["Account file"] = ""; +$a->strings["Account file"] = "Notandaaðgangsskrá"; $a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = ""; -$a->strings["[Embedded content - reload page to view]"] = "[Innfelt efni - endurhlaða síðu til að sjá]"; -$a->strings["%1\$s welcomes %2\$s"] = ""; $a->strings["No keywords to match. Please add keywords to your default profile."] = "Engin leitarorð. Bættu við leitarorðum í sjálfgefnu forsíðuna."; $a->strings["is interested in:"] = "hefur áhuga á:"; $a->strings["Profile Match"] = "Forsíða fannst"; $a->strings["No matches"] = "Engar leitarniðurstöður"; -$a->strings["Invalid request identifier."] = "Ógilt auðkenni beiðnar."; -$a->strings["Discard"] = "Henda"; -$a->strings["Ignore"] = "Hunsa"; -$a->strings["Notifications"] = "Tilkynningar"; -$a->strings["Network Notifications"] = "Tilkynningar á neti"; -$a->strings["System Notifications"] = "Kerfistilkynningar"; -$a->strings["Personal Notifications"] = "Einkatilkynningar."; -$a->strings["Home Notifications"] = "Tilkynningar frá heimasvæði"; -$a->strings["Show Ignored Requests"] = "Sýna hunsaðar beiðnir"; -$a->strings["Hide Ignored Requests"] = "Fela hunsaðar beiðnir"; -$a->strings["Notification type: "] = "Gerð skilaboða: "; -$a->strings["suggested by %s"] = "stungið uppá af %s"; -$a->strings["Hide this contact from others"] = "Gera þennan notanda ósýnilegan öðrum"; -$a->strings["Post a new friend activity"] = "Búa til færslu um nýjan vin"; -$a->strings["if applicable"] = "ef við á"; -$a->strings["Approve"] = "Samþykkja"; -$a->strings["Claims to be known to you: "] = "Þykist þekkja þig:"; -$a->strings["yes"] = "já"; -$a->strings["no"] = "nei"; -$a->strings["Shall your connection be bidirectional or not?"] = ""; -$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = ""; -$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = ""; -$a->strings["Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = ""; -$a->strings["Friend"] = "Vin"; -$a->strings["Sharer"] = "Deilir"; -$a->strings["Subscriber"] = "Áskrifandi"; -$a->strings["Location:"] = "Staðsetning:"; -$a->strings["About:"] = "Um:"; -$a->strings["Tags:"] = "Merki:"; -$a->strings["Gender:"] = "Kyn:"; -$a->strings["Profile URL"] = "Slóð á forsíðu"; -$a->strings["Network:"] = "Netkerfi:"; -$a->strings["No introductions."] = "Engar kynningar."; -$a->strings["Show unread"] = "Birta ólesið"; -$a->strings["Show all"] = "Birta allt"; -$a->strings["No more %s notifications."] = "Ekki fleiri %s tilkynningar."; -$a->strings["OpenID protocol error. No ID returned."] = "Samskiptavilla í OpenID. Ekkert auðkenni barst."; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = ""; -$a->strings["Login failed."] = "Innskráning mistókst."; -$a->strings["Profile not found."] = "Forsíða fannst ekki."; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = ""; -$a->strings["Response from remote site was not understood."] = "Ekki tókst að skilja svar frá ytri vef."; -$a->strings["Unexpected response from remote site: "] = "Óskiljanlegt svar frá ytri vef:"; -$a->strings["Confirmation completed successfully."] = "Staðfesting kláraði eðlilega."; -$a->strings["Temporary failure. Please wait and try again."] = "Tímabundin villa. Bíddu aðeins og reyndu svo aftur."; -$a->strings["Introduction failed or was revoked."] = "Kynning mistókst eða var afturkölluð."; -$a->strings["Remote site reported: "] = "Ytri vefur svaraði:"; -$a->strings["Unable to set contact photo."] = "Ekki tókst að setja tengiliðamynd."; -$a->strings["No user record found for '%s' "] = "Engin notandafærsla fannst fyrir '%s'"; -$a->strings["Our site encryption key is apparently messed up."] = "Dulkóðunnar lykill síðunnar okker er í döðlu."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Tómt slóð var uppgefin eða ekki okkur tókst ekki að afkóða slóð."; -$a->strings["Contact record was not found for you on our site."] = "Tengiliðafærslan þín fannst ekki á þjóninum okkar."; -$a->strings["Site public key not available in contact record for URL %s."] = "Opinber lykill er ekki til í tengiliðafærslu fyrir slóð %s."; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Skilríkið sem þjónninn þinn gaf upp er þegar afritað á okkar þjón. Þetta ætti að virka ef þú bara reynir aftur."; -$a->strings["Unable to set your contact credentials on our system."] = "Ekki tókst að setja tengiliða skilríkið þitt upp á þjóninum okkar."; -$a->strings["Unable to update your contact profile details on our system"] = "Ekki tókst að uppfæra tengiliða skilríkis upplýsingarnar á okkar þjón"; -$a->strings["[Name Withheld]"] = "[Nafn ekki sýnt]"; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s hefur gengið til liðs við %2\$s"; -$a->strings["Total invitation limit exceeded."] = ""; -$a->strings["%s : Not a valid email address."] = "%s : Ekki gilt póstfang"; -$a->strings["Please join us on Friendica"] = "Komdu í hópinn á Friendica"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = ""; -$a->strings["%s : Message delivery failed."] = "%s : Skilaboð komust ekki til skila."; -$a->strings["%d message sent."] = [ - 0 => "%d skilaboð send.", - 1 => "%d skilaboð send", -]; -$a->strings["You have no more invitations available"] = "Þú hefur ekki fleiri boðskort."; -$a->strings["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."] = ""; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = ""; -$a->strings["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."] = ""; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = ""; -$a->strings["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."] = ""; -$a->strings["To accept this invitation, please visit and register at %s."] = ""; -$a->strings["Send invitations"] = "Senda kynningar"; -$a->strings["Enter email addresses, one per line:"] = "Póstföng, eitt í hverja línu:"; -$a->strings["Your message:"] = "Skilaboðin:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = ""; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Þú þarft að nota eftirfarandi boðskorta auðkenni: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Þegar þú hefur nýskráð þig, hafðu samband við mig gegnum síðuna mína á:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = ""; -$a->strings["Invalid request."] = "Ógild fyrirspurn."; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = ""; -$a->strings["Or - did you try to upload an empty file?"] = ""; -$a->strings["File exceeds size limit of %s"] = ""; -$a->strings["File upload failed."] = "Skráar upphlöðun mistókst."; $a->strings["Manage Identities and/or Pages"] = "Sýsla með notendur og/eða síður"; $a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Skipta á milli auðkenna eða hópa- / stjörnunotanda sem deila þínum aðgangs upplýsingum eða þér verið úthlutað \"umsýslu\" réttindum."; $a->strings["Select an identity to manage: "] = "Veldu notanda til að sýsla með:"; -$a->strings["This introduction has already been accepted."] = "Þessi kynning hefur þegar verið samþykkt."; -$a->strings["Profile location is not valid or does not contain profile information."] = "Forsíðu slóð er ekki í lagi eða inniheldur ekki forsíðu upplýsingum."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Aðvörun: forsíðu staðsetning hefur ekki aðgreinanlegt eigendanafn."; -$a->strings["Warning: profile location has no profile photo."] = "Aðvörun: forsíðu slóð hefur ekki forsíðu mynd."; -$a->strings["%d required parameter was not found at the given location"] = [ - 0 => "%d skilyrt breyta fannst ekki á uppgefinni staðsetningu", - 1 => "%d skilyrtar breytur fundust ekki á uppgefninni staðsetningu", -]; -$a->strings["Introduction complete."] = "Kynning tilbúinn."; -$a->strings["Unrecoverable protocol error."] = "Alvarleg samskipta villa."; -$a->strings["Profile unavailable."] = "Ekki hægt að sækja forsíðu"; -$a->strings["%s has received too many connection requests today."] = "%s hefur fengið of margar tengibeiðnir í dag."; -$a->strings["Spam protection measures have been invoked."] = "Kveikt hefur verið á ruslsíu"; -$a->strings["Friends are advised to please try again in 24 hours."] = "Vinir eru beðnir um að reyna aftur eftir 24 klukkustundir."; -$a->strings["Invalid locator"] = "Ógild staðsetning"; -$a->strings["You have already introduced yourself here."] = "Kynning hefur þegar átt sér stað hér."; -$a->strings["Apparently you are already friends with %s."] = "Þú ert þegar vinur %s."; -$a->strings["Invalid profile URL."] = "Ógild forsíðu slóð."; -$a->strings["Disallowed profile URL."] = "Óleyfileg forsíðu slóð."; -$a->strings["Blocked domain"] = "Útilokað lén"; -$a->strings["Failed to update contact record."] = "Ekki tókst að uppfæra tengiliðs skrá."; -$a->strings["Your introduction has been sent."] = "Kynningin þín hefur verið send."; -$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = ""; -$a->strings["Please login to confirm introduction."] = "Skráðu þig inn til að staðfesta kynningu."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Ekki réttur notandi skráður inn. Skráðu þig inn sem þessi notandi."; -$a->strings["Confirm"] = "Staðfesta"; -$a->strings["Hide this contact"] = "Fela þennan tengilið"; -$a->strings["Welcome home %s."] = "Velkomin(n) heim %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Staðfestu kynninguna/tengibeiðnina við %s."; -$a->strings["Public access denied."] = "Alemennings aðgangur ekki veittur."; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Settu inn 'Auðkennisnetfang' þitt úr einhverjum af eftirfarandi samskiptanetum:"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = ""; -$a->strings["Friend/Connection Request"] = "Vinabeiðni/Tengibeiðni"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"] = ""; -$a->strings["Please answer the following:"] = "Vinnsamlegast svaraðu eftirfarandi:"; -$a->strings["Does %s know you?"] = "Þekkir %s þig?"; -$a->strings["Add a personal note:"] = "Bæta við persónulegri athugasemd"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["GNU Social (Pleroma, Mastodon)"] = "GNU Social (Pleroma, Mastodon)"; -$a->strings["Diaspora (Socialhome, Hubzilla)"] = "Diaspora (Socialhome, Hubzilla)"; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = ""; -$a->strings["Your Identity Address:"] = "Auðkennisnetfang þitt:"; -$a->strings["Submit Request"] = "Senda beiðni"; +$a->strings["Submit"] = "Senda inn"; +$a->strings["Invalid request."] = "Ógild fyrirspurn."; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = ""; +$a->strings["Or - did you try to upload an empty file?"] = "Eða - reyndirðu að senda inn tóma skrá?"; +$a->strings["File exceeds size limit of %s"] = "Skrá fer leyfileg takmörk sem eru %s"; +$a->strings["File upload failed."] = "Skráar upphlöðun mistókst."; +$a->strings["- select -"] = "- veldu -"; $a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; $a->strings["Time Conversion"] = "Tíma leiðréttir"; $a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica veitir þessa þjónustu til að deila atburðum milli neta og vina í óþekktum tímabeltum."; @@ -531,6 +382,17 @@ $a->strings["UTC time: %s"] = "Máltími: %s"; $a->strings["Current timezone: %s"] = "Núverandi tímabelti: %s"; $a->strings["Converted localtime: %s"] = "Umbreyttur staðartími: %s"; $a->strings["Please select your timezone:"] = "Veldu tímabeltið þitt:"; +$a->strings["No more system notifications."] = "Ekki fleiri kerfistilkynningar."; +$a->strings["System Notifications"] = "Kerfistilkynningar"; +$a->strings["{0} wants to be your friend"] = "{0} vill vera vinur þinn"; +$a->strings["{0} sent you a message"] = "{0} sendi þér skilboð"; +$a->strings["{0} requested registration"] = "{0} óskaði eftir skráningu"; +$a->strings["Poke/Prod"] = "Pota/Ýta"; +$a->strings["poke, prod or do other things to somebody"] = "pota, ýta eða gera eitthvað við einhvern"; +$a->strings["Recipient"] = "Viðtakandi"; +$a->strings["Choose what you wish to do to recipient"] = ""; +$a->strings["Make this post private"] = "Gera þessa færslu einka"; +$a->strings["Public access denied."] = "Opinber aðgangur ekki veittur."; $a->strings["Only logged in users are permitted to perform a probing."] = ""; $a->strings["Permission denied"] = "Bannaður aðgangur"; $a->strings["Invalid profile identifier."] = "Ógilt tengiliða auðkenni"; @@ -541,11 +403,30 @@ $a->strings["All Contacts (with secure profile access)"] = "Allir tengiliðir (m $a->strings["Account approved."] = "Notandi samþykktur."; $a->strings["Registration revoked for %s"] = "Skráning afturköllurð vegna %s"; $a->strings["Please login."] = "Skráðu yður inn."; -$a->strings["Remove My Account"] = "Eyða þessum notanda"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Þetta mun algjörlega eyða notandanum. Þegar þetta hefur verið gert er þetta ekki afturkræft."; -$a->strings["Please enter your password for verification:"] = "Sláðu inn aðgangsorð yðar:"; +$a->strings["Remove term"] = "Fjarlæga gildi"; +$a->strings["Saved Searches"] = "Vistaðar leitir"; +$a->strings["Only logged in users are permitted to perform a search."] = "Aðeins innskráðir notendur geta framkvæmt leit."; +$a->strings["Too Many Requests"] = "Of margar beiðnir"; +$a->strings["Only one search per minute is permitted for not logged in users."] = "Notendur sem ekki eru innskráðir geta aðeins framkvæmt eina leit á mínútu."; +$a->strings["No results."] = "Engar leitarniðurstöður."; +$a->strings["Items tagged with: %s"] = "Atriði merkt með: %s"; +$a->strings["Results for: %s"] = "Niðurstöður fyrir: %s"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s fylgist með %3\$s hjá %2\$s"; +$a->strings["Tag removed"] = "Merki fjarlægt"; +$a->strings["Remove Item Tag"] = "Fjarlægja merki "; +$a->strings["Select a tag to remove: "] = "Veldu merki til að fjarlægja:"; +$a->strings["Remove"] = "Fjarlægja"; +$a->strings["Export account"] = "Flytja út notandaaðgang"; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = ""; +$a->strings["Export all"] = "Flytja út allt"; +$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = ""; +$a->strings["Export personal data"] = "Sækja persónuleg gögn"; $a->strings["No contacts."] = "Enginn tengiliður"; $a->strings["Access denied."] = "Aðgangi hafnað."; +$a->strings["Image exceeds size limit of %s"] = ""; +$a->strings["Unable to process image."] = "Ekki mögulegt afgreiða mynd"; +$a->strings["Wall Photos"] = "Veggmyndir"; +$a->strings["Image upload failed."] = "Ekki hægt að hlaða upp mynd."; $a->strings["Number of daily wall messages for %s exceeded. Message failed."] = ""; $a->strings["No recipient selected."] = "Engir viðtakendur valdir."; $a->strings["Unable to check your home location."] = ""; @@ -557,123 +438,18 @@ $a->strings["Send Private Message"] = "Senda einkaskilaboð"; $a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = ""; $a->strings["To:"] = "Til:"; $a->strings["Subject:"] = "Efni:"; -$a->strings["Export account"] = "Flytja út notandaaðgang"; -$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = ""; -$a->strings["Export all"] = "Flytja út allt"; -$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = ""; -$a->strings["Export personal data"] = "Sækja persónuleg gögn"; -$a->strings["- select -"] = "- veldu -"; -$a->strings["No more system notifications."] = "Ekki fleiri kerfistilkynningar."; -$a->strings["{0} wants to be your friend"] = "{0} vill vera vinur þinn"; -$a->strings["{0} sent you a message"] = "{0} sendi þér skilboð"; -$a->strings["{0} requested registration"] = "{0} óskaði eftir skráningu"; -$a->strings["Poke/Prod"] = ""; -$a->strings["poke, prod or do other things to somebody"] = ""; -$a->strings["Recipient"] = "Viðtakandi"; -$a->strings["Choose what you wish to do to recipient"] = ""; -$a->strings["Make this post private"] = "Gera þennan póst einka"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = ""; -$a->strings["Tag removed"] = "Merki fjarlægt"; -$a->strings["Remove Item Tag"] = "Fjarlægja merki "; -$a->strings["Select a tag to remove: "] = "Veldu merki til að fjarlægja:"; -$a->strings["Remove"] = "Fjarlægja"; -$a->strings["Image exceeds size limit of %s"] = ""; -$a->strings["Unable to process image."] = "Ekki mögulegt afgreiða mynd"; -$a->strings["Wall Photos"] = "Veggmyndir"; -$a->strings["Image upload failed."] = "Ekki hægt að hlaða upp mynd."; -$a->strings["Remove term"] = "Fjarlæga gildi"; -$a->strings["Saved Searches"] = "Vistaðar leitir"; -$a->strings["Only logged in users are permitted to perform a search."] = "Aðeins innskráðir notendur geta framkvæmt leit."; -$a->strings["Too Many Requests"] = "Of margar beiðnir"; -$a->strings["Only one search per minute is permitted for not logged in users."] = "Notendur sem ekki eru innskráðir geta aðeins framkvæmt eina leit á mínútu."; -$a->strings["No results."] = "Engar leitarniðurstöður."; -$a->strings["Items tagged with: %s"] = "Atriði merkt með: %s"; -$a->strings["Results for: %s"] = "Niðurstöður fyrir: %s"; +$a->strings["Your message:"] = "Skilaboðin:"; $a->strings["Login"] = "Innskráning"; $a->strings["The post was created"] = ""; -$a->strings["Community option not available."] = ""; -$a->strings["Not available."] = "Ekki tiltækt."; -$a->strings["Local Community"] = ""; -$a->strings["Posts from local users on this server"] = ""; -$a->strings["Global Community"] = ""; -$a->strings["Posts from users of the whole federated network"] = ""; -$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = ""; $a->strings["Item not found"] = "Atriði fannst ekki"; $a->strings["Edit post"] = "Breyta skilaboðum"; $a->strings["CC: email addresses"] = "CC: tölvupóstfang"; $a->strings["Example: bob@example.com, mary@example.com"] = "Dæmi: bibbi@vefur.is, mgga@vefur.is"; -$a->strings["You must be logged in to use this module"] = ""; -$a->strings["Source URL"] = "Upprunaslóð"; +$a->strings["Contact not found."] = "Tengiliður fannst ekki."; $a->strings["Friend suggestion sent."] = "Vina tillaga send"; $a->strings["Suggest Friends"] = "Stinga uppá vinum"; $a->strings["Suggest a friend for %s"] = "Stinga uppá vin fyrir %s"; -$a->strings["Group created."] = "Hópur stofnaður"; -$a->strings["Could not create group."] = "Gat ekki stofnað hóp."; -$a->strings["Group not found."] = "Hópur fannst ekki."; -$a->strings["Group name changed."] = "Hópur endurskýrður."; -$a->strings["Save Group"] = "Vista hóp"; -$a->strings["Create a group of contacts/friends."] = "Stofna hóp af tengiliðum/vinum"; -$a->strings["Group Name: "] = "Nafn hóps: "; -$a->strings["Group removed."] = "Hópi eytt."; -$a->strings["Unable to remove group."] = "Ekki tókst að eyða hóp."; -$a->strings["Delete Group"] = "Eyða hópi"; -$a->strings["Group Editor"] = "Hópa sýslari"; -$a->strings["Edit Group Name"] = "Breyta nafni hóps"; -$a->strings["Members"] = "Meðlimir"; -$a->strings["All Contacts"] = "Allir tengiliðir"; -$a->strings["Group is empty"] = "Hópur er tómur"; -$a->strings["Remove Contact"] = "Fjarlægja tengilið"; -$a->strings["Add Contact"] = "Bæta við tengilið"; -$a->strings["Unable to locate original post."] = "Ekki tókst að finna upphaflega færslu."; -$a->strings["Empty post discarded."] = "Tóm færsla eytt."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Skilaboðið sendi %s, notandi á Friendica samfélagsnetinu."; -$a->strings["You may visit them online at %s"] = "Þú getur heimsótt þau á netinu á %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Hafðu samband við sendanda með því að svara á þessari færslu ef þú villt ekki fá þessi skilaboð."; -$a->strings["%s posted an update."] = "%s hefur sent uppfærslu."; -$a->strings["New Message"] = "Ný skilaboð"; -$a->strings["Unable to locate contact information."] = "Ekki tókst að staðsetja tengiliðs upplýsingar."; -$a->strings["Messages"] = "Skilaboð"; -$a->strings["Do you really want to delete this message?"] = "Viltu virkilega eyða þessum skilaboðum?"; -$a->strings["Message deleted."] = "Skilaboðum eytt."; -$a->strings["Conversation removed."] = "Samtali eytt."; -$a->strings["No messages."] = "Engin skilaboð."; -$a->strings["Message not available."] = "Ekki næst í skilaboð."; -$a->strings["Delete message"] = "Eyða skilaboðum"; -$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A"; -$a->strings["Delete conversation"] = "Eyða samtali"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = ""; -$a->strings["Send Reply"] = "Senda svar"; -$a->strings["Unknown sender - %s"] = "Óþekktur sendandi - %s"; -$a->strings["You and %s"] = "Þú og %s"; -$a->strings["%s and You"] = "%s og þú"; -$a->strings["%d message"] = [ - 0 => "%d skilaboð", - 1 => "%d skilaboð", -]; -$a->strings["add"] = "bæta við"; -$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = [ - 0 => "", - 1 => "", -]; -$a->strings["Messages in this group won't be send to these receivers."] = ""; -$a->strings["No such group"] = "Enginn slíkur hópur"; -$a->strings["Group: %s"] = "Hópur: %s"; -$a->strings["Private messages to this person are at risk of public disclosure."] = "Einka skilaboð send á þennan notanda eiga á hættu að verða opinber."; -$a->strings["Invalid contact."] = "Ógildur tengiliður."; -$a->strings["Commented Order"] = "Athugasemdar röð"; -$a->strings["Sort by Comment Date"] = "Raða eftir umræðu dagsetningu"; -$a->strings["Posted Order"] = "Færlsu röð"; -$a->strings["Sort by Post Date"] = "Raða eftir færslu dagsetningu"; -$a->strings["Personal"] = "Einka"; -$a->strings["Posts that mention or involve you"] = "Færslur sem tengjast þér"; -$a->strings["New"] = "Nýtt"; -$a->strings["Activity Stream - by date"] = "Færslu straumur - raðað eftir dagsetningu"; -$a->strings["Shared Links"] = "Sameignartenglar"; -$a->strings["Interesting Links"] = "Áhugaverðir tenglar"; -$a->strings["Starred"] = "Stjörnumerkt"; -$a->strings["Favourite Posts"] = "Uppáhalds færslur"; $a->strings["Personal Notes"] = "Persónulegar glósur"; -$a->strings["Post successful."] = "Melding tókst."; $a->strings["Photo Albums"] = "Myndabækur"; $a->strings["Recent Photos"] = "Nýlegar myndir"; $a->strings["Upload New Photos"] = "Hlaða upp nýjum myndum"; @@ -685,7 +461,7 @@ $a->strings["Do you really want to delete this photo album and all its photos?"] $a->strings["Delete Photo"] = "Fjarlægja mynd"; $a->strings["Do you really want to delete this photo?"] = ""; $a->strings["a photo"] = "mynd"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = ""; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s var merkt í %2\$s af %3\$s"; $a->strings["Image upload didn't complete, please try again"] = ""; $a->strings["Image file is missing"] = "Myndskrá vantar"; $a->strings["Server can't accept new file upload at this time, please contact your administrator"] = ""; @@ -725,126 +501,16 @@ $a->strings["This is you"] = "Þetta ert þú"; $a->strings["Comment"] = "Athugasemd"; $a->strings["Map"] = "Landakort"; $a->strings["View Album"] = "Skoða myndabók"; -$a->strings["Requested profile is not available."] = "Umbeðin forsíða ekki til."; -$a->strings["%s's posts"] = "Færslur frá %s"; -$a->strings["%s's comments"] = "Athugasemdir frá %s"; -$a->strings["%s's timeline"] = "Tímalína fyrir %s"; -$a->strings["Access to this profile has been restricted."] = "Aðgangur að þessari forsíðu hefur verið heftur."; -$a->strings["Tips for New Members"] = "Ábendingar fyrir nýja notendur"; $a->strings["Do you really want to delete this video?"] = ""; $a->strings["Delete Video"] = "Eyða myndskeiði"; $a->strings["No videos selected"] = "Engin myndskeið valin"; $a->strings["Recent Videos"] = "Nýleg myndskeið"; $a->strings["Upload New Videos"] = "Senda inn ný myndskeið"; -$a->strings["Parent user not found."] = ""; -$a->strings["No parent user"] = ""; -$a->strings["Parent Password:"] = ""; -$a->strings["Please enter the password of the parent account to legitimize your request."] = ""; -$a->strings["Parent User"] = ""; -$a->strings["Parent users have total control about this account, including the account settings. Please double check whom you give this access."] = ""; -$a->strings["Save Settings"] = "Vista stillingar"; -$a->strings["Delegate Page Management"] = ""; -$a->strings["Delegates"] = ""; -$a->strings["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."] = ""; -$a->strings["Existing Page Delegates"] = ""; -$a->strings["Potential Delegates"] = ""; -$a->strings["Add"] = "Bæta við"; -$a->strings["No entries."] = "Engar færslur."; -$a->strings["People Search - %s"] = "Leita að fólki - %s"; -$a->strings["Forum Search - %s"] = "Leita á spjallsvæði - %s"; -$a->strings["Friendica Communications Server - Setup"] = ""; -$a->strings["Could not connect to database."] = "Gat ekki tengst gagnagrunn."; -$a->strings["Could not create table."] = "Gat ekki búið til töflu."; -$a->strings["Your Friendica site database has been installed."] = "Friendica gagnagrunnurinn þinn hefur verið uppsettur."; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Þú þarft mögulega að keyra inn skránna \"database.sql\" handvirkt með phpmyadmin eða mysql."; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Lestu skrána \"INSTALL.txt\"."; -$a->strings["Database already in use."] = "Gagnagrunnur er þegar í notkun."; -$a->strings["System check"] = "Kerfis prófun"; -$a->strings["Next"] = "Næsta"; -$a->strings["Check again"] = "Prófa aftur"; -$a->strings["Database connection"] = "Gangagrunns tenging"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Til að setja upp Friendica þurfum við að vita hvernig á að tengjast gagnagrunninum þínum."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Hafðu samband við hýsingaraðilann þinn eða kerfisstjóra ef þú hefur spurningar varðandi þessar stillingar."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Gagnagrunnurinn sem þú bendir á þarf þegar að vera til. Ef ekki þá þarf að stofna hann áður en haldið er áfram."; -$a->strings["Database Server Name"] = "Vélanafn gagangrunns"; -$a->strings["Database Login Name"] = "Notendanafn í gagnagrunn"; -$a->strings["Database Login Password"] = "Aðgangsorð í gagnagrunns"; -$a->strings["For security reasons the password must not be empty"] = ""; -$a->strings["Database Name"] = "Nafn gagnagrunns"; -$a->strings["Site administrator email address"] = "Póstfang kerfisstjóra vefsvæðis"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Póstfang aðgangsins þíns verður að passa við þetta til að hægt sé að nota umsýsluvefviðmótið."; -$a->strings["Please select a default timezone for your website"] = "Veldu sjálfgefið tímabelti fyrir vefsíðuna"; -$a->strings["Site settings"] = "Stillingar vefsvæðis"; -$a->strings["System Language:"] = "Tungumál kerfis:"; -$a->strings["Set the default language for your Friendica installation interface and to send emails."] = ""; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Gat ekki fundið skipanalínu útgáfu af PHP í vefþjóns PATH."; -$a->strings["If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See 'Setup the worker'"] = ""; -$a->strings["PHP executable path"] = "PHP keyrslu slóð"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = ""; -$a->strings["Command line PHP"] = "Skipanalínu PHP"; -$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = ""; -$a->strings["Found PHP version: "] = "Fann PHP útgáfu: "; -$a->strings["PHP cli binary"] = ""; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Skipanalínu útgáfa af PHP á vefþjóninum hefur ekki kveikt á \"register_argc_argv\"."; -$a->strings["This is required for message delivery to work."] = "Þetta er skilyrt fyrir því að skilaboð komist til skila."; -$a->strings["PHP register_argc_argv"] = ""; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Villa: Stefjan \"openssl_pkey_new\" á vefþjóninum getur ekki stofnað dulkóðunar lykla"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Ef keyrt er á Window, skoðaðu þá \"http://www.php.net/manual/en/openssl.installation.php\"."; -$a->strings["Generate encryption keys"] = "Búa til dulkóðunar lykla"; -$a->strings["libCurl PHP module"] = "libCurl PHP eining"; -$a->strings["GD graphics PHP module"] = "GD graphics PHP eining"; -$a->strings["OpenSSL PHP module"] = "OpenSSL PHP eining"; -$a->strings["PDO or MySQLi PHP module"] = ""; -$a->strings["mb_string PHP module"] = "mb_string PHP eining"; -$a->strings["XML PHP module"] = ""; -$a->strings["iconv PHP module"] = ""; -$a->strings["POSIX PHP module"] = ""; -$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite eining"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Villa: Apache vefþjóns eining mod-rewrite er skilyrði og er ekki uppsett. "; -$a->strings["Error: libCURL PHP module required but not installed."] = "Villa: libCurl PHP eining er skilyrði og er ekki uppsett."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Villa: GD graphics PHP eining með JPEG stuðningi er skilyrði og er ekki uppsett."; -$a->strings["Error: openssl PHP module required but not installed."] = "Villa: openssl PHP eining skilyrði og er ekki uppsett."; -$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = ""; -$a->strings["Error: The MySQL driver for PDO is not installed."] = ""; -$a->strings["Error: mb_string PHP module required but not installed."] = "Villa: mb_string PHP eining skilyrði en ekki uppsett."; -$a->strings["Error: iconv PHP module required but not installed."] = ""; -$a->strings["Error: POSIX PHP module required but not installed."] = ""; -$a->strings["Error, XML PHP module required but not installed."] = ""; -$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Vef uppsetningar forrit þarf að geta stofnað skránna \".htconfig.php\" in efsta skráarsafninu á vefþjóninum og það getur ekki gert það."; -$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Þetta er oftast aðgangsstýringa stilling, þar sem vefþjónninn getur ekki skrifað út skrár í skráarsafnið - þó þú getir það."; -$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = ""; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = ""; -$a->strings[".htconfig.php is writable"] = ".htconfig.php er skrifanleg"; -$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = ""; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = ""; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = ""; -$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = ""; -$a->strings["view/smarty3 is writable"] = ""; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = ""; -$a->strings["Url rewrite is working"] = ""; -$a->strings["ImageMagick PHP extension is not installed"] = ""; -$a->strings["ImageMagick PHP extension is installed"] = ""; -$a->strings["ImageMagick supports GIF"] = ""; -$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Ekki tókst að skrifa stillingaskrá gagnagrunns \".htconfig.php\". Notað meðfylgjandi texta til að búa til stillingarskrá í rót vefþjónsins."; -$a->strings["

What next

"] = ""; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = ""; -$a->strings["Go to your new Friendica node registration page 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."] = ""; -$a->strings["Subscribing to OStatus contacts"] = ""; -$a->strings["No contact provided."] = "Enginn tengiliður uppgefinn."; -$a->strings["Couldn't fetch information for contact."] = ""; -$a->strings["Couldn't fetch friends for contact."] = ""; -$a->strings["success"] = "tókst"; -$a->strings["failed"] = "mistókst"; -$a->strings["ignored"] = "hunsað"; -$a->strings["Contact wasn't found or can't be unfollowed."] = ""; -$a->strings["Contact unfollowed"] = ""; -$a->strings["You aren't a friend of this contact."] = ""; -$a->strings["Unfollowing is currently not supported by your network."] = ""; -$a->strings["Disconnect/Unfollow"] = ""; -$a->strings["Status Messages and Posts"] = "Stöðu skilaboð og færslur"; +$a->strings["Access to this profile has been restricted."] = "Aðgangur að þessari forsíðu hefur verið heftur."; $a->strings["Events"] = "Atburðir"; $a->strings["View"] = "Skoða"; $a->strings["Previous"] = "Fyrra"; +$a->strings["Next"] = "Næsta"; $a->strings["today"] = "í dag"; $a->strings["month"] = "mánuður"; $a->strings["week"] = "vika"; @@ -854,152 +520,7 @@ $a->strings["User not found"] = "Notandi fannst ekki"; $a->strings["This calendar format is not supported"] = ""; $a->strings["No exportable data found"] = ""; $a->strings["calendar"] = "dagatal"; -$a->strings["Event can not end before it has started."] = ""; -$a->strings["Event title and start time are required."] = ""; -$a->strings["Create New Event"] = "Stofna nýjan atburð"; -$a->strings["Event details"] = "Nánar um atburð"; -$a->strings["Starting date and Title are required."] = ""; -$a->strings["Event Starts:"] = "Atburður hefst:"; -$a->strings["Required"] = "Nauðsynlegt"; -$a->strings["Finish date/time is not known or not relevant"] = "Loka dagsetning/tímasetning ekki vituð eða skiptir ekki máli"; -$a->strings["Event Finishes:"] = "Atburður klárar:"; -$a->strings["Adjust for viewer timezone"] = "Heimfæra á tímabelti áhorfanda"; -$a->strings["Description:"] = "Lýsing:"; -$a->strings["Title:"] = "Titill:"; -$a->strings["Share this event"] = "Deila þessum atburði"; -$a->strings["Basic"] = "Einfalt"; -$a->strings["Advanced"] = "Flóknari"; -$a->strings["Failed to remove event"] = ""; -$a->strings["Event removed"] = ""; -$a->strings["Image uploaded but image cropping failed."] = "Tókst að hala upp mynd en afskurður tókst ekki."; -$a->strings["Image size reduction [%s] failed."] = "Myndar minnkun [%s] tókst ekki."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ýta þarf á "; -$a->strings["Unable to process image"] = "Ekki tókst að vinna mynd"; -$a->strings["Upload File:"] = "Hlaða upp skrá:"; -$a->strings["Select a profile:"] = ""; -$a->strings["or"] = "eða"; -$a->strings["skip this step"] = "sleppa þessu skrefi"; -$a->strings["select a photo from your photo albums"] = "velja mynd í myndabókum"; -$a->strings["Crop Image"] = "Skera af mynd"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Stilltu afskurð fyrir besta birtingu."; -$a->strings["Done Editing"] = "Breyting kláruð"; -$a->strings["Image uploaded successfully."] = "Upphölun á mynd tóks."; -$a->strings["Status:"] = "Staða:"; -$a->strings["Homepage:"] = "Heimasíða:"; -$a->strings["Global Directory"] = "Alheimstengiliðaskrá"; -$a->strings["Find on this site"] = "Leita á þessum vef"; -$a->strings["Results for:"] = "Niðurstöður fyrir:"; -$a->strings["Site Directory"] = "Skrá yfir tengiliði á þessum vef"; -$a->strings["Find"] = "Finna"; -$a->strings["No entries (some entries may be hidden)."] = "Engar færslur (sumar geta verið faldar)."; -$a->strings["Source input"] = ""; -$a->strings["BBCode::convert (raw HTML)"] = ""; -$a->strings["BBCode::convert"] = ""; -$a->strings["BBCode::convert => HTML::toBBCode"] = ""; -$a->strings["BBCode::toMarkdown"] = ""; -$a->strings["BBCode::toMarkdown => Markdown::convert"] = ""; -$a->strings["BBCode::toMarkdown => Markdown::toBBCode"] = ""; -$a->strings["BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"] = ""; -$a->strings["Source input \\x28Diaspora format\\x29"] = ""; -$a->strings["Markdown::toBBCode"] = "Markdown::toBBCode"; -$a->strings["Raw HTML input"] = "Hrátt HTML-ílag"; -$a->strings["HTML Input"] = "HTML Input"; -$a->strings["HTML::toBBCode"] = "HTML::toBBCode"; -$a->strings["HTML::toPlaintext"] = "HTML::toPlaintext"; -$a->strings["Source text"] = "Frumtexti"; -$a->strings["BBCode"] = "BBCode"; -$a->strings["Markdown"] = "Markdown"; -$a->strings["HTML"] = "HTML"; -$a->strings["The contact could not be added."] = ""; -$a->strings["You already added this contact."] = ""; -$a->strings["Diaspora support isn't enabled. Contact can't be added."] = ""; -$a->strings["OStatus support is disabled. Contact can't be added."] = ""; -$a->strings["The network type couldn't be detected. Contact can't be added."] = ""; -$a->strings["Profile deleted."] = "Forsíðu eytt."; -$a->strings["Profile-"] = "Forsíða-"; -$a->strings["New profile created."] = "Ný forsíða búinn til."; -$a->strings["Profile unavailable to clone."] = "Ekki tókst að klóna forsíðu"; -$a->strings["Profile Name is required."] = "Nafn á forsíðu er skilyrði"; -$a->strings["Marital Status"] = "Hjúskaparstaða"; -$a->strings["Romantic Partner"] = ""; -$a->strings["Work/Employment"] = "Atvinna/Starf"; -$a->strings["Religion"] = "Trúarbrögð"; -$a->strings["Political Views"] = "Stórnmálaskoðanir"; -$a->strings["Gender"] = "Kyn"; -$a->strings["Sexual Preference"] = "Kynhneigð"; -$a->strings["XMPP"] = "XMPP"; -$a->strings["Homepage"] = "Heimasíða"; -$a->strings["Interests"] = "Áhugamál"; -$a->strings["Address"] = "Heimilisfang"; -$a->strings["Location"] = "Staðsetning"; -$a->strings["Profile updated."] = "Forsíða uppfærð."; -$a->strings[" and "] = "og"; -$a->strings["public profile"] = "Opinber forsíða"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = ""; -$a->strings[" - Visit %1\$s's %2\$s"] = " - Heimsæktu %1\$s's %2\$s"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hefur uppfært %2\$s, með því að breyta %3\$s."; -$a->strings["Hide contacts and friends:"] = "Fela tengiliði og vini"; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Fela tengiliða-/vinalista á þessari forsíðu?"; -$a->strings["Show more profile fields:"] = ""; -$a->strings["Profile Actions"] = ""; -$a->strings["Edit Profile Details"] = "Breyta forsíðu upplýsingum"; -$a->strings["Change Profile Photo"] = ""; -$a->strings["View this profile"] = "Skoða þessa forsíðu"; -$a->strings["Edit visibility"] = "Sýsla með sýnileika"; -$a->strings["Create a new profile using these settings"] = "Búa til nýja forsíðu með þessum stillingum"; -$a->strings["Clone this profile"] = "Klóna þessa forsíðu"; -$a->strings["Delete this profile"] = "Eyða þessari forsíðu"; -$a->strings["Basic information"] = ""; -$a->strings["Profile picture"] = "Notandamynd"; -$a->strings["Preferences"] = "Kjörstillingar"; -$a->strings["Status information"] = ""; -$a->strings["Additional information"] = "Viðbótarupplýsingar"; -$a->strings["Relation"] = "Vensl"; -$a->strings["Miscellaneous"] = "Ýmislegt"; -$a->strings["Your Gender:"] = "Kyn:"; -$a->strings[" Marital Status:"] = " Hjúskaparstaða:"; -$a->strings["Sexual Preference:"] = "Kynhneigð:"; -$a->strings["Example: fishing photography software"] = "Til dæmis: fishing photography software"; -$a->strings["Profile Name:"] = "Forsíðu nafn:"; -$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Þetta er opinber forsíða.
Hún verður sjáanleg öðrum sem nota alnetið."; -$a->strings["Your Full Name:"] = "Fullt nafn:"; -$a->strings["Title/Description:"] = "Starfsheiti/Lýsing:"; -$a->strings["Street Address:"] = "Gata:"; -$a->strings["Locality/City:"] = "Bær/Borg:"; -$a->strings["Region/State:"] = "Svæði/Sýsla"; -$a->strings["Postal/Zip Code:"] = "Póstnúmer:"; -$a->strings["Country:"] = "Land:"; -$a->strings["Age: "] = "Aldur: "; -$a->strings["Who: (if applicable)"] = "Hver: (ef við á)"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Dæmi: cathy123, Cathy Williams, cathy@example.com"; -$a->strings["Since [date]:"] = "Síðan [date]:"; -$a->strings["Tell us about yourself..."] = "Segðu okkur frá sjálfum þér..."; -$a->strings["XMPP (Jabber) address:"] = "XMPP (Jabber) vistfang:"; -$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = ""; -$a->strings["Homepage URL:"] = "Slóð heimasíðu:"; -$a->strings["Hometown:"] = "Heimabær:"; -$a->strings["Political Views:"] = "Stórnmálaskoðanir:"; -$a->strings["Religious Views:"] = "Trúarskoðanir"; -$a->strings["Public Keywords:"] = "Opinber leitarorð:"; -$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Notað til að stinga uppá mögulegum vinum, aðrir geta séð)"; -$a->strings["Private Keywords:"] = "Einka leitarorð:"; -$a->strings["(Used for searching profiles, never shown to others)"] = "(Notað við leit að öðrum notendum, aldrei sýnt öðrum)"; -$a->strings["Likes:"] = "Líkar:"; -$a->strings["Dislikes:"] = "Mislíkar:"; -$a->strings["Musical interests"] = "Tónlistarsmekkur"; -$a->strings["Books, literature"] = "Bækur, bókmenntir"; -$a->strings["Television"] = "Sjónvarp"; -$a->strings["Film/dance/culture/entertainment"] = "Kvikmyndir/dans/menning/afþreying"; -$a->strings["Hobbies/Interests"] = "Áhugamál"; -$a->strings["Love/romance"] = "Ást/rómantík"; -$a->strings["Work/employment"] = "Atvinna:"; -$a->strings["School/education"] = "Skóli/menntun"; -$a->strings["Contact information and Social Networks"] = "Tengiliðaupplýsingar og samfélagsnet"; -$a->strings["Profile Image"] = "Forsíðumynd"; -$a->strings["visible to everybody"] = "sýnilegt öllum"; -$a->strings["Edit/Manage Profiles"] = "Sýsla með forsíður"; -$a->strings["Change profile photo"] = "Breyta forsíðumynd"; -$a->strings["Create New Profile"] = "Stofna nýja forsíðu"; +$a->strings["Network:"] = "Netkerfi:"; $a->strings["%d contact edited."] = [ 0 => "", 1 => "", @@ -1007,6 +528,7 @@ $a->strings["%d contact edited."] = [ $a->strings["Could not access contact record."] = "Tókst ekki að ná í uppl. um tengilið"; $a->strings["Could not locate selected profile."] = "Tókst ekki að staðsetja valinn forsíðu"; $a->strings["Contact updated."] = "Tengiliður uppfærður"; +$a->strings["Failed to update contact record."] = "Ekki tókst að uppfæra tengiliðs skrá."; $a->strings["Contact has been blocked"] = "Lokað á tengilið"; $a->strings["Contact has been unblocked"] = "Opnað á tengilið"; $a->strings["Contact has been ignored"] = "Tengiliður hunsaður"; @@ -1032,6 +554,7 @@ $a->strings["Disabled"] = "Óvirkt"; $a->strings["Fetch information"] = "Ná í upplýsingar"; $a->strings["Fetch keywords"] = "Ná í stikkorð"; $a->strings["Fetch information and keywords"] = "Ná í upplýsingar og stikkorð"; +$a->strings["Disconnect/Unfollow"] = ""; $a->strings["Contact"] = "Tengiliður"; $a->strings["Profile Visibility"] = "Forsíðu sjáanleiki"; $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Veldu forsíðu sem á að birtast %s þegar hann skoðaður með öruggum hætti"; @@ -1048,21 +571,28 @@ $a->strings["Update now"] = "Uppfæra núna"; $a->strings["Unblock"] = "Afbanna"; $a->strings["Block"] = "Útiloka"; $a->strings["Unignore"] = "Byrja að fylgjast með á ný"; +$a->strings["Ignore"] = "Hunsa"; $a->strings["Currently blocked"] = "Útilokaður sem stendur"; $a->strings["Currently ignored"] = "Hunsaður sem stendur"; $a->strings["Currently archived"] = "Í geymslu"; $a->strings["Awaiting connection acknowledge"] = ""; +$a->strings["Hide this contact from others"] = "Gera þennan notanda ósýnilegan öðrum"; $a->strings["Replies/likes to your public posts may still be visible"] = "Svör eða \"líkar við\" á opinberar færslur þínar geta mögulega verið sýnileg öðrum"; $a->strings["Notification for new posts"] = ""; $a->strings["Send a notification of every new post of this contact"] = ""; $a->strings["Blacklisted keywords"] = ""; $a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = ""; +$a->strings["Profile URL"] = "Slóð á forsíðu"; +$a->strings["Location:"] = "Staðsetning:"; $a->strings["XMPP:"] = "XMPP:"; +$a->strings["About:"] = "Um:"; +$a->strings["Tags:"] = "Merki:"; $a->strings["Actions"] = "Aðgerðir"; $a->strings["Status"] = "Staða"; $a->strings["Contact Settings"] = "Stillingar tengiliðar"; $a->strings["Suggestions"] = "Uppástungur"; $a->strings["Suggest potential friends"] = "Stinga uppá mögulegum vinum"; +$a->strings["All Contacts"] = "Allir tengiliðir"; $a->strings["Show all contacts"] = "Sýna alla tengiliði"; $a->strings["Unblocked"] = "Afhunsað"; $a->strings["Only show unblocked contacts"] = ""; @@ -1075,13 +605,16 @@ $a->strings["Only show archived contacts"] = "Aðeins sýna geymda tengiliði"; $a->strings["Hidden"] = "Falinn"; $a->strings["Only show hidden contacts"] = "Aðeins sýna falda tengiliði"; $a->strings["Search your contacts"] = "Leita í þínum vinum"; +$a->strings["Find"] = "Finna"; $a->strings["Update"] = "Uppfæra"; $a->strings["Archive"] = "Setja í geymslu"; $a->strings["Unarchive"] = "Taka úr geymslu"; -$a->strings["Batch Actions"] = ""; +$a->strings["Batch Actions"] = "Magnaðgerðir"; +$a->strings["Status Messages and Posts"] = "Stöðu skilaboð og færslur"; $a->strings["Profile Details"] = "Forsíðu upplýsingar"; $a->strings["View all contacts"] = "Skoða alla tengiliði"; -$a->strings["View all common friends"] = ""; +$a->strings["View all common friends"] = "Skoða alla sameiginlega vini"; +$a->strings["Advanced"] = "Flóknari"; $a->strings["Advanced Contact Settings"] = ""; $a->strings["Mutual Friendship"] = "Sameiginlegur vinskapur"; $a->strings["is a fan of yours"] = "er fylgjandi þinn"; @@ -1090,21 +623,83 @@ $a->strings["Toggle Blocked status"] = ""; $a->strings["Toggle Ignored status"] = ""; $a->strings["Toggle Archive status"] = ""; $a->strings["Delete contact"] = "Eyða tengilið"; -$a->strings["Terms of Service"] = "Þjónustuskilmálar"; -$a->strings["Privacy Statement"] = "Yfirlýsing um gagnaleynd"; -$a->strings["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."] = ""; -$a->strings["At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1\$s/removeme. The deletion of the account will be permanent."] = ""; -$a->strings["This is Friendica, version"] = "Þetta er Friendica útgáfa"; -$a->strings["running at web location"] = "Keyrir á slóð"; -$a->strings["Please visit Friendi.ca to learn more about the Friendica project."] = ""; -$a->strings["Bug reports and issues: please visit"] = "Villu tilkynningar og vandamál: endilega skoða"; -$a->strings["the bugtracker at github"] = "villuskráningu á GitHub"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Uppástungur, lof, framlög og svo framvegis - sendið tölvupóst á \"Info\" hjá Friendica - punktur com"; -$a->strings["Installed addons/apps:"] = ""; -$a->strings["No installed addons/apps"] = ""; -$a->strings["Read about the Terms of Service of this node."] = ""; -$a->strings["On this server the following remote servers are blocked."] = ""; -$a->strings["Reason for the block"] = ""; +$a->strings["Parent user not found."] = ""; +$a->strings["No parent user"] = ""; +$a->strings["Parent Password:"] = ""; +$a->strings["Please enter the password of the parent account to legitimize your request."] = ""; +$a->strings["Parent User"] = ""; +$a->strings["Parent users have total control about this account, including the account settings. Please double check whom you give this access."] = ""; +$a->strings["Save Settings"] = "Vista stillingar"; +$a->strings["Delegate Page Management"] = ""; +$a->strings["Delegates"] = ""; +$a->strings["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."] = ""; +$a->strings["Existing Page Delegates"] = ""; +$a->strings["Potential Delegates"] = ""; +$a->strings["Add"] = "Bæta við"; +$a->strings["No entries."] = "Engar færslur."; +$a->strings["Event can not end before it has started."] = ""; +$a->strings["Event title and start time are required."] = ""; +$a->strings["Create New Event"] = "Stofna nýjan atburð"; +$a->strings["Event details"] = "Nánar um atburð"; +$a->strings["Starting date and Title are required."] = ""; +$a->strings["Event Starts:"] = "Atburður hefst:"; +$a->strings["Required"] = "Nauðsynlegt"; +$a->strings["Finish date/time is not known or not relevant"] = "Loka dagsetning/tímasetning ekki vituð eða skiptir ekki máli"; +$a->strings["Event Finishes:"] = "Atburður klárar:"; +$a->strings["Adjust for viewer timezone"] = "Heimfæra á tímabelti áhorfanda"; +$a->strings["Description:"] = "Lýsing:"; +$a->strings["Title:"] = "Titill:"; +$a->strings["Share this event"] = "Deila þessum atburði"; +$a->strings["Basic"] = "Einfalt"; +$a->strings["Failed to remove event"] = ""; +$a->strings["Event removed"] = ""; +$a->strings["You must be logged in to use this module"] = ""; +$a->strings["Source URL"] = "Upprunaslóð"; +$a->strings["Post successful."] = "Melding tókst."; +$a->strings["Subscribing to OStatus contacts"] = ""; +$a->strings["No contact provided."] = "Enginn tengiliður uppgefinn."; +$a->strings["Couldn't fetch information for contact."] = ""; +$a->strings["Couldn't fetch friends for contact."] = ""; +$a->strings["success"] = "tókst"; +$a->strings["failed"] = "mistókst"; +$a->strings["ignored"] = "hunsað"; +$a->strings["Image uploaded but image cropping failed."] = "Tókst að hala upp mynd en afskurður tókst ekki."; +$a->strings["Image size reduction [%s] failed."] = "Myndar minnkun [%s] tókst ekki."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ýta þarf á "; +$a->strings["Unable to process image"] = "Ekki tókst að vinna mynd"; +$a->strings["Upload File:"] = "Hlaða upp skrá:"; +$a->strings["Select a profile:"] = ""; +$a->strings["or"] = "eða"; +$a->strings["skip this step"] = "sleppa þessu skrefi"; +$a->strings["select a photo from your photo albums"] = "velja mynd í myndabókum"; +$a->strings["Crop Image"] = "Skera af mynd"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Stilltu afskurð fyrir besta birtingu."; +$a->strings["Done Editing"] = "Breyting kláruð"; +$a->strings["Image uploaded successfully."] = "Upphölun á mynd tóks."; +$a->strings["Contact wasn't found or can't be unfollowed."] = ""; +$a->strings["Contact unfollowed"] = ""; +$a->strings["Submit Request"] = "Senda beiðni"; +$a->strings["You aren't a friend of this contact."] = ""; +$a->strings["Unfollowing is currently not supported by your network."] = ""; +$a->strings["Your Identity Address:"] = "Auðkennisnetfang þitt:"; +$a->strings["Gender:"] = "Kyn:"; +$a->strings["Status:"] = "Staða:"; +$a->strings["Homepage:"] = "Heimasíða:"; +$a->strings["Global Directory"] = "Alheimstengiliðaskrá"; +$a->strings["Find on this site"] = "Leita á þessum vef"; +$a->strings["Results for:"] = "Niðurstöður fyrir:"; +$a->strings["Site Directory"] = "Skrá yfir tengiliði á þessum vef"; +$a->strings["No entries (some entries may be hidden)."] = "Engar færslur (sumar geta verið faldar)."; +$a->strings["People Search - %s"] = "Leita að fólki - %s"; +$a->strings["Forum Search - %s"] = "Leita á spjallsvæði - %s"; +$a->strings["The contact could not be added."] = ""; +$a->strings["You already added this contact."] = ""; +$a->strings["Diaspora support isn't enabled. Contact can't be added."] = ""; +$a->strings["OStatus support is disabled. Contact can't be added."] = ""; +$a->strings["The network type couldn't be detected. Contact can't be added."] = ""; +$a->strings["Please answer the following:"] = "Vinnsamlegast svaraðu eftirfarandi:"; +$a->strings["Does %s know you?"] = "Þekkir %s þig?"; +$a->strings["Add a personal note:"] = "Bæta við persónulegri athugasemd"; $a->strings["No valid account found."] = "Engin gildur aðgangur fannst."; $a->strings["Password reset request issued. Check your email."] = "Gefin var beiðni um breytingu á lykilorði. Opnaðu tölvupóstinn þinn."; $a->strings["\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."] = ""; @@ -1114,7 +709,7 @@ $a->strings["Request could not be verified. (You may have previously submitted i $a->strings["Request has expired, please make a new one."] = ""; $a->strings["Forgot your Password?"] = "Gleymdir þú lykilorði þínu?"; $a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Sláðu inn tölvupóstfangið þitt til að endurstilla aðgangsorðið og fá leiðbeiningar sendar með tölvupósti."; -$a->strings["Nickname or Email: "] = "Gælunafn eða póstfang: "; +$a->strings["Nickname or Email: "] = "Gælunafn eða tölvupóstfang: "; $a->strings["Reset"] = "Endurstilla"; $a->strings["Password Reset"] = "Endurstilling aðgangsorðs"; $a->strings["Your password has been reset as requested."] = "Aðgangsorðið þitt hefur verið endurstilt."; @@ -1125,29 +720,180 @@ $a->strings["Your password may be changed from the Settings page after $a->strings["\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"] = ""; $a->strings["\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"] = ""; $a->strings["Your password has been changed at %s"] = "Aðgangsorðinu þínu var breytt í %s"; -$a->strings["Registration successful. Please check your email for further instructions."] = "Nýskráning tóks. Frekari fyrirmæli voru send í tölvupósti."; -$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = ""; -$a->strings["Registration successful."] = "Nýskráning tókst."; -$a->strings["Your registration can not be processed."] = "Skráninguna þína er ekki hægt að vinna."; -$a->strings["Your registration is pending approval by the site owner."] = "Skráningin þín bíður samþykkis af eiganda síðunnar."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Þú mátt (valfrjálst) fylla í þetta svæði gegnum OpenID með því gefa upp þitt OpenID og ýta á 'Skrá'."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Ef þú veist ekki hvað OpenID er, skildu þá þetta svæði eftir tómt en fylltu í restin af svæðunum."; -$a->strings["Your OpenID (optional): "] = "Þitt OpenID (valfrjálst):"; -$a->strings["Include your profile in member directory?"] = "Á forsíðan þín að sjást í notendalistanum?"; -$a->strings["Note for the admin"] = ""; -$a->strings["Leave a message for the admin, why you want to join this node"] = ""; -$a->strings["Membership on this site is by invitation only."] = "Aðild að þessum vef er "; -$a->strings["Your invitation code: "] = ""; -$a->strings["Registration"] = "Nýskráning"; -$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = ""; -$a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = ""; -$a->strings["New Password:"] = "Nýtt aðgangsorð:"; -$a->strings["Leave empty for an auto generated password."] = ""; -$a->strings["Confirm:"] = "Staðfesta:"; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@%s'."] = ""; -$a->strings["Choose a nickname: "] = "Veldu gælunafn:"; -$a->strings["Register"] = "Nýskrá"; -$a->strings["Import your profile to this friendica instance"] = ""; +$a->strings["Source input"] = ""; +$a->strings["BBCode::toPlaintext"] = ""; +$a->strings["BBCode::convert (raw HTML)"] = ""; +$a->strings["BBCode::convert"] = ""; +$a->strings["BBCode::convert => HTML::toBBCode"] = ""; +$a->strings["BBCode::toMarkdown"] = ""; +$a->strings["BBCode::toMarkdown => Markdown::convert"] = ""; +$a->strings["BBCode::toMarkdown => Markdown::toBBCode"] = ""; +$a->strings["BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"] = ""; +$a->strings["Source input \\x28Diaspora format\\x29"] = ""; +$a->strings["Markdown::toBBCode"] = "Markdown::toBBCode"; +$a->strings["Raw HTML input"] = "Hrátt HTML-ílag"; +$a->strings["HTML Input"] = "HTML Input"; +$a->strings["HTML::toBBCode"] = "HTML::toBBCode"; +$a->strings["HTML::toPlaintext"] = "HTML::toPlaintext"; +$a->strings["Source text"] = "Frumtexti"; +$a->strings["BBCode"] = "BBCode"; +$a->strings["Markdown"] = "Markdown"; +$a->strings["HTML"] = "HTML"; +$a->strings["Community option not available."] = ""; +$a->strings["Not available."] = "Ekki tiltækt."; +$a->strings["Local Community"] = ""; +$a->strings["Posts from local users on this server"] = ""; +$a->strings["Global Community"] = ""; +$a->strings["Posts from users of the whole federated network"] = ""; +$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = ""; +$a->strings["This is Friendica, version"] = "Þetta er Friendica útgáfa"; +$a->strings["running at web location"] = "Keyrir á slóð"; +$a->strings["Please visit Friendi.ca to learn more about the Friendica project."] = ""; +$a->strings["Bug reports and issues: please visit"] = "Villu tilkynningar og vandamál: endilega skoða"; +$a->strings["the bugtracker at github"] = "villuskráningu á GitHub"; +$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = ""; +$a->strings["Installed addons/apps:"] = ""; +$a->strings["No installed addons/apps"] = ""; +$a->strings["Read about the Terms of Service of this node."] = ""; +$a->strings["On this server the following remote servers are blocked."] = ""; +$a->strings["Blocked domain"] = "Útilokað lén"; +$a->strings["Reason for the block"] = ""; +$a->strings["Total invitation limit exceeded."] = ""; +$a->strings["%s : Not a valid email address."] = "%s : Ekki gilt tölvupóstfang."; +$a->strings["Please join us on Friendica"] = "Komdu í hópinn á Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = ""; +$a->strings["%s : Message delivery failed."] = "%s : Skilaboð komust ekki til skila."; +$a->strings["%d message sent."] = [ + 0 => "%d skilaboð send.", + 1 => "%d skilaboð send", +]; +$a->strings["You have no more invitations available"] = "Þú hefur ekki fleiri boðskort."; +$a->strings["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."] = ""; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = ""; +$a->strings["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."] = ""; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = ""; +$a->strings["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."] = ""; +$a->strings["To accept this invitation, please visit and register at %s."] = ""; +$a->strings["Send invitations"] = "Senda kynningar"; +$a->strings["Enter email addresses, one per line:"] = "Settu inn tölvupóstföng, eitt í hverja línu:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = ""; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Þú þarft að nota eftirfarandi boðskorta auðkenni: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Þegar þú hefur nýskráð þig, hafðu samband við mig gegnum síðuna mína á:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = ""; +$a->strings["add"] = "bæta við"; +$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = [ + 0 => "", + 1 => "", +]; +$a->strings["Messages in this group won't be send to these receivers."] = ""; +$a->strings["No such group"] = "Enginn slíkur hópur"; +$a->strings["Group is empty"] = "Hópur er tómur"; +$a->strings["Group: %s"] = "Hópur: %s"; +$a->strings["Private messages to this person are at risk of public disclosure."] = "Einka skilaboð send á þennan notanda eiga á hættu að verða opinber."; +$a->strings["Invalid contact."] = "Ógildur tengiliður."; +$a->strings["Commented Order"] = "Athugasemdar röð"; +$a->strings["Sort by Comment Date"] = "Raða eftir umræðu dagsetningu"; +$a->strings["Posted Order"] = "Færlsu röð"; +$a->strings["Sort by Post Date"] = "Raða eftir færslu dagsetningu"; +$a->strings["Personal"] = "Einka"; +$a->strings["Posts that mention or involve you"] = "Færslur sem tengjast þér"; +$a->strings["New"] = "Nýtt"; +$a->strings["Activity Stream - by date"] = "Færslu straumur - raðað eftir dagsetningu"; +$a->strings["Shared Links"] = "Sameignartenglar"; +$a->strings["Interesting Links"] = "Áhugaverðir tenglar"; +$a->strings["Starred"] = "Stjörnumerkt"; +$a->strings["Favourite Posts"] = "Uppáhalds færslur"; +$a->strings["Contact settings applied."] = "Stillingar tengiliðs uppfærðar."; +$a->strings["Contact update failed."] = "Uppfærsla tengiliðs mistókst."; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "AÐVÖRUN: Þetta er mjög flókið og ef þú setur inn vitlausar upplýsingar þá munu samskipti við þennan tengilið hætta að virka."; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Notaðu \"Til baka\" hnappinn núna ef þú ert ekki viss um hvað þú eigir að gera á þessari síðu."; +$a->strings["No mirroring"] = ""; +$a->strings["Mirror as forwarded posting"] = ""; +$a->strings["Mirror as my own posting"] = ""; +$a->strings["Return to contact editor"] = "Fara til baka í tengiliðasýsl"; +$a->strings["Refetch contact data"] = ""; +$a->strings["Remote Self"] = ""; +$a->strings["Mirror postings from this contact"] = ""; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = ""; +$a->strings["Name"] = "Nafn"; +$a->strings["Account Nickname"] = "Gælunafn notanda"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@Merkjanafn - yfirskrifar Nafn/Gælunafn"; +$a->strings["Account URL"] = "Heimasíða notanda"; +$a->strings["Friend Request URL"] = "Slóð vinabeiðnar"; +$a->strings["Friend Confirm URL"] = "Slóð vina staðfestingar "; +$a->strings["Notification Endpoint URL"] = "Slóð loka tilkynningar"; +$a->strings["Poll/Feed URL"] = "Slóð á könnun/fréttastraum"; +$a->strings["New photo from this URL"] = "Ný mynd frá slóð"; +$a->strings["%1\$s welcomes %2\$s"] = ""; +$a->strings["Help:"] = "Hjálp:"; +$a->strings["Help"] = "Hjálp"; +$a->strings["Page not found."] = "Síða fannst ekki."; +$a->strings["Friendica Communications Server - Setup"] = ""; +$a->strings["Could not connect to database."] = "Gat ekki tengst gagnagrunn."; +$a->strings["Could not create table."] = "Gat ekki búið til töflu."; +$a->strings["Your Friendica site database has been installed."] = "Friendica gagnagrunnurinn þinn hefur verið uppsettur."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Þú þarft mögulega að keyra inn skránna \"database.sql\" handvirkt með phpmyadmin eða mysql."; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Lestu skrána \"INSTALL.txt\"."; +$a->strings["Database already in use."] = "Gagnagrunnur er þegar í notkun."; +$a->strings["System check"] = "Kerfis prófun"; +$a->strings["Check again"] = "Prófa aftur"; +$a->strings["Database connection"] = "Gangagrunns tenging"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Til að setja upp Friendica þurfum við að vita hvernig á að tengjast gagnagrunninum þínum."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Hafðu samband við hýsingaraðilann þinn eða kerfisstjóra ef þú hefur spurningar varðandi þessar stillingar."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Gagnagrunnurinn sem þú bendir á þarf þegar að vera til. Ef ekki þá þarf að stofna hann áður en haldið er áfram."; +$a->strings["Database Server Name"] = "Vélanafn gagangrunns"; +$a->strings["Database Login Name"] = "Notendanafn í gagnagrunn"; +$a->strings["Database Login Password"] = "Aðgangsorð í gagnagrunns"; +$a->strings["For security reasons the password must not be empty"] = ""; +$a->strings["Database Name"] = "Nafn gagnagrunns"; +$a->strings["Site administrator email address"] = "Tölvupóstfang kerfisstjóra vefsvæðis"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Póstfang aðgangsins þíns verður að passa við þetta til að hægt sé að nota umsýsluvefviðmótið."; +$a->strings["Please select a default timezone for your website"] = "Veldu sjálfgefið tímabelti fyrir vefsíðuna"; +$a->strings["Site settings"] = "Stillingar vefsvæðis"; +$a->strings["System Language:"] = "Tungumál kerfis:"; +$a->strings["Set the default language for your Friendica installation interface and to send emails."] = ""; +$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Ekki tókst að skrifa stillingaskrá gagnagrunns \".htconfig.php\". Notað meðfylgjandi texta til að búa til stillingarskrá í rót vefþjónsins."; +$a->strings["

What next

"] = ""; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = ""; +$a->strings["Go to your new Friendica node registration page 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."] = ""; +$a->strings["New Message"] = "Ný skilaboð"; +$a->strings["Unable to locate contact information."] = "Ekki tókst að staðsetja tengiliðs upplýsingar."; +$a->strings["Messages"] = "Skilaboð"; +$a->strings["Do you really want to delete this message?"] = "Viltu virkilega eyða þessum skilaboðum?"; +$a->strings["Message deleted."] = "Skilaboðum eytt."; +$a->strings["Conversation removed."] = "Samtali eytt."; +$a->strings["No messages."] = "Engin skilaboð."; +$a->strings["Message not available."] = "Ekki næst í skilaboð."; +$a->strings["Delete message"] = "Eyða skilaboðum"; +$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A"; +$a->strings["Delete conversation"] = "Eyða samtali"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = ""; +$a->strings["Send Reply"] = "Senda svar"; +$a->strings["Unknown sender - %s"] = "Óþekktur sendandi - %s"; +$a->strings["You and %s"] = "Þú og %s"; +$a->strings["%s and You"] = "%s og þú"; +$a->strings["%d message"] = [ + 0 => "%d skilaboð", + 1 => "%d skilaboð", +]; +$a->strings["Group created."] = "Hópur stofnaður"; +$a->strings["Could not create group."] = "Gat ekki stofnað hóp."; +$a->strings["Group not found."] = "Hópur fannst ekki."; +$a->strings["Group name changed."] = "Hópur endurskýrður."; +$a->strings["Save Group"] = "Vista hóp"; +$a->strings["Create a group of contacts/friends."] = "Stofna hóp af tengiliðum/vinum"; +$a->strings["Group Name: "] = "Nafn hóps: "; +$a->strings["Group removed."] = "Hópi eytt."; +$a->strings["Unable to remove group."] = "Ekki tókst að eyða hóp."; +$a->strings["Delete Group"] = "Eyða hópi"; +$a->strings["Group Editor"] = "Hópa sýslari"; +$a->strings["Edit Group Name"] = "Breyta nafni hóps"; +$a->strings["Members"] = "Meðlimir"; +$a->strings["Remove contact from group"] = ""; +$a->strings["Add contact to group"] = ""; +$a->strings["OpenID protocol error. No ID returned."] = "Samskiptavilla í OpenID. Ekkert auðkenni barst."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = ""; +$a->strings["Login failed."] = "Innskráning mistókst."; $a->strings["Theme settings updated."] = "Þemastillingar uppfærðar."; $a->strings["Information"] = "Upplýsingar"; $a->strings["Overview"] = "Yfirlit"; @@ -1158,6 +904,7 @@ $a->strings["Users"] = "Notendur"; $a->strings["Addons"] = "Forritsviðbætur"; $a->strings["Themes"] = "Þemu"; $a->strings["Additional features"] = "Viðbótareiginleikar"; +$a->strings["Terms of Service"] = "Þjónustuskilmálar"; $a->strings["Database"] = "Gagnagrunnur"; $a->strings["DB updates"] = "Gagnagrunnsuppfærslur"; $a->strings["Inspect Queue"] = ""; @@ -1179,6 +926,7 @@ $a->strings["Display Terms of Service"] = ""; $a->strings["Enable the Terms of Service page. If this is enabled a link to the terms will be added to the registration form and the general information page."] = ""; $a->strings["Display Privacy Statement"] = ""; $a->strings["Show some informations regarding the needed information to operate the node according e.g. to EU-GDPR."] = ""; +$a->strings["Privacy Statement Preview"] = ""; $a->strings["The Terms of Service"] = ""; $a->strings["Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below."] = ""; $a->strings["The blocked domain"] = ""; @@ -1206,13 +954,14 @@ $a->strings["%s contact unblocked"] = [ ]; $a->strings["Remote Contact Blocklist"] = ""; $a->strings["This page allows you to prevent any message from a remote contact to reach your node."] = ""; -$a->strings["Block Remote Contact"] = ""; +$a->strings["Block Remote Contact"] = "Útiloka fjartengdan tengilið"; $a->strings["select all"] = "velja alla"; $a->strings["select none"] = "velja ekkert"; $a->strings["No remote contact is blocked from this node."] = ""; -$a->strings["Blocked Remote Contacts"] = ""; -$a->strings["Block New Remote Contact"] = ""; +$a->strings["Blocked Remote Contacts"] = "Útilokaðir fjartengdir tengiliðir"; +$a->strings["Block New Remote Contact"] = "Útiloka nýjan fjartengdan tengilið"; $a->strings["Photo"] = "Ljósmynd"; +$a->strings["Address"] = "Heimilisfang"; $a->strings["%s total blocked contact"] = [ 0 => "", 1 => "", @@ -1255,6 +1004,7 @@ $a->strings["Active addons"] = ""; $a->strings["Can not parse base url. Must have at least ://"] = ""; $a->strings["Site settings updated."] = "Stillingar vefsvæðis uppfærðar."; $a->strings["No special theme for mobile devices"] = ""; +$a->strings["No community page for local users"] = ""; $a->strings["No community page"] = ""; $a->strings["Public postings from users of this site"] = ""; $a->strings["Public postings from the federated network"] = ""; @@ -1276,6 +1026,7 @@ $a->strings["Don't check"] = ""; $a->strings["check the stable version"] = ""; $a->strings["check the development version"] = ""; $a->strings["Republish users to directory"] = ""; +$a->strings["Registration"] = "Nýskráning"; $a->strings["File upload"] = "Hlaða upp skrá"; $a->strings["Policies"] = "Stefna"; $a->strings["Auto Discovered Contact Directory"] = ""; @@ -1322,7 +1073,7 @@ $a->strings["Accounts abandoned after x days"] = "Yfirgefnir notendur eftir x da $a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Hættir að eyða afli í að sækja færslur á ytri vefi fyrir yfirgefna notendur. 0 þýðir notendur merkjast ekki yfirgefnir."; $a->strings["Allowed friend domains"] = "Leyfð lén vina"; $a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = ""; -$a->strings["Allowed email domains"] = "Leyfð lén póstfangs"; +$a->strings["Allowed email domains"] = "Leyfð tölvupóstfangalén"; $a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = ""; $a->strings["No OEmbed rich content"] = ""; $a->strings["Don't show the rich content (e.g. embedded PDF), except from the domains listed below."] = ""; @@ -1377,7 +1128,7 @@ $a->strings["Maximum system load before the frontend quits service - default 50. $a->strings["Minimal Memory"] = ""; $a->strings["Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated)."] = ""; $a->strings["Maximum table size for optimization"] = ""; -$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = ""; +$a->strings["Maximum table size (in MB) for the automatic optimization. Enter -1 to disable it."] = ""; $a->strings["Minimum level of fragmentation"] = ""; $a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = ""; $a->strings["Periodical check of global contacts"] = ""; @@ -1396,6 +1147,12 @@ $a->strings["Check upstream version"] = ""; $a->strings["Enables checking for new Friendica versions at github. If there is a new version, you will be informed in the admin panel overview."] = ""; $a->strings["Suppress Tags"] = ""; $a->strings["Suppress showing a list of hashtags at the end of the posting."] = ""; +$a->strings["Clean database"] = ""; +$a->strings["Remove old remote items, orphaned database records and old content from some other helper tables."] = ""; +$a->strings["Lifespan of remote items"] = "Líftími fjartengdra atriða"; +$a->strings["When the database cleanup is enabled, this defines the days after which remote items will be deleted. Own items, and marked or filed items are always kept. 0 disables this behaviour."] = ""; +$a->strings["Lifespan of unclaimed items"] = ""; +$a->strings["When the database cleanup is enabled, this defines the days after which unclaimed remote items (mostly content from the relay) will be deleted. Default value is 90 days. Defaults to the general lifespan value of remote items if set to 0."] = ""; $a->strings["Path to item cache"] = ""; $a->strings["The item caches buffers generated bbcode and external images."] = ""; $a->strings["Cache duration in seconds"] = ""; @@ -1464,17 +1221,27 @@ $a->strings["%s user deleted"] = [ $a->strings["User '%s' deleted"] = "Notanda '%s' eytt"; $a->strings["User '%s' unblocked"] = "Notanda '%s' gefið frelsi"; $a->strings["User '%s' blocked"] = "Notandi '%s' settur í bann"; +$a->strings["Normal Account Page"] = ""; +$a->strings["Soapbox Page"] = ""; +$a->strings["Public Forum"] = ""; +$a->strings["Automatic Friend Page"] = ""; +$a->strings["Private Forum"] = "Einkaspjallsvæði"; +$a->strings["Personal Page"] = ""; +$a->strings["Organisation Page"] = ""; +$a->strings["News Page"] = ""; +$a->strings["Community Forum"] = ""; $a->strings["Email"] = "Tölvupóstur"; $a->strings["Register date"] = "Skráningardagur"; $a->strings["Last login"] = "Síðast innskráður"; $a->strings["Last item"] = "Síðasta atriði"; -$a->strings["Account"] = "Notandi"; +$a->strings["Type"] = "Tegund"; $a->strings["Add User"] = "Bæta við notanda"; $a->strings["User registrations waiting for confirm"] = "Skráning notanda býður samþykkis"; $a->strings["User waiting for permanent deletion"] = ""; $a->strings["Request date"] = "Dagsetning beiðnar"; $a->strings["No registrations."] = "Engin skráning"; $a->strings["Note from the user"] = ""; +$a->strings["Approve"] = "Samþykkja"; $a->strings["Deny"] = "Hafnað"; $a->strings["Site admin"] = "Vefstjóri"; $a->strings["Account expired"] = "Notandaaðgangur útrunninn"; @@ -1517,6 +1284,202 @@ $a->strings["Off"] = "Slökkt"; $a->strings["On"] = "Kveikt"; $a->strings["Lock feature %s"] = ""; $a->strings["Manage Additional Features"] = ""; +$a->strings["Profile not found."] = "Forsíða fannst ekki."; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = ""; +$a->strings["Response from remote site was not understood."] = "Ekki tókst að skilja svar frá fjartengdum vef."; +$a->strings["Unexpected response from remote site: "] = "Óskiljanlegt svar frá fjartengdum vef:"; +$a->strings["Confirmation completed successfully."] = "Staðfesting kláraði eðlilega."; +$a->strings["Temporary failure. Please wait and try again."] = "Tímabundin villa. Bíddu aðeins og reyndu svo aftur."; +$a->strings["Introduction failed or was revoked."] = "Kynning mistókst eða var afturkölluð."; +$a->strings["Remote site reported: "] = "Fjartengdur vefur svaraði:"; +$a->strings["Unable to set contact photo."] = "Ekki tókst að setja tengiliðamynd."; +$a->strings["No user record found for '%s' "] = "Engin notandafærsla fannst fyrir '%s'"; +$a->strings["Our site encryption key is apparently messed up."] = "Dulkóðunnar lykill síðunnar okker er í döðlu."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Tómt slóð var uppgefin eða ekki okkur tókst ekki að afkóða slóð."; +$a->strings["Contact record was not found for you on our site."] = "Tengiliðafærslan þín fannst ekki á þjóninum okkar."; +$a->strings["Site public key not available in contact record for URL %s."] = "Opinber lykill er ekki til í tengiliðafærslu fyrir slóð %s."; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Skilríkið sem þjónninn þinn gaf upp er þegar afritað á okkar þjón. Þetta ætti að virka ef þú bara reynir aftur."; +$a->strings["Unable to set your contact credentials on our system."] = "Ekki tókst að setja tengiliða skilríkið þitt upp á þjóninum okkar."; +$a->strings["Unable to update your contact profile details on our system"] = "Ekki tókst að uppfæra tengiliða skilríkis upplýsingarnar á okkar þjón"; +$a->strings["[Name Withheld]"] = "[Nafn ekki sýnt]"; +$a->strings["This introduction has already been accepted."] = "Þessi kynning hefur þegar verið samþykkt."; +$a->strings["Profile location is not valid or does not contain profile information."] = "Forsíðu slóð er ekki í lagi eða inniheldur ekki forsíðu upplýsingum."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Aðvörun: forsíðu staðsetning hefur ekki aðgreinanlegt eigendanafn."; +$a->strings["Warning: profile location has no profile photo."] = "Aðvörun: forsíðu slóð hefur ekki forsíðu mynd."; +$a->strings["%d required parameter was not found at the given location"] = [ + 0 => "%d skilyrt breyta fannst ekki á uppgefinni staðsetningu", + 1 => "%d skilyrtar breytur fundust ekki á uppgefninni staðsetningu", +]; +$a->strings["Introduction complete."] = "Kynning tilbúinn."; +$a->strings["Unrecoverable protocol error."] = "Alvarleg samskipta villa."; +$a->strings["Profile unavailable."] = "Ekki hægt að sækja forsíðu"; +$a->strings["%s has received too many connection requests today."] = "%s hefur fengið of margar tengibeiðnir í dag."; +$a->strings["Spam protection measures have been invoked."] = "Kveikt hefur verið á ruslsíu"; +$a->strings["Friends are advised to please try again in 24 hours."] = "Vinir eru beðnir um að reyna aftur eftir 24 klukkustundir."; +$a->strings["Invalid locator"] = "Ógild staðsetning"; +$a->strings["You have already introduced yourself here."] = "Kynning hefur þegar átt sér stað hér."; +$a->strings["Apparently you are already friends with %s."] = "Þú ert þegar vinur %s."; +$a->strings["Invalid profile URL."] = "Ógild forsíðu slóð."; +$a->strings["Disallowed profile URL."] = "Óleyfileg forsíðu slóð."; +$a->strings["Your introduction has been sent."] = "Kynningin þín hefur verið send."; +$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = ""; +$a->strings["Please login to confirm introduction."] = "Skráðu þig inn til að staðfesta kynningu."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Ekki réttur notandi skráður inn. Skráðu þig inn sem þessi notandi."; +$a->strings["Confirm"] = "Staðfesta"; +$a->strings["Hide this contact"] = "Fela þennan tengilið"; +$a->strings["Welcome home %s."] = "Velkomin(n) heim %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Staðfestu kynninguna/tengibeiðnina við %s."; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Settu inn 'Auðkennisnetfang' þitt úr einhverjum af eftirfarandi samskiptanetum:"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = ""; +$a->strings["Friend/Connection Request"] = "Vinabeiðni/Tengibeiðni"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"] = ""; +$a->strings["Friendica"] = "Friendica"; +$a->strings["GNU Social (Pleroma, Mastodon)"] = "GNU Social (Pleroma, Mastodon)"; +$a->strings["Diaspora (Socialhome, Hubzilla)"] = "Diaspora (Socialhome, Hubzilla)"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = ""; +$a->strings["Unable to locate original post."] = "Ekki tókst að finna upphaflega færslu."; +$a->strings["Empty post discarded."] = "Tóm færsla eytt."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Skilaboðið sendi %s, notandi á Friendica samfélagsnetinu."; +$a->strings["You may visit them online at %s"] = "Þú getur heimsótt þau á netinu á %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Hafðu samband við sendanda með því að svara á þessari færslu ef þú villt ekki fá þessi skilaboð."; +$a->strings["%s posted an update."] = "%s hefur sent uppfærslu."; +$a->strings["Invalid request identifier."] = "Ógilt auðkenni beiðnar."; +$a->strings["Discard"] = "Henda"; +$a->strings["Notifications"] = "Tilkynningar"; +$a->strings["Network Notifications"] = "Tilkynningar á neti"; +$a->strings["Personal Notifications"] = "Einkatilkynningar."; +$a->strings["Home Notifications"] = "Tilkynningar frá heimasvæði"; +$a->strings["Show Ignored Requests"] = "Sýna hunsaðar beiðnir"; +$a->strings["Hide Ignored Requests"] = "Fela hunsaðar beiðnir"; +$a->strings["Notification type: "] = "Gerð skilaboða: "; +$a->strings["suggested by %s"] = "stungið uppá af %s"; +$a->strings["Claims to be known to you: "] = "Þykist þekkja þig:"; +$a->strings["yes"] = "já"; +$a->strings["no"] = "nei"; +$a->strings["Shall your connection be bidirectional or not?"] = ""; +$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = ""; +$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = ""; +$a->strings["Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = ""; +$a->strings["Friend"] = "Vin"; +$a->strings["Sharer"] = "Deilir"; +$a->strings["Subscriber"] = "Áskrifandi"; +$a->strings["No introductions."] = "Engar kynningar."; +$a->strings["Show unread"] = "Birta ólesið"; +$a->strings["Show all"] = "Birta allt"; +$a->strings["No more %s notifications."] = "Ekki fleiri %s tilkynningar."; +$a->strings["Requested profile is not available."] = "Umbeðin forsíða ekki til."; +$a->strings["%s's timeline"] = "Tímalína fyrir %s"; +$a->strings["%s's posts"] = "Færslur frá %s"; +$a->strings["%s's comments"] = "Athugasemdir frá %s"; +$a->strings["Tips for New Members"] = "Ábendingar fyrir nýja notendur"; +$a->strings["Profile deleted."] = "Forsíðu eytt."; +$a->strings["Profile-"] = "Forsíða-"; +$a->strings["New profile created."] = "Ný forsíða búinn til."; +$a->strings["Profile unavailable to clone."] = "Ekki tókst að klóna forsíðu"; +$a->strings["Profile Name is required."] = "Nafn á forsíðu er skilyrði"; +$a->strings["Marital Status"] = "Hjúskaparstaða"; +$a->strings["Romantic Partner"] = ""; +$a->strings["Work/Employment"] = "Atvinna/Starf"; +$a->strings["Religion"] = "Trúarbrögð"; +$a->strings["Political Views"] = "Stórnmálaskoðanir"; +$a->strings["Gender"] = "Kyn"; +$a->strings["Sexual Preference"] = "Kynhneigð"; +$a->strings["XMPP"] = "XMPP"; +$a->strings["Homepage"] = "Heimasíða"; +$a->strings["Interests"] = "Áhugamál"; +$a->strings["Location"] = "Staðsetning"; +$a->strings["Profile updated."] = "Forsíða uppfærð."; +$a->strings["Hide contacts and friends:"] = "Fela tengiliði og vini"; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Fela tengiliða-/vinalista á þessari forsíðu?"; +$a->strings["Show more profile fields:"] = ""; +$a->strings["Profile Actions"] = ""; +$a->strings["Edit Profile Details"] = "Breyta forsíðu upplýsingum"; +$a->strings["Change Profile Photo"] = "Breyta forsíðumynd"; +$a->strings["View this profile"] = "Skoða þessa forsíðu"; +$a->strings["Edit visibility"] = "Sýsla með sýnileika"; +$a->strings["Create a new profile using these settings"] = "Búa til nýja forsíðu með þessum stillingum"; +$a->strings["Clone this profile"] = "Klóna þessa forsíðu"; +$a->strings["Delete this profile"] = "Eyða þessari forsíðu"; +$a->strings["Basic information"] = "Grunnupplýsingar"; +$a->strings["Profile picture"] = "Notandamynd"; +$a->strings["Preferences"] = "Kjörstillingar"; +$a->strings["Status information"] = ""; +$a->strings["Additional information"] = "Viðbótarupplýsingar"; +$a->strings["Relation"] = "Vensl"; +$a->strings["Miscellaneous"] = "Ýmislegt"; +$a->strings["Your Gender:"] = "Kyn:"; +$a->strings[" Marital Status:"] = " Hjúskaparstaða:"; +$a->strings["Sexual Preference:"] = "Kynhneigð:"; +$a->strings["Example: fishing photography software"] = "Til dæmis: fishing photography software"; +$a->strings["Profile Name:"] = "Forsíðu nafn:"; +$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Þetta er opinber forsíða.
Hún verður sjáanleg öðrum sem nota alnetið."; +$a->strings["Your Full Name:"] = "Fullt nafn:"; +$a->strings["Title/Description:"] = "Starfsheiti/Lýsing:"; +$a->strings["Street Address:"] = "Gata:"; +$a->strings["Locality/City:"] = "Bær/Borg:"; +$a->strings["Region/State:"] = "Svæði/Sýsla"; +$a->strings["Postal/Zip Code:"] = "Póstnúmer:"; +$a->strings["Country:"] = "Land:"; +$a->strings["Age: "] = "Aldur: "; +$a->strings["Who: (if applicable)"] = "Hver: (ef við á)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Dæmi: cathy123, Cathy Williams, cathy@example.com"; +$a->strings["Since [date]:"] = "Síðan [date]:"; +$a->strings["Tell us about yourself..."] = "Segðu okkur frá sjálfum þér..."; +$a->strings["XMPP (Jabber) address:"] = "XMPP (Jabber) vistfang:"; +$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = ""; +$a->strings["Homepage URL:"] = "Slóð heimasíðu:"; +$a->strings["Hometown:"] = "Heimabær:"; +$a->strings["Political Views:"] = "Stórnmálaskoðanir:"; +$a->strings["Religious Views:"] = "Trúarskoðanir"; +$a->strings["Public Keywords:"] = "Opinber leitarorð:"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Notað til að stinga uppá mögulegum vinum, aðrir geta séð)"; +$a->strings["Private Keywords:"] = "Einka leitarorð:"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Notað við leit að öðrum notendum, aldrei sýnt öðrum)"; +$a->strings["Likes:"] = "Líkar:"; +$a->strings["Dislikes:"] = "Mislíkar:"; +$a->strings["Musical interests"] = "Tónlistarsmekkur"; +$a->strings["Books, literature"] = "Bækur, bókmenntir"; +$a->strings["Television"] = "Sjónvarp"; +$a->strings["Film/dance/culture/entertainment"] = "Kvikmyndir/dans/menning/afþreying"; +$a->strings["Hobbies/Interests"] = "Áhugamál"; +$a->strings["Love/romance"] = "Ást/rómantík"; +$a->strings["Work/employment"] = "Atvinna:"; +$a->strings["School/education"] = "Skóli/menntun"; +$a->strings["Contact information and Social Networks"] = "Tengiliðaupplýsingar og samfélagsnet"; +$a->strings["Profile Image"] = "Forsíðumynd"; +$a->strings["visible to everybody"] = "sýnilegt öllum"; +$a->strings["Edit/Manage Profiles"] = "Sýsla með forsíður"; +$a->strings["Change profile photo"] = "Breyta forsíðumynd"; +$a->strings["Create New Profile"] = "Stofna nýja forsíðu"; +$a->strings["Registration successful. Please check your email for further instructions."] = "Nýskráning tóks. Frekari fyrirmæli voru send í tölvupósti."; +$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = ""; +$a->strings["Registration successful."] = "Nýskráning tókst."; +$a->strings["Your registration can not be processed."] = "Skráninguna þína er ekki hægt að vinna."; +$a->strings["Your registration is pending approval by the site owner."] = "Skráningin þín bíður samþykkis af eiganda síðunnar."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Þú mátt (valfrjálst) fylla í þetta svæði gegnum OpenID með því gefa upp þitt OpenID og ýta á 'Skrá'."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Ef þú veist ekki hvað OpenID er, skildu þá þetta svæði eftir tómt en fylltu í restin af svæðunum."; +$a->strings["Your OpenID (optional): "] = "Þitt OpenID (valfrjálst):"; +$a->strings["Include your profile in member directory?"] = "Á forsíðan þín að sjást í notendalistanum?"; +$a->strings["Note for the admin"] = ""; +$a->strings["Leave a message for the admin, why you want to join this node"] = ""; +$a->strings["Membership on this site is by invitation only."] = "Aðild að þessum vef er "; +$a->strings["Your invitation code: "] = ""; +$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = ""; +$a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = ""; +$a->strings["New Password:"] = "Nýtt aðgangsorð:"; +$a->strings["Leave empty for an auto generated password."] = ""; +$a->strings["Confirm:"] = "Staðfesta:"; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@%s'."] = ""; +$a->strings["Choose a nickname: "] = "Veldu gælunafn:"; +$a->strings["Register"] = "Nýskrá"; +$a->strings["Import your profile to this friendica instance"] = ""; +$a->strings["User deleted their account"] = ""; +$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = ""; +$a->strings["The user id is %d"] = ""; +$a->strings["Remove My Account"] = "Eyða þessum notanda"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Þetta mun algjörlega eyða notandanum. Þegar þetta hefur verið gert er þetta ekki afturkræft."; +$a->strings["Please enter your password for verification:"] = "Sláðu inn aðgangsorð yðar:"; +$a->strings["Account"] = "Notandi"; $a->strings["Display"] = "Birting"; $a->strings["Social Networks"] = "Samfélagsnet"; $a->strings["Delegations"] = ""; @@ -1554,7 +1517,7 @@ $a->strings["No name"] = "Ekkert nafn"; $a->strings["Remove authorization"] = "Fjarlæga auðkenningu"; $a->strings["No Addon settings configured"] = ""; $a->strings["Addon Settings"] = ""; -$a->strings["Additional Features"] = ""; +$a->strings["Additional Features"] = "Viðbótareiginleikar"; $a->strings["Diaspora"] = "Diaspora"; $a->strings["enabled"] = "kveikt"; $a->strings["disabled"] = "slökkt"; @@ -1573,8 +1536,8 @@ $a->strings["Your legacy GNU Social account"] = ""; $a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = ""; $a->strings["Repair OStatus subscriptions"] = ""; $a->strings["Email/Mailbox Setup"] = "Tölvupóstur stilling"; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Ef þú villt hafa samskipti við tölvupósts tengiliði með þessari þjónustu (valfrjálst), skilgreindu þá hvernig á að tengjast póstfanginu þínu."; -$a->strings["Last successful email check:"] = "Póstfang sannreynt síðast:"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Ef þú villt hafa samskipti við tölvupóststengiliði með þessari þjónustu (valfrjálst), skilgreindu þá hvernig á að tengjast póstfanginu þínu."; +$a->strings["Last successful email check:"] = "Síðasta prófun á tölvupóstfangi:"; $a->strings["IMAP server name:"] = "IMAP þjónn:"; $a->strings["IMAP port:"] = "IMAP port:"; $a->strings["Security:"] = "Öryggi:"; @@ -1599,10 +1562,10 @@ $a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = ""; $a->strings["Number of items to display per page:"] = ""; $a->strings["Maximum of 100 items"] = ""; $a->strings["Number of items to display per page when viewed from mobile device:"] = ""; -$a->strings["Don't show emoticons"] = ""; +$a->strings["Don't show emoticons"] = "Ekki birta tjáningartákn"; $a->strings["Calendar"] = "Dagatal"; $a->strings["Beginning of week:"] = "Upphaf viku:"; -$a->strings["Don't show notices"] = ""; +$a->strings["Don't show notices"] = "Ekki birta tilkynningar"; $a->strings["Infinite scroll"] = ""; $a->strings["Automatic updates only at the top of the network page"] = ""; $a->strings["When disabled, the network page is updated all the time, which could be confusing while reading."] = ""; @@ -1618,21 +1581,13 @@ $a->strings["Unable to find your profile. Please contact your admin."] = ""; $a->strings["Account Types"] = "Gerðir notendaaðganga"; $a->strings["Personal Page Subtypes"] = ""; $a->strings["Community Forum Subtypes"] = ""; -$a->strings["Personal Page"] = ""; $a->strings["Account for a personal profile."] = ""; -$a->strings["Organisation Page"] = ""; $a->strings["Account for an organisation that automatically approves contact requests as \"Followers\"."] = ""; -$a->strings["News Page"] = ""; $a->strings["Account for a news reflector that automatically approves contact requests as \"Followers\"."] = ""; -$a->strings["Community Forum"] = ""; $a->strings["Account for community discussions."] = ""; -$a->strings["Normal Account Page"] = ""; $a->strings["Account for a regular personal profile that requires manual approval of \"Friends\" and \"Followers\"."] = ""; -$a->strings["Soapbox Page"] = ""; $a->strings["Account for a public profile that automatically approves contact requests as \"Followers\"."] = ""; -$a->strings["Public Forum"] = ""; $a->strings["Automatically approves all contact requests."] = ""; -$a->strings["Automatic Friend Page"] = ""; $a->strings["Account for a popular profile that automatically approves contact requests as \"Friends\"."] = ""; $a->strings["Private Forum [Experimental]"] = "Einkaspjallsvæði [á tilraunastigi]"; $a->strings["Requires manual approval of contact requests."] = ""; @@ -1673,7 +1628,7 @@ $a->strings["Your current password to confirm the changes"] = ""; $a->strings["Password:"] = "Lykilorð:"; $a->strings["Basic Settings"] = "Grunnstillingar"; $a->strings["Full Name:"] = "Fullt nafn:"; -$a->strings["Email Address:"] = "Póstfang:"; +$a->strings["Email Address:"] = "Tölvupóstfang:"; $a->strings["Your Timezone:"] = "Þitt tímabelti:"; $a->strings["Your Language:"] = "Tungumálið þitt:"; $a->strings["Set the language we use to show you friendica interface and to send you emails"] = ""; @@ -1684,24 +1639,20 @@ $a->strings["Maximum Friend Requests/Day:"] = "Hámarks vinabeiðnir á dag:"; $a->strings["(to prevent spam abuse)"] = "(til að koma í veg fyrir rusl misnotkun)"; $a->strings["Default Post Permissions"] = "Sjálfgefnar aðgangstýring á færslum"; $a->strings["(click to open/close)"] = "(ýttu á til að opna/loka)"; -$a->strings["Default Private Post"] = ""; -$a->strings["Default Public Post"] = ""; -$a->strings["Default Permissions for New Posts"] = ""; +$a->strings["Default Private Post"] = "Sjálfgefin einkafærsla"; +$a->strings["Default Public Post"] = "Sjálfgefin opinber færsla"; +$a->strings["Default Permissions for New Posts"] = "Sjálfgefnar heimildir á nýjum færslum"; $a->strings["Maximum private messages per day from unknown people:"] = ""; $a->strings["Notification Settings"] = "Stillingar á tilkynningum"; -$a->strings["By default post a status message when:"] = ""; -$a->strings["accepting a friend request"] = "samþykki vinabeiðni"; -$a->strings["joining a forum/community"] = "ganga til liðs við hóp/samfélag"; -$a->strings["making an interesting profile change"] = ""; -$a->strings["Send a notification email when:"] = "Senda tilkynninga tölvupóst þegar:"; +$a->strings["Send a notification email when:"] = "Senda tilkynningapóst þegar:"; $a->strings["You receive an introduction"] = "Þú færð kynningu"; $a->strings["Your introductions are confirmed"] = "Kynningarnar þínar eru samþykktar"; -$a->strings["Someone writes on your profile wall"] = "Einhver skrifar á vegginn þínn"; +$a->strings["Someone writes on your profile wall"] = "Einhver skrifar á vegginn þinn"; $a->strings["Someone writes a followup comment"] = "Einhver skrifar athugasemd á færslu hjá þér"; $a->strings["You receive a private message"] = "Þú færð einkaskilaboð"; $a->strings["You receive a friend suggestion"] = "Þér hefur borist vina uppástunga"; $a->strings["You are tagged in a post"] = "Þú varst merkt(ur) í færslu"; -$a->strings["You are poked/prodded/etc. in a post"] = ""; +$a->strings["You are poked/prodded/etc. in a post"] = "Það var potað/ýtt/o.s.frv. við þér í færslu"; $a->strings["Activate desktop notifications"] = ""; $a->strings["Show desktop popup on new notifications"] = ""; $a->strings["Text-only notification emails"] = ""; @@ -1710,9 +1661,79 @@ $a->strings["Show detailled notifications"] = ""; $a->strings["Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed."] = ""; $a->strings["Advanced Account/Page Type Settings"] = ""; $a->strings["Change the behaviour of this account for special situations"] = ""; -$a->strings["Relocate"] = ""; +$a->strings["Relocate"] = "Endurstaðsetja"; $a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = ""; $a->strings["Resend relocate message to contacts"] = ""; +$a->strings["default"] = "sjálfgefið"; +$a->strings["greenzero"] = ""; +$a->strings["purplezero"] = ""; +$a->strings["easterbunny"] = ""; +$a->strings["darkzero"] = ""; +$a->strings["comix"] = ""; +$a->strings["slackr"] = ""; +$a->strings["Variations"] = "Tilbrigði"; +$a->strings["Top Banner"] = "Borði efst"; +$a->strings["Resize image to the width of the screen and show background color below on long pages."] = ""; +$a->strings["Full screen"] = "Skjáfylli"; +$a->strings["Resize image to fill entire screen, clipping either the right or the bottom."] = ""; +$a->strings["Single row mosaic"] = ""; +$a->strings["Resize image to repeat it on a single row, either vertical or horizontal."] = ""; +$a->strings["Mosaic"] = "Mósaík"; +$a->strings["Repeat image to fill the screen."] = ""; +$a->strings["Custom"] = "Sérsniðið"; +$a->strings["Note"] = "Minnispunktur"; +$a->strings["Check image permissions if all users are allowed to see the image"] = ""; +$a->strings["Select color scheme"] = "Veldu litastef"; +$a->strings["Navigation bar background color"] = ""; +$a->strings["Navigation bar icon color "] = ""; +$a->strings["Link color"] = "Litur tengils"; +$a->strings["Set the background color"] = "Stilltu bakgrunnslit"; +$a->strings["Content background opacity"] = ""; +$a->strings["Set the background image"] = ""; +$a->strings["Background image style"] = "Stíll bakgrunnsmyndar"; +$a->strings["Login page background image"] = ""; +$a->strings["Login page background color"] = ""; +$a->strings["Leave background image and color empty for theme defaults"] = ""; +$a->strings["Guest"] = "Gestur"; +$a->strings["Visitor"] = "Í heimsókn"; +$a->strings["Logout"] = "Útskráning"; +$a->strings["End this session"] = "Loka þessu innliti"; +$a->strings["Your posts and conversations"] = "Samtölin þín"; +$a->strings["Your profile page"] = "Forsíðan þín"; +$a->strings["Your photos"] = "Myndirnar þínar"; +$a->strings["Videos"] = "Myndskeið"; +$a->strings["Your videos"] = "Myndskeiðin þín"; +$a->strings["Your events"] = "Atburðirnir þínir"; +$a->strings["Conversations from your friends"] = "Samtöl frá vinum"; +$a->strings["Events and Calendar"] = "Atburðir og dagskrá"; +$a->strings["Private mail"] = "Einka skilaboð"; +$a->strings["Account settings"] = "Stillingar aðgangsreiknings"; +$a->strings["Manage/edit friends and contacts"] = "Sýsla með vini og tengiliði"; +$a->strings["Alignment"] = "Hliðjöfnun"; +$a->strings["Left"] = "Vinstri"; +$a->strings["Center"] = "Miðjað"; +$a->strings["Color scheme"] = "Litastef"; +$a->strings["Posts font size"] = "Leturstærð færslna"; +$a->strings["Textareas font size"] = "Leturstærð textareita"; +$a->strings["Comma separated list of helper forums"] = ""; +$a->strings["don't show"] = "fela"; +$a->strings["show"] = "sýna"; +$a->strings["Set style"] = "Setja stíl"; +$a->strings["Community Pages"] = "Síður samfélagsins"; +$a->strings["Community Profiles"] = "Forsíður samfélagsins"; +$a->strings["Help or @NewHere ?"] = "Hjálp eða @NýrHér ?"; +$a->strings["Connect Services"] = "Tengja þjónustur"; +$a->strings["Find Friends"] = "Finna vini"; +$a->strings["Last users"] = "Nýjustu notendurnir"; +$a->strings["Find People"] = "Finna fólk"; +$a->strings["Enter name or interest"] = "Settu inn nafn eða áhugamál"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Dæmi: Jón Jónsson, Veiði"; +$a->strings["Similar Interests"] = "Svipuð áhugamál"; +$a->strings["Random Profile"] = "Forsíða af handahófi"; +$a->strings["Invite Friends"] = "Bjóða vinum aðgang"; +$a->strings["Local Directory"] = "Staðvær mappa"; +$a->strings["External link to forum"] = "Ytri tengill á spjallsvæði"; +$a->strings["Quick Start"] = ""; $a->strings["Error decoding account file"] = ""; $a->strings["Error! No version data in file! This is not a Friendica account file?"] = ""; $a->strings["User '%s' already exists on this server!"] = ""; @@ -1723,6 +1744,15 @@ $a->strings["%d contact not imported"] = [ 1 => "", ]; $a->strings["Done. You can now login with your username and password"] = ""; +$a->strings["Post to Email"] = "Senda skilaboð á tölvupóst"; +$a->strings["Hide your profile details from unknown viewers?"] = "Fela forsíðuupplýsingar fyrir óþekktum?"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; +$a->strings["Visible to everybody"] = "Sjáanlegt öllum"; +$a->strings["Close"] = "Loka"; +$a->strings["Enter new password: "] = "Settu inn nýtt lykilorð: "; +$a->strings["Password can't be empty"] = "Lykilorð getur ekki verið autt"; +$a->strings["Could not find any unarchived contact entry for this URL (%s)"] = ""; +$a->strings["The contact entries have been archived"] = ""; $a->strings["System"] = "Kerfi"; $a->strings["Home"] = "Heim"; $a->strings["Introductions"] = "Kynningar"; @@ -1737,13 +1767,55 @@ $a->strings["%s is now friends with %s"] = "%s er nú vinur %s"; $a->strings["Friend Suggestion"] = "Vina tillaga"; $a->strings["Friend/Connect Request"] = "Vinabeiðni/Tengibeiðni"; $a->strings["New Follower"] = "Nýr fylgjandi"; -$a->strings["Post to Email"] = "Senda skilaboð á tölvupóst"; -$a->strings["Hide your profile details from unknown viewers?"] = "Fela forsíðuupplýsingar fyrir óþekktum?"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; -$a->strings["Visible to everybody"] = "Sjáanlegt öllum"; -$a->strings["show"] = "sýna"; -$a->strings["don't show"] = "fela"; -$a->strings["Close"] = "Loka"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Gat ekki fundið skipanalínu útgáfu af PHP í vefþjóns PATH."; +$a->strings["If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See 'Setup the worker'"] = ""; +$a->strings["PHP executable path"] = "PHP keyrslu slóð"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = ""; +$a->strings["Command line PHP"] = "Skipanalínu PHP"; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = ""; +$a->strings["Found PHP version: "] = "Fann PHP útgáfu: "; +$a->strings["PHP cli binary"] = ""; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Skipanalínu útgáfa af PHP á vefþjóninum hefur ekki kveikt á \"register_argc_argv\"."; +$a->strings["This is required for message delivery to work."] = "Þetta er skilyrt fyrir því að skilaboð komist til skila."; +$a->strings["PHP register_argc_argv"] = ""; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Villa: Stefjan \"openssl_pkey_new\" á vefþjóninum getur ekki stofnað dulkóðunar lykla"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Ef keyrt er á Window, skoðaðu þá \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "Búa til dulkóðunar lykla"; +$a->strings["libCurl PHP module"] = "libCurl PHP eining"; +$a->strings["GD graphics PHP module"] = "GD graphics PHP eining"; +$a->strings["OpenSSL PHP module"] = "OpenSSL PHP eining"; +$a->strings["PDO or MySQLi PHP module"] = ""; +$a->strings["mb_string PHP module"] = "mb_string PHP eining"; +$a->strings["XML PHP module"] = ""; +$a->strings["iconv PHP module"] = ""; +$a->strings["POSIX PHP module"] = ""; +$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite eining"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Villa: Apache vefþjóns eining mod-rewrite er skilyrði og er ekki uppsett. "; +$a->strings["Error: libCURL PHP module required but not installed."] = "Villa: libCurl PHP eining er skilyrði og er ekki uppsett."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Villa: GD graphics PHP eining með JPEG stuðningi er skilyrði og er ekki uppsett."; +$a->strings["Error: openssl PHP module required but not installed."] = "Villa: openssl PHP eining skilyrði og er ekki uppsett."; +$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = ""; +$a->strings["Error: The MySQL driver for PDO is not installed."] = ""; +$a->strings["Error: mb_string PHP module required but not installed."] = "Villa: mb_string PHP eining skilyrði en ekki uppsett."; +$a->strings["Error: iconv PHP module required but not installed."] = ""; +$a->strings["Error: POSIX PHP module required but not installed."] = ""; +$a->strings["Error, XML PHP module required but not installed."] = ""; +$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Vef uppsetningar forrit þarf að geta stofnað skránna \".htconfig.php\" in efsta skráarsafninu á vefþjóninum og það getur ekki gert það."; +$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Þetta er oftast aðgangsstýringa stilling, þar sem vefþjónninn getur ekki skrifað út skrár í skráarsafnið - þó þú getir það."; +$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = ""; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = ""; +$a->strings[".htconfig.php is writable"] = ".htconfig.php er skrifanleg"; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = ""; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = ""; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = ""; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = ""; +$a->strings["view/smarty3 is writable"] = ""; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = ""; +$a->strings["Error message from Curl when fetching"] = ""; +$a->strings["Url rewrite is working"] = ""; +$a->strings["ImageMagick PHP extension is not installed"] = ""; +$a->strings["ImageMagick PHP extension is installed"] = ""; +$a->strings["ImageMagick supports GIF"] = ""; $a->strings["Birthday:"] = "Afmælisdagur:"; $a->strings["YYYY-MM-DD or MM-DD"] = "ÁÁÁÁ-MM-DD eða MM-DD"; $a->strings["never"] = "aldrei"; @@ -1767,136 +1839,18 @@ $a->strings["$1 wrote:"] = "$1 skrifaði:"; $a->strings["Encrypted content"] = "Dulritað efni"; $a->strings["Invalid source protocol"] = ""; $a->strings["Invalid link protocol"] = ""; -$a->strings["External link to forum"] = "Ytri tengill á spjallsvæði"; -$a->strings["Nothing new here"] = "Ekkert nýtt hér"; -$a->strings["Clear notifications"] = "Hreinsa tilkynningar"; -$a->strings["Logout"] = "Útskráning"; -$a->strings["End this session"] = "Loka þessu innliti"; -$a->strings["Your posts and conversations"] = "Samtölin þín"; -$a->strings["Your profile page"] = "Forsíðan þín"; -$a->strings["Your photos"] = "Myndirnar þínar"; -$a->strings["Videos"] = "Myndskeið"; -$a->strings["Your videos"] = "Myndskeiðin þín"; -$a->strings["Your events"] = "Atburðirnir þínir"; -$a->strings["Personal notes"] = "Einkaglósur"; -$a->strings["Your personal notes"] = "Einkaglósurnar þínar"; -$a->strings["Sign in"] = "Innskrá"; -$a->strings["Home Page"] = "Heimasíða"; -$a->strings["Create an account"] = "Stofna notanda"; -$a->strings["Help and documentation"] = "Hjálp og leiðbeiningar"; -$a->strings["Apps"] = "Forrit"; -$a->strings["Addon applications, utilities, games"] = "Viðbótarforrit, nytjatól, leikir"; -$a->strings["Search site content"] = "Leita í efni á vef"; -$a->strings["Community"] = "Samfélag"; -$a->strings["Conversations on this and other servers"] = ""; -$a->strings["Events and Calendar"] = "Atburðir og dagskrá"; -$a->strings["Directory"] = "Mappa"; -$a->strings["People directory"] = "Nafnaskrá"; -$a->strings["Information about this friendica instance"] = "Upplýsingar um þetta tilvik Friendica"; -$a->strings["Conversations from your friends"] = "Samtöl frá vinum"; -$a->strings["Network Reset"] = "Núllstilling netkerfis"; -$a->strings["Load Network page with no filters"] = ""; -$a->strings["Friend Requests"] = "Vinabeiðnir"; -$a->strings["See all notifications"] = "Sjá allar tilkynningar"; -$a->strings["Mark all system notifications seen"] = "Merkja allar tilkynningar sem séðar"; -$a->strings["Private mail"] = "Einka skilaboð"; -$a->strings["Inbox"] = "Innhólf"; -$a->strings["Outbox"] = "Úthólf"; -$a->strings["Manage"] = "Umsýsla"; -$a->strings["Manage other pages"] = "Sýsla með aðrar síður"; -$a->strings["Account settings"] = "Stillingar aðgangsreiknings"; -$a->strings["Profiles"] = "Forsíður"; -$a->strings["Manage/Edit Profiles"] = "Sýsla með forsíður"; -$a->strings["Manage/edit friends and contacts"] = "Sýsla með vini og tengiliði"; -$a->strings["Site setup and configuration"] = "Uppsetning og stillingar vefsvæðis"; -$a->strings["Navigation"] = "Yfirsýn"; -$a->strings["Site map"] = "Yfirlit um vefsvæði"; $a->strings["Embedding disabled"] = "Innfelling ekki leyfð"; $a->strings["Embedded content"] = "Innbyggt efni"; $a->strings["Export"] = "Flytja út"; $a->strings["Export calendar as ical"] = "Flytja dagatal út sem ICAL"; $a->strings["Export calendar as csv"] = "Flytja dagatal út sem CSV"; -$a->strings["General Features"] = "Almennir eiginleikar"; -$a->strings["Multiple Profiles"] = ""; -$a->strings["Ability to create multiple profiles"] = ""; -$a->strings["Photo Location"] = "Staðsetning ljósmyndar"; -$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = ""; -$a->strings["Export Public Calendar"] = "Flytja út opinbert dagatal"; -$a->strings["Ability for visitors to download the public calendar"] = ""; -$a->strings["Post Composition Features"] = ""; -$a->strings["Post Preview"] = ""; -$a->strings["Allow previewing posts and comments before publishing them"] = ""; -$a->strings["Auto-mention Forums"] = ""; -$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = ""; -$a->strings["Network Sidebar Widgets"] = ""; -$a->strings["Search by Date"] = "Leita eftir dagsetningu"; -$a->strings["Ability to select posts by date ranges"] = ""; -$a->strings["List Forums"] = "Spjallsvæðalistar"; -$a->strings["Enable widget to display the forums your are connected with"] = ""; -$a->strings["Group Filter"] = ""; -$a->strings["Enable widget to display Network posts only from selected group"] = ""; -$a->strings["Network Filter"] = ""; -$a->strings["Enable widget to display Network posts only from selected network"] = ""; -$a->strings["Save search terms for re-use"] = ""; -$a->strings["Network Tabs"] = ""; -$a->strings["Network Personal Tab"] = ""; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = ""; -$a->strings["Network New Tab"] = ""; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = ""; -$a->strings["Network Shared Links Tab"] = ""; -$a->strings["Enable tab to display only Network posts with links in them"] = ""; -$a->strings["Post/Comment Tools"] = ""; -$a->strings["Multiple Deletion"] = ""; -$a->strings["Select and delete multiple posts/comments at once"] = ""; -$a->strings["Edit Sent Posts"] = ""; -$a->strings["Edit and correct posts and comments after sending"] = ""; -$a->strings["Tagging"] = ""; -$a->strings["Ability to tag existing posts"] = ""; -$a->strings["Post Categories"] = ""; -$a->strings["Add categories to your posts"] = ""; -$a->strings["Saved Folders"] = "Vistaðar möppur"; -$a->strings["Ability to file posts under folders"] = ""; -$a->strings["Dislike Posts"] = ""; -$a->strings["Ability to dislike posts/comments"] = ""; -$a->strings["Star Posts"] = ""; -$a->strings["Ability to mark special posts with a star indicator"] = ""; -$a->strings["Mute Post Notifications"] = ""; -$a->strings["Ability to mute notifications for a thread"] = ""; -$a->strings["Advanced Profile Settings"] = ""; -$a->strings["Show visitors public community forums at the Advanced Profile Page"] = ""; -$a->strings["Tag Cloud"] = ""; -$a->strings["Provide a personal tag cloud on your profile page"] = ""; -$a->strings["Display Membership Date"] = ""; -$a->strings["Display membership date in profile"] = ""; -$a->strings["Add New Contact"] = "Bæta við tengilið"; -$a->strings["Enter address or web location"] = "Settu inn slóð"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Dæmi: gudmundur@simnet.is, http://simnet.is/gudmundur"; -$a->strings["%d invitation available"] = [ - 0 => "%d boðskort í boði", - 1 => "%d boðskort í boði", -]; -$a->strings["Find People"] = "Finna fólk"; -$a->strings["Enter name or interest"] = "Settu inn nafn eða áhugamál"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Dæmi: Jón Jónsson, Veiði"; -$a->strings["Similar Interests"] = "Svipuð áhugamál"; -$a->strings["Random Profile"] = ""; -$a->strings["Invite Friends"] = "Bjóða vinum aðgang"; -$a->strings["View Global Directory"] = ""; -$a->strings["Networks"] = "Net"; -$a->strings["All Networks"] = "Öll net"; -$a->strings["Everything"] = "Allt"; -$a->strings["Categories"] = "Flokkar"; -$a->strings["%d contact in common"] = [ - 0 => "%d tengiliður sameiginlegur", - 1 => "%d tengiliðir sameiginlegir", -]; $a->strings["Frequently"] = "Oft"; $a->strings["Hourly"] = "Á klukkustundar fresti"; $a->strings["Twice daily"] = "Tvisvar á dag"; $a->strings["Daily"] = "Daglega"; $a->strings["Weekly"] = "Vikulega"; $a->strings["Monthly"] = "Mánaðarlega"; -$a->strings["OStatus"] = ""; +$a->strings["OStatus"] = "OStatus"; $a->strings["RSS/Atom"] = "RSS / Atom"; $a->strings["Facebook"] = "Facebook"; $a->strings["Zot!"] = "Zot!"; @@ -1967,14 +1921,133 @@ $a->strings["Uncertain"] = "Óviss"; $a->strings["It's complicated"] = "Þetta er flókið"; $a->strings["Don't care"] = "Gæti ekki verið meira sama"; $a->strings["Ask me"] = "Spurðu mig"; +$a->strings["Add New Contact"] = "Bæta við tengilið"; +$a->strings["Enter address or web location"] = "Settu inn slóð"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Dæmi: gudmundur@simnet.is, http://simnet.is/gudmundur"; +$a->strings["%d invitation available"] = [ + 0 => "%d boðskort í boði", + 1 => "%d boðskort í boði", +]; +$a->strings["Networks"] = "Net"; +$a->strings["All Networks"] = "Öll net"; +$a->strings["Saved Folders"] = "Vistaðar möppur"; +$a->strings["Everything"] = "Allt"; +$a->strings["Categories"] = "Flokkar"; +$a->strings["%d contact in common"] = [ + 0 => "%d tengiliður sameiginlegur", + 1 => "%d tengiliðir sameiginlegir", +]; +$a->strings["General Features"] = "Almennir eiginleikar"; +$a->strings["Multiple Profiles"] = ""; +$a->strings["Ability to create multiple profiles"] = ""; +$a->strings["Photo Location"] = "Staðsetning ljósmyndar"; +$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = ""; +$a->strings["Export Public Calendar"] = "Flytja út opinbert dagatal"; +$a->strings["Ability for visitors to download the public calendar"] = ""; +$a->strings["Post Composition Features"] = ""; +$a->strings["Post Preview"] = ""; +$a->strings["Allow previewing posts and comments before publishing them"] = ""; +$a->strings["Auto-mention Forums"] = ""; +$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = ""; +$a->strings["Network Sidebar"] = ""; +$a->strings["Ability to select posts by date ranges"] = ""; +$a->strings["List Forums"] = "Spjallsvæðalistar"; +$a->strings["Enable widget to display the forums your are connected with"] = ""; +$a->strings["Group Filter"] = ""; +$a->strings["Enable widget to display Network posts only from selected group"] = ""; +$a->strings["Network Filter"] = ""; +$a->strings["Enable widget to display Network posts only from selected network"] = ""; +$a->strings["Save search terms for re-use"] = ""; +$a->strings["Network Tabs"] = ""; +$a->strings["Network Personal Tab"] = ""; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = ""; +$a->strings["Network New Tab"] = ""; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = ""; +$a->strings["Network Shared Links Tab"] = ""; +$a->strings["Enable tab to display only Network posts with links in them"] = ""; +$a->strings["Post/Comment Tools"] = ""; +$a->strings["Multiple Deletion"] = ""; +$a->strings["Select and delete multiple posts/comments at once"] = ""; +$a->strings["Edit Sent Posts"] = ""; +$a->strings["Edit and correct posts and comments after sending"] = ""; +$a->strings["Tagging"] = ""; +$a->strings["Ability to tag existing posts"] = ""; +$a->strings["Post Categories"] = ""; +$a->strings["Add categories to your posts"] = ""; +$a->strings["Ability to file posts under folders"] = ""; +$a->strings["Dislike Posts"] = ""; +$a->strings["Ability to dislike posts/comments"] = ""; +$a->strings["Star Posts"] = ""; +$a->strings["Ability to mark special posts with a star indicator"] = ""; +$a->strings["Mute Post Notifications"] = ""; +$a->strings["Ability to mute notifications for a thread"] = ""; +$a->strings["Advanced Profile Settings"] = ""; +$a->strings["Show visitors public community forums at the Advanced Profile Page"] = ""; +$a->strings["Tag Cloud"] = "Merkjaský"; +$a->strings["Provide a personal tag cloud on your profile page"] = ""; +$a->strings["Display Membership Date"] = ""; +$a->strings["Display membership date in profile"] = ""; +$a->strings["Nothing new here"] = "Ekkert nýtt hér"; +$a->strings["Clear notifications"] = "Hreinsa tilkynningar"; +$a->strings["Personal notes"] = "Einkaglósur"; +$a->strings["Your personal notes"] = "Einkaglósurnar þínar"; +$a->strings["Sign in"] = "Innskrá"; +$a->strings["Home Page"] = "Heimasíða"; +$a->strings["Create an account"] = "Stofna notanda"; +$a->strings["Help and documentation"] = "Hjálp og leiðbeiningar"; +$a->strings["Apps"] = "Forrit"; +$a->strings["Addon applications, utilities, games"] = "Viðbótarforrit, nytjatól, leikir"; +$a->strings["Search site content"] = "Leita í efni á vef"; +$a->strings["Community"] = "Samfélag"; +$a->strings["Conversations on this and other servers"] = ""; +$a->strings["Directory"] = "Mappa"; +$a->strings["People directory"] = "Nafnaskrá"; +$a->strings["Information about this friendica instance"] = "Upplýsingar um þetta tilvik Friendica"; +$a->strings["Terms of Service of this Friendica instance"] = ""; +$a->strings["Network Reset"] = "Núllstilling netkerfis"; +$a->strings["Load Network page with no filters"] = ""; +$a->strings["Friend Requests"] = "Vinabeiðnir"; +$a->strings["See all notifications"] = "Sjá allar tilkynningar"; +$a->strings["Mark all system notifications seen"] = "Merkja allar tilkynningar sem séðar"; +$a->strings["Inbox"] = "Innhólf"; +$a->strings["Outbox"] = "Úthólf"; +$a->strings["Manage"] = "Umsýsla"; +$a->strings["Manage other pages"] = "Sýsla með aðrar síður"; +$a->strings["Profiles"] = "Forsíður"; +$a->strings["Manage/Edit Profiles"] = "Sýsla með forsíður"; +$a->strings["Site setup and configuration"] = "Uppsetning og stillingar vefsvæðis"; +$a->strings["Navigation"] = "Yfirsýn"; +$a->strings["Site map"] = "Yfirlit um vefsvæði"; $a->strings["There are no tables on MyISAM."] = ""; $a->strings["\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."] = ""; $a->strings["The error message is\n[pre]%s[/pre]"] = ""; $a->strings["\nError %d occurred during database update:\n%s\n"] = ""; $a->strings["Errors encountered performing database changes: "] = ""; -$a->strings[": Database update"] = ""; +$a->strings["%s: Database update"] = ""; $a->strings["%s: updating %s table."] = ""; $a->strings["[no subject]"] = "[ekkert efni]"; +$a->strings["Starts:"] = "Byrjar:"; +$a->strings["Finishes:"] = "Endar:"; +$a->strings["all-day"] = "allan-daginn"; +$a->strings["Jun"] = "Jún"; +$a->strings["Sept"] = "Sept"; +$a->strings["No events to display"] = "Engir atburðir til að birta"; +$a->strings["l, F j"] = "l, F j"; +$a->strings["Edit event"] = "Breyta atburð"; +$a->strings["Duplicate event"] = "Tvítaka atburð"; +$a->strings["Delete event"] = "Eyða atburði"; +$a->strings["D g:i A"] = "D g:i A"; +$a->strings["g:i A"] = "g:i A"; +$a->strings["Show map"] = "Birta kort"; +$a->strings["Hide map"] = "Fela kort"; +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Hóp sem var eytt hefur verið endurlífgaður. Færslur sem þegar voru til geta mögulega farið á hópinn og framtíðar meðlimir. Ef þetta er ekki það sem þú vilt, þá þarftu að búa til nýjan hóp með öðru nafni."; +$a->strings["Default privacy group for new contacts"] = ""; +$a->strings["Everybody"] = "Allir"; +$a->strings["edit"] = "breyta"; +$a->strings["Edit group"] = "Breyta hóp"; +$a->strings["Contacts not in any group"] = "Tengiliðir ekki í neinum hópum"; +$a->strings["Create a new group"] = "Stofna nýjan hóp"; +$a->strings["Edit groups"] = "Breyta hópum"; $a->strings["Requested account is not available."] = "Umbeðin forsíða er ekki til."; $a->strings["Edit profile"] = "Breyta forsíðu"; $a->strings["Atom feed"] = "Atom fréttaveita"; @@ -2004,49 +2077,6 @@ $a->strings["Work/employment:"] = "Atvinna:"; $a->strings["School/education:"] = "Skóli/menntun:"; $a->strings["Forums:"] = "Spjallsvæði:"; $a->strings["Only You Can See This"] = "Aðeins þú sérð þetta"; -$a->strings["%1\$s is attending %2\$s's %3\$s"] = ""; -$a->strings["%1\$s is not attending %2\$s's %3\$s"] = ""; -$a->strings["%1\$s may attend %2\$s's %3\$s"] = ""; -$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Hóp sem var eytt hefur verið endurlífgaður. Færslur sem þegar voru til geta mögulega farið á hópinn og framtíðar meðlimir. Ef þetta er ekki það sem þú vilt, þá þarftu að búa til nýjan hóp með öðru nafni."; -$a->strings["Default privacy group for new contacts"] = ""; -$a->strings["Everybody"] = "Allir"; -$a->strings["edit"] = "breyta"; -$a->strings["Edit group"] = "Breyta hóp"; -$a->strings["Contacts not in any group"] = "Tengiliðir ekki í neinum hópum"; -$a->strings["Create a new group"] = "Stofna nýjan hóp"; -$a->strings["Edit groups"] = "Breyta hópum"; -$a->strings["Drop Contact"] = "Henda tengilið"; -$a->strings["Organisation"] = ""; -$a->strings["News"] = "Fréttir"; -$a->strings["Forum"] = "Spjallsvæði"; -$a->strings["Connect URL missing."] = "Tengislóð vantar."; -$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = ""; -$a->strings["This site is not configured to allow communications with other networks."] = "Þessi vefur er ekki uppsettur til að leyfa samskipti við önnur samfélagsnet."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Engir samhæfðir samskiptastaðlar né fréttastraumar fundust."; -$a->strings["The profile address specified does not provide adequate information."] = "Uppgefin forsíðuslóð inniheldur ekki nægilegar upplýsingar."; -$a->strings["An author or name was not found."] = "Höfundur eða nafn fannst ekki."; -$a->strings["No browser URL could be matched to this address."] = "Engin vefslóð passaði við þetta vistfang."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = ""; -$a->strings["Use mailto: in front of address to force email check."] = ""; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Þessi forsíðu slóð tilheyrir neti sem er bannað á þessum vef."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Takmörkuð forsíða. Þessi tengiliður mun ekki getað tekið á móti beinum/einka tilkynningum frá þér."; -$a->strings["Unable to retrieve contact information."] = "Ekki hægt að sækja tengiliðs upplýsingar."; -$a->strings["%s's birthday"] = "Afmælisdagur %s"; -$a->strings["Happy Birthday %s"] = "Til hamingju með afmælið %s"; -$a->strings["Starts:"] = "Byrjar:"; -$a->strings["Finishes:"] = "Endar:"; -$a->strings["all-day"] = "allan-daginn"; -$a->strings["Jun"] = "Jún"; -$a->strings["Sept"] = "Sept"; -$a->strings["No events to display"] = "Engir atburðir til að birta"; -$a->strings["l, F j"] = "l, F j"; -$a->strings["Edit event"] = "Breyta atburð"; -$a->strings["Duplicate event"] = "Tvítaka atburð"; -$a->strings["Delete event"] = "Eyða atburði"; -$a->strings["D g:i A"] = "D g:i A"; -$a->strings["g:i A"] = "g:i A"; -$a->strings["Show map"] = "Birta kort"; -$a->strings["Hide map"] = ""; $a->strings["Login failed"] = "Innskráning mistókst"; $a->strings["Not enough information to authenticate"] = ""; $a->strings["An invitation is required."] = "Boðskort er skilyrði."; @@ -2065,7 +2095,6 @@ $a->strings["Your nickname can only contain a-z, 0-9 and _."] = ""; $a->strings["Nickname is already registered. Please choose another."] = "Gælunafn þegar skráð. Veldu annað."; $a->strings["SERIOUS ERROR: Generation of security keys failed."] = "VERULEGA ALVARLEG VILLA: Stofnun á öryggislyklum tókst ekki."; $a->strings["An error occurred during registration. Please try again."] = "Villa kom upp við nýskráningu. Reyndu aftur."; -$a->strings["default"] = "sjálfgefið"; $a->strings["An error occurred creating your default profile. Please try again."] = "Villa kom upp við að stofna sjálfgefna forsíðu. Vinnsamlegast reyndu aftur."; $a->strings["An error occurred creating your self contact. Please try again."] = ""; $a->strings["An error occurred creating your default contact group. Please try again."] = ""; @@ -2073,24 +2102,59 @@ $a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Yo $a->strings["Registration at %s"] = ""; $a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t\t"] = ""; $a->strings["\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."] = ""; +$a->strings["Drop Contact"] = "Henda tengilið"; +$a->strings["Organisation"] = ""; +$a->strings["News"] = "Fréttir"; +$a->strings["Forum"] = "Spjallsvæði"; +$a->strings["Connect URL missing."] = "Tengislóð vantar."; +$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = ""; +$a->strings["This site is not configured to allow communications with other networks."] = "Þessi vefur er ekki uppsettur til að leyfa samskipti við önnur samfélagsnet."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Engir samhæfðir samskiptastaðlar né fréttastraumar fundust."; +$a->strings["The profile address specified does not provide adequate information."] = "Uppgefin forsíðuslóð inniheldur ekki nægilegar upplýsingar."; +$a->strings["An author or name was not found."] = "Höfundur eða nafn fannst ekki."; +$a->strings["No browser URL could be matched to this address."] = "Engin vefslóð passaði við þetta vistfang."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = ""; +$a->strings["Use mailto: in front of address to force email check."] = ""; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Þessi forsíðu slóð tilheyrir neti sem er bannað á þessum vef."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Takmörkuð forsíða. Þessi tengiliður mun ekki getað tekið á móti beinum/einka tilkynningum frá þér."; +$a->strings["Unable to retrieve contact information."] = "Ekki hægt að sækja tengiliðs upplýsingar."; +$a->strings["%s's birthday"] = "Afmælisdagur %s"; +$a->strings["Happy Birthday %s"] = "Til hamingju með afmælið %s"; +$a->strings["%1\$s is attending %2\$s's %3\$s"] = ""; +$a->strings["%1\$s is not attending %2\$s's %3\$s"] = ""; +$a->strings["%1\$s may attend %2\$s's %3\$s"] = ""; $a->strings["%s is now following %s."] = "%s fylgist núna með %s."; $a->strings["following"] = "fylgist með"; $a->strings["%s stopped following %s."] = ""; $a->strings["stopped following"] = "hætt að fylgja"; -$a->strings["%s\\'s birthday"] = "Afmælisdagur %s"; $a->strings["Sharing notification from Diaspora network"] = "Tilkynning um að einhver deildi atriði á Diaspora netinu"; $a->strings["Attachments:"] = "Viðhengi:"; $a->strings["(no subject)"] = "(ekkert efni)"; -$a->strings["This entry was edited"] = ""; +$a->strings["Logged out."] = "Skráður út."; +$a->strings["Create a New Account"] = "Stofna nýjan notanda"; +$a->strings["Password: "] = "Aðgangsorð: "; +$a->strings["Remember me"] = "Muna eftir mér"; +$a->strings["Or login using OpenID: "] = "Eða auðkenna með OpenID: "; +$a->strings["Forgot your password?"] = "Gleymt lykilorð?"; +$a->strings["Website Terms of Service"] = "Þjónustuskilmálar vefsvæðis"; +$a->strings["terms of service"] = "þjónustuskilmálar"; +$a->strings["Website Privacy Policy"] = "Persónuverndarstefna"; +$a->strings["privacy policy"] = "persónuverndarstefna"; +$a->strings["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."] = ""; +$a->strings["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."] = ""; +$a->strings["At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1\$s/removeme. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners."] = ""; +$a->strings["Privacy Statement"] = "Yfirlýsing um gagnaleynd"; +$a->strings["This entry was edited"] = "Þessari færslu var breytt"; +$a->strings["Remove from your stream"] = ""; $a->strings["save to folder"] = "vista í möppu"; -$a->strings["I will attend"] = ""; -$a->strings["I will not attend"] = ""; -$a->strings["I might attend"] = ""; +$a->strings["I will attend"] = "Ég mæti"; +$a->strings["I will not attend"] = "Ég mæti ekki"; +$a->strings["I might attend"] = "Ég gæti mætt"; $a->strings["add star"] = "bæta við stjörnu"; $a->strings["remove star"] = "eyða stjörnu"; $a->strings["toggle star status"] = "Kveikja/slökkva á stjörnu"; $a->strings["starred"] = "stjörnumerkt"; -$a->strings["ignore thread"] = ""; +$a->strings["ignore thread"] = "Hunsa þráð"; $a->strings["unignore thread"] = ""; $a->strings["toggle ignore status"] = ""; $a->strings["add tag"] = "bæta við merki"; @@ -2114,63 +2178,9 @@ $a->strings["Code"] = "Kóði"; $a->strings["Image"] = "Mynd"; $a->strings["Link"] = "Tengill"; $a->strings["Video"] = "Myndband"; -$a->strings["Create a New Account"] = "Stofna nýjan notanda"; -$a->strings["Password: "] = "Aðgangsorð: "; -$a->strings["Remember me"] = "Muna eftir mér"; -$a->strings["Or login using OpenID: "] = "Eða auðkenna með OpenID: "; -$a->strings["Forgot your password?"] = "Gleymt lykilorð?"; -$a->strings["Website Terms of Service"] = "Þjónustuskilmálar vefsvæðis"; -$a->strings["terms of service"] = "þjónustuskilmálar"; -$a->strings["Website Privacy Policy"] = "Persónuverndarstefna"; -$a->strings["privacy policy"] = "persónuverndarstefna"; -$a->strings["Logged out."] = "Skráður út."; $a->strings["Delete this item?"] = "Eyða þessu atriði?"; $a->strings["show fewer"] = "birta minna"; -$a->strings["greenzero"] = ""; -$a->strings["purplezero"] = ""; -$a->strings["easterbunny"] = ""; -$a->strings["darkzero"] = ""; -$a->strings["comix"] = ""; -$a->strings["slackr"] = ""; -$a->strings["Variations"] = "Tilbrigði"; -$a->strings["Repeat the image"] = "Endurtaka myndina"; -$a->strings["Will repeat your image to fill the background."] = ""; -$a->strings["Stretch"] = "Teygja"; -$a->strings["Will stretch to width/height of the image."] = ""; -$a->strings["Resize fill and-clip"] = ""; -$a->strings["Resize to fill and retain aspect ratio."] = ""; -$a->strings["Resize best fit"] = "Stærðarbreyta svo að passi"; -$a->strings["Resize to best fit and retain aspect ratio."] = "Stærðarbreyta svo að passi og halda upphaflegum hlutföllum."; -$a->strings["Default"] = "Sjálfgefið"; -$a->strings["Note"] = "Minnispunktur"; -$a->strings["Check image permissions if all users are allowed to visit the image"] = ""; -$a->strings["Select scheme"] = "Veldu litastef"; -$a->strings["Navigation bar background color"] = ""; -$a->strings["Navigation bar icon color "] = ""; -$a->strings["Link color"] = "Litur tengils"; -$a->strings["Set the background color"] = "Stilltu bakgrunnslit"; -$a->strings["Content background opacity"] = ""; -$a->strings["Set the background image"] = ""; -$a->strings["Login page background image"] = ""; -$a->strings["Login page background color"] = ""; -$a->strings["Leave background image and color empty for theme defaults"] = ""; -$a->strings["Guest"] = "Gestur"; -$a->strings["Visitor"] = "Í heimsókn"; -$a->strings["Alignment"] = "Hliðjöfnun"; -$a->strings["Left"] = "Vinstri"; -$a->strings["Center"] = "Miðjað"; -$a->strings["Color scheme"] = "Litastef"; -$a->strings["Posts font size"] = ""; -$a->strings["Textareas font size"] = ""; -$a->strings["Comma separated list of helper forums"] = ""; -$a->strings["Set style"] = ""; -$a->strings["Community Pages"] = ""; -$a->strings["Community Profiles"] = ""; -$a->strings["Help or @NewHere ?"] = ""; -$a->strings["Connect Services"] = ""; -$a->strings["Find Friends"] = "Finna vini"; -$a->strings["Last users"] = "Nýjustu notendurnir"; -$a->strings["Local Directory"] = "Staðvær mappa"; -$a->strings["Quick Start"] = ""; +$a->strings["No system theme config value set."] = ""; $a->strings["toggle mobile"] = ""; +$a->strings["%s: Updating author-id and owner-id in item and thread table. "] = ""; $a->strings["Update %s failed. See error logs."] = "Uppfærsla á %s mistókst. Skoðaðu villuannál."; diff --git a/view/lang/pl/messages.po b/view/lang/pl/messages.po index 50e5fa981..f2669ebe1 100644 --- a/view/lang/pl/messages.po +++ b/view/lang/pl/messages.po @@ -39,8 +39,8 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-05-20 14:22+0200\n" -"PO-Revision-Date: 2018-05-20 13:51+0000\n" -"Last-Translator: fabrixxm \n" +"PO-Revision-Date: 2018-05-24 16:34+0000\n" +"Last-Translator: Waldemar Stoczkowski \n" "Language-Team: Polish (http://www.transifex.com/Friendica/friendica/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -3946,11 +3946,11 @@ msgstr "Członkowie" #: mod/group.php:229 msgid "Remove contact from group" -msgstr "" +msgstr "Usuń kontakt z grupy" #: mod/group.php:253 msgid "Add contact to group" -msgstr "" +msgstr "Dodaj kontakt do grupy" #: mod/openid.php:29 msgid "OpenID protocol error. No ID returned." @@ -4104,7 +4104,7 @@ msgstr "Pokaż niektóre informacje dotyczące potrzebnych informacji do obsług #: mod/admin.php:307 msgid "Privacy Statement Preview" -msgstr "" +msgstr "Podgląd oświadczenia o prywatności" #: mod/admin.php:309 msgid "The Terms of Service" @@ -5020,7 +5020,7 @@ msgstr "Maksymalny rozmiar stołu do optymalizacji" msgid "" "Maximum table size (in MB) for the automatic optimization. Enter -1 to " "disable it." -msgstr "" +msgstr "Maksymalny rozmiar tablicy (w MB) do automatycznej optymalizacji. Wprowadź -1, aby go wyłączyć." #: mod/admin.php:1425 msgid "Minimum level of fragmentation" @@ -8804,7 +8804,7 @@ msgstr "Informacje o tej instancji friendica" #: src/Content/Nav.php:178 msgid "Terms of Service of this Friendica instance" -msgstr "" +msgstr "Warunki świadczenia usług tej instancji Friendica" #: src/Content/Nav.php:184 msgid "Network Reset" @@ -9448,7 +9448,7 @@ 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 "" +msgstr "Te dane są wymagane do komunikacji i są przekazywane do węzłów partnerów komunikacyjnych i są tam przechowywane. Użytkownicy mogą wprowadzać dodatkowe prywatne dane, które mogą być przesyłane na konta partnerów komunikacyjnych." #: src/Module/Tos.php:36 src/Module/Tos.php:76 #, php-format @@ -9459,7 +9459,7 @@ msgid "" "href=\"%1$s/removeme\">%1$s/removeme. The deletion of the account will " "be permanent. Deletion of the data will also be requested from the nodes of " "the communication partners." -msgstr "" +msgstr "W dowolnym momencie zalogowany użytkownik może wyeksportować dane swojego konta z ustawień konta. Jeśli użytkownik chce usunąć swoje konto, może to zrobić w%1$s / Usuń mnie. Usunięcie konta będzie trwałe. Skasowanie danych będzie również wymagane od węzłów partnerów komunikacyjnych." #: src/Module/Tos.php:39 src/Module/Tos.php:73 msgid "Privacy Statement" @@ -9471,7 +9471,7 @@ msgstr "Ten wpis został zedytowany" #: src/Object/Post.php:187 msgid "Remove from your stream" -msgstr "" +msgstr "Usuń ze swojego strumienia" #: src/Object/Post.php:200 msgid "save to folder" diff --git a/view/lang/pl/strings.php b/view/lang/pl/strings.php index cbb830ee2..8ccf61ecc 100644 --- a/view/lang/pl/strings.php +++ b/view/lang/pl/strings.php @@ -915,8 +915,8 @@ $a->strings["Delete Group"] = "Usuń grupę"; $a->strings["Group Editor"] = "Edycja grup"; $a->strings["Edit Group Name"] = "Edytuj nazwę grupy"; $a->strings["Members"] = "Członkowie"; -$a->strings["Remove contact from group"] = ""; -$a->strings["Add contact to group"] = ""; +$a->strings["Remove contact from group"] = "Usuń kontakt z grupy"; +$a->strings["Add contact to group"] = "Dodaj kontakt do grupy"; $a->strings["OpenID protocol error. No ID returned."] = "Błąd protokołu OpenID. Nie znaleziono identyfikatora."; $a->strings["Account not found and OpenID registration is not permitted on this site."] = "Konto nie zostało znalezione, a rejestracja OpenID nie jest dozwolona na tej stronie."; $a->strings["Login failed."] = "Logowanie nieudane."; @@ -952,7 +952,7 @@ $a->strings["Display Terms of Service"] = "Wyświetl Warunki korzystania z usłu $a->strings["Enable the Terms of Service page. If this is enabled a link to the terms will be added to the registration form and the general information page."] = "Włącz stronę Warunki świadczenia usług. Jeśli ta opcja jest włączona, link do warunków zostanie dodany do formularza rejestracyjnego i strony z informacjami ogólnymi."; $a->strings["Display Privacy Statement"] = "Wyświetl oświadczenie o prywatności"; $a->strings["Show some informations regarding the needed information to operate the node according e.g. to EU-GDPR."] = "Pokaż niektóre informacje dotyczące potrzebnych informacji do obsługi węzła zgodnie np. do EU-GDPR."; -$a->strings["Privacy Statement Preview"] = ""; +$a->strings["Privacy Statement Preview"] = "Podgląd oświadczenia o prywatności"; $a->strings["The Terms of Service"] = "Warunki świadczenia usług"; $a->strings["Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below."] = "Wprowadź tutaj Warunki świadczenia usług dla swojego węzła. Możesz użyć BBCode. Nagłówki sekcji powinny być [h2] i poniżej."; $a->strings["The blocked domain"] = "Zablokowana domena"; @@ -1158,7 +1158,7 @@ $a->strings["Maximum system load before the frontend quits service - default 50. $a->strings["Minimal Memory"] = "Minimalna pamięć"; $a->strings["Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated)."] = "Minimalna wolna pamięć w MB dla pracownika. Potrzebuje dostępu do /proc/ meminfo - domyślnie 0 (wyłączone)."; $a->strings["Maximum table size for optimization"] = "Maksymalny rozmiar stołu do optymalizacji"; -$a->strings["Maximum table size (in MB) for the automatic optimization. Enter -1 to disable it."] = ""; +$a->strings["Maximum table size (in MB) for the automatic optimization. Enter -1 to disable it."] = "Maksymalny rozmiar tablicy (w MB) do automatycznej optymalizacji. Wprowadź -1, aby go wyłączyć."; $a->strings["Minimum level of fragmentation"] = "Minimalny poziom fragmentacji"; $a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = "Minimalny poziom fragmentacji, aby rozpocząć automatyczną optymalizację - domyślna wartość to 30%."; $a->strings["Periodical check of global contacts"] = "Okresowa kontrola kontaktów globalnych"; @@ -2045,7 +2045,7 @@ $a->strings["Conversations on this and other servers"] = "Rozmowy na tym i innyc $a->strings["Directory"] = "Katalog"; $a->strings["People directory"] = "Katalog osób"; $a->strings["Information about this friendica instance"] = "Informacje o tej instancji friendica"; -$a->strings["Terms of Service of this Friendica instance"] = ""; +$a->strings["Terms of Service of this Friendica instance"] = "Warunki świadczenia usług tej instancji Friendica"; $a->strings["Network Reset"] = "Resetowanie sieci"; $a->strings["Load Network page with no filters"] = "Załaduj stronę sieci bez filtrów"; $a->strings["Friend Requests"] = "Prośba o przyjęcie do grona znajomych"; @@ -2183,11 +2183,11 @@ $a->strings["terms of service"] = "warunki użytkowania"; $a->strings["Website Privacy Policy"] = "Polityka Prywatności Witryny"; $a->strings["privacy policy"] = "polityka prywatności"; $a->strings["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."] = "W momencie rejestracji oraz w celu zapewnienia komunikacji między kontem użytkownika, a jego kontaktami, użytkownik musi podać nazwę wyświetlaną (pseudonim), nazwę użytkownika (przydomek) i działający adres e-mail. Nazwy będą dostępne na stronie profilu konta dla każdego odwiedzającego stronę, nawet jeśli inne szczegóły profilu nie zostaną wyświetlone. Adres e-mail będzie używany tylko do wysyłania powiadomień użytkownika o interakcjach, ale nie będzie wyświetlany w widoczny sposób. Lista kont w katalogu użytkownika węzła lub globalnym katalogu użytkownika jest opcjonalna i może być kontrolowana w ustawieniach użytkownika, nie jest konieczna do komunikacji."; -$a->strings["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."] = ""; -$a->strings["At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1\$s/removeme. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners."] = ""; +$a->strings["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."] = "Te dane są wymagane do komunikacji i są przekazywane do węzłów partnerów komunikacyjnych i są tam przechowywane. Użytkownicy mogą wprowadzać dodatkowe prywatne dane, które mogą być przesyłane na konta partnerów komunikacyjnych."; +$a->strings["At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1\$s/removeme. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners."] = "W dowolnym momencie zalogowany użytkownik może wyeksportować dane swojego konta z ustawień konta. Jeśli użytkownik chce usunąć swoje konto, może to zrobić w%1\$s / Usuń mnie. Usunięcie konta będzie trwałe. Skasowanie danych będzie również wymagane od węzłów partnerów komunikacyjnych."; $a->strings["Privacy Statement"] = "Oświadczenie o prywatności"; $a->strings["This entry was edited"] = "Ten wpis został zedytowany"; -$a->strings["Remove from your stream"] = ""; +$a->strings["Remove from your stream"] = "Usuń ze swojego strumienia"; $a->strings["save to folder"] = "zapisz w folderze"; $a->strings["I will attend"] = "Będę uczestniczyć"; $a->strings["I will not attend"] = "Nie będę uczestniczyć"; diff --git a/view/lang/zh-cn/messages.po b/view/lang/zh-cn/messages.po index dca0406a3..95869adc6 100644 --- a/view/lang/zh-cn/messages.po +++ b/view/lang/zh-cn/messages.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-04-29 07:13+0200\n" -"PO-Revision-Date: 2018-05-04 13:17+0000\n" +"POT-Creation-Date: 2018-05-20 14:22+0200\n" +"PO-Revision-Date: 2018-05-26 10:28+0000\n" "Last-Translator: 朱陈锬 \n" "Language-Team: Chinese (China) (http://www.transifex.com/Friendica/friendica/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -23,95 +23,6 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: include/items.php:342 mod/notice.php:22 mod/viewsrc.php:21 -#: mod/display.php:72 mod/display.php:252 mod/display.php:354 -#: mod/admin.php:276 mod/admin.php:1870 mod/admin.php:2118 -msgid "Item not found." -msgstr "项目找不到。" - -#: include/items.php:382 -msgid "Do you really want to delete this item?" -msgstr "您真的想删除这个项目吗?" - -#: include/items.php:384 mod/api.php:110 mod/suggest.php:38 -#: mod/dfrn_request.php:653 mod/message.php:138 mod/contacts.php:472 -#: mod/follow.php:150 mod/profiles.php:636 mod/profiles.php:639 -#: mod/profiles.php:661 mod/register.php:237 mod/settings.php:1107 -#: mod/settings.php:1113 mod/settings.php:1120 mod/settings.php:1124 -#: mod/settings.php:1128 mod/settings.php:1132 mod/settings.php:1136 -#: mod/settings.php:1140 mod/settings.php:1160 mod/settings.php:1161 -#: mod/settings.php:1162 mod/settings.php:1163 mod/settings.php:1164 -msgid "Yes" -msgstr "是" - -#: include/items.php:387 include/conversation.php:1355 mod/fbrowser.php:103 -#: mod/fbrowser.php:134 mod/suggest.php:41 mod/dfrn_request.php:663 -#: mod/tagrm.php:19 mod/tagrm.php:99 mod/editpost.php:149 mod/message.php:141 -#: mod/photos.php:248 mod/photos.php:324 mod/videos.php:147 -#: mod/contacts.php:475 mod/unfollow.php:117 mod/follow.php:161 -#: mod/settings.php:678 mod/settings.php:704 -msgid "Cancel" -msgstr "取消" - -#: include/items.php:401 mod/allfriends.php:21 mod/api.php:35 mod/api.php:40 -#: mod/attach.php:38 mod/common.php:26 mod/crepair.php:98 mod/nogroup.php:28 -#: mod/repair_ostatus.php:13 mod/suggest.php:60 mod/uimport.php:28 -#: mod/notifications.php:73 mod/dfrn_confirm.php:68 mod/manage.php:131 -#: mod/wall_attach.php:74 mod/wall_attach.php:77 mod/poke.php:150 -#: mod/regmod.php:108 mod/viewcontacts.php:57 mod/wall_upload.php:103 -#: mod/wall_upload.php:106 mod/wallmessage.php:16 mod/wallmessage.php:40 -#: mod/wallmessage.php:79 mod/wallmessage.php:103 mod/editpost.php:18 -#: mod/fsuggest.php:80 mod/group.php:26 mod/message.php:59 mod/message.php:104 -#: mod/notes.php:30 mod/photos.php:174 mod/photos.php:1051 mod/cal.php:304 -#: mod/contacts.php:386 mod/delegate.php:25 mod/delegate.php:43 -#: mod/delegate.php:54 mod/events.php:194 mod/item.php:160 -#: mod/ostatus_subscribe.php:16 mod/profile_photo.php:30 -#: mod/profile_photo.php:176 mod/profile_photo.php:187 -#: mod/profile_photo.php:200 mod/unfollow.php:15 mod/unfollow.php:57 -#: mod/unfollow.php:90 mod/dirfind.php:25 mod/follow.php:17 mod/follow.php:54 -#: mod/follow.php:118 mod/profiles.php:182 mod/profiles.php:606 -#: mod/register.php:53 mod/invite.php:20 mod/invite.php:111 mod/network.php:32 -#: mod/settings.php:43 mod/settings.php:142 mod/settings.php:667 index.php:444 -msgid "Permission denied." -msgstr "权限不够。" - -#: include/items.php:471 -msgid "Archives" -msgstr "档案" - -#: include/items.php:477 view/theme/vier/theme.php:258 -#: src/Content/ForumManager.php:130 src/Content/Widget.php:317 -#: src/Object/Post.php:430 src/App.php:512 -msgid "show more" -msgstr "看多" - -#: include/api.php:1202 -#, 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] "达到每日 %d 发文限制。此文被拒绝发出。" - -#: include/api.php:1226 -#, 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] "达到每周 %d 发文限制。此文被拒绝发出。" - -#: include/api.php:1250 -#, php-format -msgid "Monthly posting limit of %d post reached. The post was rejected." -msgstr "达到每月 %d 发文限制。此文被拒绝发出。" - -#: include/api.php:4523 mod/photos.php:88 mod/photos.php:194 -#: mod/photos.php:722 mod/photos.php:1149 mod/photos.php:1166 -#: mod/photos.php:1684 mod/profile_photo.php:85 mod/profile_photo.php:93 -#: mod/profile_photo.php:101 mod/profile_photo.php:211 -#: mod/profile_photo.php:302 mod/profile_photo.php:312 src/Model/User.php:553 -#: src/Model/User.php:561 src/Model/User.php:569 -msgid "Profile Photos" -msgstr "简介照片" - #: include/enotify.php:31 msgid "Friendica Notification" msgstr "Friendica 通知" @@ -376,7 +287,7 @@ msgstr "" msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "请访问 %s 如果你希望对修改这个关系。" -#: include/enotify.php:360 mod/removeme.php:43 +#: include/enotify.php:360 mod/removeme.php:44 msgid "[Friendica System Notify]" msgstr "" @@ -422,31 +333,63 @@ msgid "" "form has been opened for too long (>3 hours) before submitting it." msgstr "表格安全令牌不对。最可能因为表格开着太久(三个小时以上)提交前。" +#: include/dba.php:59 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "找不到DNS信息为数据库服务器「%s」" + +#: include/api.php:1202 +#, 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] "达到每日 %d 发文限制。此文被拒绝发出。" + +#: include/api.php:1226 +#, 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] "达到每周 %d 发文限制。此文被拒绝发出。" + +#: include/api.php:1250 +#, php-format +msgid "Monthly posting limit of %d post reached. The post was rejected." +msgstr "达到每月 %d 发文限制。此文被拒绝发出。" + +#: include/api.php:4522 mod/photos.php:88 mod/photos.php:194 +#: mod/photos.php:722 mod/photos.php:1149 mod/photos.php:1166 +#: mod/photos.php:1684 mod/profile_photo.php:85 mod/profile_photo.php:93 +#: mod/profile_photo.php:101 mod/profile_photo.php:211 +#: mod/profile_photo.php:302 mod/profile_photo.php:312 src/Model/User.php:553 +#: src/Model/User.php:561 src/Model/User.php:569 +msgid "Profile Photos" +msgstr "简介照片" + #: include/conversation.php:144 include/conversation.php:282 -#: include/text.php:1748 src/Model/Item.php:1895 +#: include/text.php:1749 src/Model/Item.php:1970 msgid "event" msgstr "事件" #: include/conversation.php:147 include/conversation.php:157 #: include/conversation.php:285 include/conversation.php:294 -#: mod/subthread.php:97 mod/tagger.php:72 src/Model/Item.php:1893 -#: src/Protocol/Diaspora.php:2026 +#: mod/subthread.php:97 mod/tagger.php:72 src/Model/Item.php:1968 +#: src/Protocol/Diaspora.php:1957 msgid "status" msgstr "现状" #: include/conversation.php:152 include/conversation.php:290 -#: include/text.php:1750 mod/subthread.php:97 mod/tagger.php:72 -#: src/Model/Item.php:1893 +#: include/text.php:1751 mod/subthread.php:97 mod/tagger.php:72 +#: src/Model/Item.php:1968 msgid "photo" msgstr "照片" -#: include/conversation.php:164 src/Model/Item.php:1766 -#: src/Protocol/Diaspora.php:2022 +#: include/conversation.php:164 src/Model/Item.php:1841 +#: src/Protocol/Diaspora.php:1953 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s 喜欢 %2$s 的 %3$s" -#: include/conversation.php:167 src/Model/Item.php:1771 +#: include/conversation.php:167 src/Model/Item.php:1846 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "%1$s 不喜欢 %2$s 的 %3$s" @@ -466,8 +409,7 @@ msgstr "%1$s 没有参加 %2$s 的 %3$s" msgid "%1$s attends maybe %2$s's %3$s" msgstr "" -#: include/conversation.php:209 mod/dfrn_confirm.php:431 -#: src/Protocol/Diaspora.php:2500 +#: include/conversation.php:209 #, php-format msgid "%1$s is now friends with %2$s" msgstr "%1$s是成为%2$s的朋友" @@ -499,7 +441,7 @@ msgstr "喜欢" msgid "Dislikes" msgstr "不喜欢" -#: include/conversation.php:609 include/conversation.php:1664 +#: include/conversation.php:609 include/conversation.php:1639 #: mod/photos.php:1502 msgid "Attending" msgid_plural "Attending" @@ -513,31 +455,31 @@ msgstr "不在参加" msgid "Might attend" msgstr "可以参加" -#: include/conversation.php:721 mod/photos.php:1569 src/Object/Post.php:178 +#: include/conversation.php:721 mod/photos.php:1569 src/Object/Post.php:192 msgid "Select" msgstr "选择" #: include/conversation.php:722 mod/photos.php:1570 mod/contacts.php:830 -#: mod/contacts.php:1035 mod/admin.php:1814 mod/settings.php:740 -#: src/Object/Post.php:179 +#: mod/contacts.php:1035 mod/admin.php:1827 mod/settings.php:730 +#: src/Object/Post.php:187 msgid "Delete" msgstr "删除" -#: include/conversation.php:760 src/Object/Post.php:363 -#: src/Object/Post.php:364 +#: include/conversation.php:760 src/Object/Post.php:371 +#: src/Object/Post.php:372 #, php-format msgid "View %s's profile @ %s" msgstr "看%s的简介@ %s" -#: include/conversation.php:772 src/Object/Post.php:351 +#: include/conversation.php:772 src/Object/Post.php:359 msgid "Categories:" msgstr "种类:" -#: include/conversation.php:773 src/Object/Post.php:352 +#: include/conversation.php:773 src/Object/Post.php:360 msgid "Filed under:" msgstr "归档在:" -#: include/conversation.php:780 src/Object/Post.php:377 +#: include/conversation.php:780 src/Object/Post.php:385 #, php-format msgid "%s from %s" msgstr "%s从%s" @@ -546,9 +488,9 @@ msgstr "%s从%s" msgid "View in context" msgstr "看在上下文" -#: include/conversation.php:797 include/conversation.php:1337 -#: mod/wallmessage.php:145 mod/editpost.php:125 mod/message.php:264 -#: mod/message.php:433 mod/photos.php:1473 src/Object/Post.php:402 +#: include/conversation.php:797 include/conversation.php:1312 +#: mod/wallmessage.php:145 mod/editpost.php:125 mod/photos.php:1473 +#: mod/message.php:245 mod/message.php:414 src/Object/Post.php:410 msgid "Please wait" msgstr "请等一下" @@ -560,628 +502,685 @@ msgstr "删除" msgid "Delete Selected Items" msgstr "删除选的项目" -#: include/conversation.php:1042 view/theme/frio/theme.php:352 +#: include/conversation.php:1017 view/theme/frio/theme.php:352 msgid "Follow Thread" msgstr "" -#: include/conversation.php:1043 src/Model/Contact.php:652 +#: include/conversation.php:1018 src/Model/Contact.php:662 msgid "View Status" msgstr "看现状" -#: include/conversation.php:1044 include/conversation.php:1060 +#: include/conversation.php:1019 include/conversation.php:1035 #: mod/allfriends.php:73 mod/suggest.php:82 mod/match.php:89 -#: mod/directory.php:159 mod/dirfind.php:217 src/Model/Contact.php:592 -#: src/Model/Contact.php:605 src/Model/Contact.php:653 +#: mod/directory.php:159 mod/dirfind.php:217 src/Model/Contact.php:602 +#: src/Model/Contact.php:615 src/Model/Contact.php:663 msgid "View Profile" msgstr "看简介" -#: include/conversation.php:1045 src/Model/Contact.php:654 +#: include/conversation.php:1020 src/Model/Contact.php:664 msgid "View Photos" msgstr "看照片" -#: include/conversation.php:1046 src/Model/Contact.php:655 +#: include/conversation.php:1021 src/Model/Contact.php:665 msgid "Network Posts" msgstr "网络文章" -#: include/conversation.php:1047 src/Model/Contact.php:656 +#: include/conversation.php:1022 src/Model/Contact.php:666 msgid "View Contact" msgstr "查看联系人" -#: include/conversation.php:1048 src/Model/Contact.php:658 +#: include/conversation.php:1023 src/Model/Contact.php:668 msgid "Send PM" msgstr "发送私信" -#: include/conversation.php:1052 src/Model/Contact.php:659 +#: include/conversation.php:1027 src/Model/Contact.php:669 msgid "Poke" msgstr "戳" -#: include/conversation.php:1057 mod/allfriends.php:74 mod/suggest.php:83 +#: include/conversation.php:1032 mod/allfriends.php:74 mod/suggest.php:83 #: mod/match.php:90 mod/contacts.php:596 mod/dirfind.php:218 #: mod/follow.php:143 view/theme/vier/theme.php:201 src/Content/Widget.php:61 -#: src/Model/Contact.php:606 +#: src/Model/Contact.php:616 msgid "Connect/Follow" msgstr "连接/关注" -#: include/conversation.php:1176 +#: include/conversation.php:1151 #, php-format msgid "%s likes this." msgstr "%s喜欢这个." -#: include/conversation.php:1179 +#: include/conversation.php:1154 #, php-format msgid "%s doesn't like this." msgstr "%s没有喜欢这个." -#: include/conversation.php:1182 +#: include/conversation.php:1157 #, php-format msgid "%s attends." msgstr "%s 参加。" -#: include/conversation.php:1185 +#: include/conversation.php:1160 #, php-format msgid "%s doesn't attend." msgstr "%s 不参加。" -#: include/conversation.php:1188 +#: include/conversation.php:1163 #, php-format msgid "%s attends maybe." msgstr "" -#: include/conversation.php:1199 +#: include/conversation.php:1174 msgid "and" msgstr "和" -#: include/conversation.php:1205 +#: include/conversation.php:1180 #, php-format msgid "and %d other people" msgstr "和 %d 个其他人" -#: include/conversation.php:1214 +#: include/conversation.php:1189 #, php-format msgid "%2$d people like this" msgstr "%2$d个人喜欢" -#: include/conversation.php:1215 +#: include/conversation.php:1190 #, php-format msgid "%s like this." msgstr "%s 赞了这个。" -#: include/conversation.php:1218 +#: include/conversation.php:1193 #, php-format msgid "%2$d people don't like this" msgstr "%2$d个人不喜欢" -#: include/conversation.php:1219 +#: include/conversation.php:1194 #, php-format msgid "%s don't like this." msgstr "%s 踩了这个。" -#: include/conversation.php:1222 +#: include/conversation.php:1197 #, php-format msgid "%2$d people attend" msgstr "%2$d 人参加" -#: include/conversation.php:1223 +#: include/conversation.php:1198 #, php-format msgid "%s attend." msgstr "%s 参加。" -#: include/conversation.php:1226 +#: include/conversation.php:1201 #, php-format msgid "%2$d people don't attend" msgstr "%2$d 人不参加" -#: include/conversation.php:1227 +#: include/conversation.php:1202 #, php-format msgid "%s don't attend." msgstr "%s 不参加。" -#: include/conversation.php:1230 +#: include/conversation.php:1205 #, php-format msgid "%2$d people attend maybe" msgstr "%2$d人可能参加" -#: include/conversation.php:1231 +#: include/conversation.php:1206 #, php-format msgid "%s attend maybe." msgstr "" -#: include/conversation.php:1261 include/conversation.php:1277 +#: include/conversation.php:1236 include/conversation.php:1252 msgid "Visible to everybody" msgstr "大家可见的" -#: include/conversation.php:1262 include/conversation.php:1278 -#: mod/wallmessage.php:120 mod/wallmessage.php:127 mod/message.php:200 -#: mod/message.php:207 mod/message.php:343 mod/message.php:350 +#: include/conversation.php:1237 include/conversation.php:1253 +#: mod/wallmessage.php:120 mod/wallmessage.php:127 mod/message.php:181 +#: mod/message.php:188 mod/message.php:324 mod/message.php:331 msgid "Please enter a link URL:" msgstr "请输入一个链接 URL:" -#: include/conversation.php:1263 include/conversation.php:1279 +#: include/conversation.php:1238 include/conversation.php:1254 msgid "Please enter a video link/URL:" msgstr "请输入视频连接/URL:" -#: include/conversation.php:1264 include/conversation.php:1280 +#: include/conversation.php:1239 include/conversation.php:1255 msgid "Please enter an audio link/URL:" msgstr "请输入音响连接/URL:" -#: include/conversation.php:1265 include/conversation.php:1281 +#: include/conversation.php:1240 include/conversation.php:1256 msgid "Tag term:" msgstr "标签:" -#: include/conversation.php:1266 include/conversation.php:1282 +#: include/conversation.php:1241 include/conversation.php:1257 #: mod/filer.php:34 msgid "Save to Folder:" msgstr "保存再文件夹:" -#: include/conversation.php:1267 include/conversation.php:1283 +#: include/conversation.php:1242 include/conversation.php:1258 msgid "Where are you right now?" msgstr "你在哪里?" -#: include/conversation.php:1268 +#: include/conversation.php:1243 msgid "Delete item(s)?" msgstr "把项目删除吗?" -#: include/conversation.php:1315 +#: include/conversation.php:1290 msgid "New Post" msgstr "" -#: include/conversation.php:1318 +#: include/conversation.php:1293 msgid "Share" msgstr "分享" -#: include/conversation.php:1319 mod/wallmessage.php:143 mod/editpost.php:111 -#: mod/message.php:262 mod/message.php:430 +#: include/conversation.php:1294 mod/wallmessage.php:143 mod/editpost.php:111 +#: mod/message.php:243 mod/message.php:411 msgid "Upload photo" msgstr "上传照片" -#: include/conversation.php:1320 mod/editpost.php:112 +#: include/conversation.php:1295 mod/editpost.php:112 msgid "upload photo" msgstr "上传照片" -#: include/conversation.php:1321 mod/editpost.php:113 +#: include/conversation.php:1296 mod/editpost.php:113 msgid "Attach file" msgstr "附上文件" -#: include/conversation.php:1322 mod/editpost.php:114 +#: include/conversation.php:1297 mod/editpost.php:114 msgid "attach file" msgstr "附上文件" -#: include/conversation.php:1323 mod/wallmessage.php:144 mod/editpost.php:115 -#: mod/message.php:263 mod/message.php:431 +#: include/conversation.php:1298 mod/wallmessage.php:144 mod/editpost.php:115 +#: mod/message.php:244 mod/message.php:412 msgid "Insert web link" msgstr "插入网页链接" -#: include/conversation.php:1324 mod/editpost.php:116 +#: include/conversation.php:1299 mod/editpost.php:116 msgid "web link" msgstr "网页链接" -#: include/conversation.php:1325 mod/editpost.php:117 +#: include/conversation.php:1300 mod/editpost.php:117 msgid "Insert video link" msgstr "插入视频链接" -#: include/conversation.php:1326 mod/editpost.php:118 +#: include/conversation.php:1301 mod/editpost.php:118 msgid "video link" msgstr "视频链接" -#: include/conversation.php:1327 mod/editpost.php:119 +#: include/conversation.php:1302 mod/editpost.php:119 msgid "Insert audio link" msgstr "插入音频链接" -#: include/conversation.php:1328 mod/editpost.php:120 +#: include/conversation.php:1303 mod/editpost.php:120 msgid "audio link" msgstr "音频链接" -#: include/conversation.php:1329 mod/editpost.php:121 +#: include/conversation.php:1304 mod/editpost.php:121 msgid "Set your location" msgstr "设定您的位置" -#: include/conversation.php:1330 mod/editpost.php:122 +#: include/conversation.php:1305 mod/editpost.php:122 msgid "set location" msgstr "指定位置" -#: include/conversation.php:1331 mod/editpost.php:123 +#: include/conversation.php:1306 mod/editpost.php:123 msgid "Clear browser location" msgstr "清空浏览器位置" -#: include/conversation.php:1332 mod/editpost.php:124 +#: include/conversation.php:1307 mod/editpost.php:124 msgid "clear location" msgstr "清除位置" -#: include/conversation.php:1334 mod/editpost.php:138 +#: include/conversation.php:1309 mod/editpost.php:138 msgid "Set title" msgstr "指定标题" -#: include/conversation.php:1336 mod/editpost.php:140 +#: include/conversation.php:1311 mod/editpost.php:140 msgid "Categories (comma-separated list)" msgstr "种类(逗号分隔单)" -#: include/conversation.php:1338 mod/editpost.php:126 +#: include/conversation.php:1313 mod/editpost.php:126 msgid "Permission settings" msgstr "权设置" -#: include/conversation.php:1339 mod/editpost.php:155 +#: include/conversation.php:1314 mod/editpost.php:155 msgid "permissions" msgstr "权利" -#: include/conversation.php:1347 mod/editpost.php:135 +#: include/conversation.php:1322 mod/editpost.php:135 msgid "Public post" msgstr "公开的消息" -#: include/conversation.php:1351 mod/editpost.php:146 mod/photos.php:1492 +#: include/conversation.php:1326 mod/editpost.php:146 mod/photos.php:1492 #: mod/photos.php:1531 mod/photos.php:1604 mod/events.php:528 -#: src/Object/Post.php:805 +#: src/Object/Post.php:813 msgid "Preview" msgstr "预览" -#: include/conversation.php:1360 +#: include/conversation.php:1330 include/items.php:387 mod/fbrowser.php:103 +#: mod/fbrowser.php:134 mod/suggest.php:41 mod/tagrm.php:19 mod/tagrm.php:99 +#: mod/editpost.php:149 mod/photos.php:248 mod/photos.php:324 +#: mod/videos.php:147 mod/contacts.php:475 mod/unfollow.php:117 +#: mod/follow.php:161 mod/message.php:141 mod/dfrn_request.php:658 +#: mod/settings.php:670 mod/settings.php:696 +msgid "Cancel" +msgstr "取消" + +#: include/conversation.php:1335 msgid "Post to Groups" msgstr "发到组" -#: include/conversation.php:1361 +#: include/conversation.php:1336 msgid "Post to Contacts" msgstr "发给联系人" -#: include/conversation.php:1362 +#: include/conversation.php:1337 msgid "Private post" msgstr "私人文章" -#: include/conversation.php:1367 mod/editpost.php:153 +#: include/conversation.php:1342 mod/editpost.php:153 #: src/Model/Profile.php:338 msgid "Message" msgstr "通知" -#: include/conversation.php:1368 mod/editpost.php:154 +#: include/conversation.php:1343 mod/editpost.php:154 msgid "Browser" msgstr "浏览器" -#: include/conversation.php:1635 +#: include/conversation.php:1610 msgid "View all" msgstr "查看全部" -#: include/conversation.php:1658 +#: include/conversation.php:1633 msgid "Like" msgid_plural "Likes" msgstr[0] "喜欢" -#: include/conversation.php:1661 +#: include/conversation.php:1636 msgid "Dislike" msgid_plural "Dislikes" msgstr[0] "不喜欢" -#: include/conversation.php:1667 +#: include/conversation.php:1642 msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "不在参加" -#: include/conversation.php:1670 src/Content/ContactSelector.php:125 +#: include/conversation.php:1645 src/Content/ContactSelector.php:125 msgid "Undecided" msgid_plural "Undecided" msgstr[0] "未决定的" -#: include/dba.php:58 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "找不到DNS信息为数据库服务器「%s」" +#: include/items.php:342 mod/notice.php:22 mod/viewsrc.php:21 +#: mod/admin.php:277 mod/admin.php:1883 mod/admin.php:2131 mod/display.php:72 +#: mod/display.php:255 mod/display.php:356 +msgid "Item not found." +msgstr "项目找不到。" -#: include/text.php:302 +#: include/items.php:382 +msgid "Do you really want to delete this item?" +msgstr "您真的想删除这个项目吗?" + +#: include/items.php:384 mod/api.php:110 mod/suggest.php:38 +#: mod/contacts.php:472 mod/follow.php:150 mod/message.php:138 +#: mod/dfrn_request.php:648 mod/profiles.php:543 mod/profiles.php:546 +#: mod/profiles.php:568 mod/register.php:238 mod/settings.php:1094 +#: mod/settings.php:1100 mod/settings.php:1107 mod/settings.php:1111 +#: mod/settings.php:1115 mod/settings.php:1119 mod/settings.php:1123 +#: mod/settings.php:1127 mod/settings.php:1147 mod/settings.php:1148 +#: mod/settings.php:1149 mod/settings.php:1150 mod/settings.php:1151 +msgid "Yes" +msgstr "是" + +#: include/items.php:401 mod/allfriends.php:21 mod/api.php:35 mod/api.php:40 +#: mod/attach.php:38 mod/common.php:26 mod/nogroup.php:28 +#: mod/repair_ostatus.php:13 mod/suggest.php:60 mod/uimport.php:28 +#: mod/manage.php:131 mod/wall_attach.php:74 mod/wall_attach.php:77 +#: mod/poke.php:150 mod/regmod.php:108 mod/viewcontacts.php:57 +#: mod/wall_upload.php:103 mod/wall_upload.php:106 mod/wallmessage.php:16 +#: mod/wallmessage.php:40 mod/wallmessage.php:79 mod/wallmessage.php:103 +#: mod/editpost.php:18 mod/fsuggest.php:80 mod/notes.php:30 mod/photos.php:174 +#: mod/photos.php:1051 mod/cal.php:304 mod/contacts.php:386 +#: mod/delegate.php:25 mod/delegate.php:43 mod/delegate.php:54 +#: mod/events.php:194 mod/ostatus_subscribe.php:16 mod/profile_photo.php:30 +#: mod/profile_photo.php:176 mod/profile_photo.php:187 +#: mod/profile_photo.php:200 mod/unfollow.php:15 mod/unfollow.php:57 +#: mod/unfollow.php:90 mod/dirfind.php:25 mod/follow.php:17 mod/follow.php:54 +#: mod/follow.php:118 mod/invite.php:20 mod/invite.php:111 mod/network.php:32 +#: mod/crepair.php:98 mod/message.php:59 mod/message.php:104 mod/group.php:26 +#: mod/dfrn_confirm.php:68 mod/item.php:160 mod/notifications.php:73 +#: mod/profiles.php:182 mod/profiles.php:513 mod/register.php:54 +#: mod/settings.php:43 mod/settings.php:142 mod/settings.php:659 index.php:436 +msgid "Permission denied." +msgstr "权限不够。" + +#: include/items.php:471 src/Content/Feature.php:96 +msgid "Archives" +msgstr "档案" + +#: include/items.php:477 view/theme/vier/theme.php:258 +#: src/Content/ForumManager.php:130 src/Content/Widget.php:317 +#: src/Object/Post.php:438 src/App.php:525 +msgid "show more" +msgstr "显示更多" + +#: include/text.php:303 msgid "newer" msgstr "更新" -#: include/text.php:303 +#: include/text.php:304 msgid "older" msgstr "更旧" -#: include/text.php:308 +#: include/text.php:309 msgid "first" msgstr "首先" -#: include/text.php:309 +#: include/text.php:310 msgid "prev" msgstr "上个" -#: include/text.php:343 +#: include/text.php:344 msgid "next" msgstr "下个" -#: include/text.php:344 +#: include/text.php:345 msgid "last" msgstr "最后" -#: include/text.php:398 +#: include/text.php:399 msgid "Loading more entries..." msgstr "没有项目..." -#: include/text.php:399 +#: include/text.php:400 msgid "The end" msgstr "" -#: include/text.php:884 +#: include/text.php:885 msgid "No contacts" msgstr "没有联系人" -#: include/text.php:908 +#: include/text.php:909 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d 联系人" -#: include/text.php:921 +#: include/text.php:922 msgid "View Contacts" msgstr "查看联系人" -#: include/text.php:1010 mod/filer.php:35 mod/editpost.php:110 +#: include/text.php:1011 mod/filer.php:35 mod/editpost.php:110 #: mod/notes.php:67 msgid "Save" msgstr "保存" -#: include/text.php:1010 +#: include/text.php:1011 msgid "Follow" msgstr "关注" -#: include/text.php:1016 mod/search.php:155 src/Content/Nav.php:142 +#: include/text.php:1017 mod/search.php:155 src/Content/Nav.php:142 msgid "Search" msgstr "搜索" -#: include/text.php:1019 src/Content/Nav.php:58 +#: include/text.php:1020 src/Content/Nav.php:58 msgid "@name, !forum, #tags, content" msgstr "" -#: include/text.php:1025 src/Content/Nav.php:145 +#: include/text.php:1026 src/Content/Nav.php:145 msgid "Full Text" msgstr "全文" -#: include/text.php:1026 src/Content/Widget/TagCloud.php:54 +#: include/text.php:1027 src/Content/Widget/TagCloud.php:54 #: src/Content/Nav.php:146 msgid "Tags" msgstr "标签:" -#: include/text.php:1027 mod/viewcontacts.php:131 mod/contacts.php:814 +#: include/text.php:1028 mod/viewcontacts.php:131 mod/contacts.php:814 #: mod/contacts.php:875 view/theme/frio/theme.php:270 src/Content/Nav.php:147 -#: src/Content/Nav.php:209 src/Model/Profile.php:955 src/Model/Profile.php:958 +#: src/Content/Nav.php:213 src/Model/Profile.php:955 src/Model/Profile.php:958 msgid "Contacts" msgstr "联系人" -#: include/text.php:1030 view/theme/vier/theme.php:253 +#: include/text.php:1031 view/theme/vier/theme.php:253 #: src/Content/ForumManager.php:125 src/Content/Nav.php:151 msgid "Forums" msgstr "论坛" -#: include/text.php:1074 +#: include/text.php:1075 msgid "poke" msgstr "戳" -#: include/text.php:1074 +#: include/text.php:1075 msgid "poked" msgstr "戳了" -#: include/text.php:1075 +#: include/text.php:1076 msgid "ping" msgstr "砰" -#: include/text.php:1075 +#: include/text.php:1076 msgid "pinged" msgstr "砰了" -#: include/text.php:1076 +#: include/text.php:1077 msgid "prod" msgstr "柔戳" -#: include/text.php:1076 +#: include/text.php:1077 msgid "prodded" msgstr "柔戳了" -#: include/text.php:1077 +#: include/text.php:1078 msgid "slap" msgstr "掌击" -#: include/text.php:1077 +#: include/text.php:1078 msgid "slapped" msgstr "掌击了" -#: include/text.php:1078 +#: include/text.php:1079 msgid "finger" msgstr "指" -#: include/text.php:1078 +#: include/text.php:1079 msgid "fingered" msgstr "指了" -#: include/text.php:1079 +#: include/text.php:1080 msgid "rebuff" msgstr "拒绝" -#: include/text.php:1079 +#: include/text.php:1080 msgid "rebuffed" msgstr "已拒绝" -#: include/text.php:1093 mod/settings.php:945 src/Model/Event.php:379 +#: include/text.php:1094 mod/settings.php:935 src/Model/Event.php:379 msgid "Monday" msgstr "星期一" -#: include/text.php:1093 src/Model/Event.php:380 +#: include/text.php:1094 src/Model/Event.php:380 msgid "Tuesday" msgstr "星期二" -#: include/text.php:1093 src/Model/Event.php:381 +#: include/text.php:1094 src/Model/Event.php:381 msgid "Wednesday" msgstr "星期三" -#: include/text.php:1093 src/Model/Event.php:382 +#: include/text.php:1094 src/Model/Event.php:382 msgid "Thursday" msgstr "星期四" -#: include/text.php:1093 src/Model/Event.php:383 +#: include/text.php:1094 src/Model/Event.php:383 msgid "Friday" msgstr "星期五" -#: include/text.php:1093 src/Model/Event.php:384 +#: include/text.php:1094 src/Model/Event.php:384 msgid "Saturday" msgstr "星期六" -#: include/text.php:1093 mod/settings.php:945 src/Model/Event.php:378 +#: include/text.php:1094 mod/settings.php:935 src/Model/Event.php:378 msgid "Sunday" msgstr "星期天" -#: include/text.php:1097 src/Model/Event.php:399 +#: include/text.php:1098 src/Model/Event.php:399 msgid "January" msgstr "一月" -#: include/text.php:1097 src/Model/Event.php:400 +#: include/text.php:1098 src/Model/Event.php:400 msgid "February" msgstr "二月" -#: include/text.php:1097 src/Model/Event.php:401 +#: include/text.php:1098 src/Model/Event.php:401 msgid "March" msgstr "三月" -#: include/text.php:1097 src/Model/Event.php:402 +#: include/text.php:1098 src/Model/Event.php:402 msgid "April" msgstr "四月" -#: include/text.php:1097 include/text.php:1114 src/Model/Event.php:390 +#: include/text.php:1098 include/text.php:1115 src/Model/Event.php:390 #: src/Model/Event.php:403 msgid "May" msgstr "五月" -#: include/text.php:1097 src/Model/Event.php:404 +#: include/text.php:1098 src/Model/Event.php:404 msgid "June" msgstr "六月" -#: include/text.php:1097 src/Model/Event.php:405 +#: include/text.php:1098 src/Model/Event.php:405 msgid "July" msgstr "七月" -#: include/text.php:1097 src/Model/Event.php:406 +#: include/text.php:1098 src/Model/Event.php:406 msgid "August" msgstr "八月" -#: include/text.php:1097 src/Model/Event.php:407 +#: include/text.php:1098 src/Model/Event.php:407 msgid "September" msgstr "九月" -#: include/text.php:1097 src/Model/Event.php:408 +#: include/text.php:1098 src/Model/Event.php:408 msgid "October" msgstr "十月" -#: include/text.php:1097 src/Model/Event.php:409 +#: include/text.php:1098 src/Model/Event.php:409 msgid "November" msgstr "十一月" -#: include/text.php:1097 src/Model/Event.php:410 +#: include/text.php:1098 src/Model/Event.php:410 msgid "December" msgstr "十二月" -#: include/text.php:1111 src/Model/Event.php:371 +#: include/text.php:1112 src/Model/Event.php:371 msgid "Mon" msgstr "星期一" -#: include/text.php:1111 src/Model/Event.php:372 +#: include/text.php:1112 src/Model/Event.php:372 msgid "Tue" msgstr "星期二" -#: include/text.php:1111 src/Model/Event.php:373 +#: include/text.php:1112 src/Model/Event.php:373 msgid "Wed" msgstr "星期三" -#: include/text.php:1111 src/Model/Event.php:374 +#: include/text.php:1112 src/Model/Event.php:374 msgid "Thu" msgstr "星期四" -#: include/text.php:1111 src/Model/Event.php:375 +#: include/text.php:1112 src/Model/Event.php:375 msgid "Fri" msgstr "星期五" -#: include/text.php:1111 src/Model/Event.php:376 +#: include/text.php:1112 src/Model/Event.php:376 msgid "Sat" msgstr "星期六" -#: include/text.php:1111 src/Model/Event.php:370 +#: include/text.php:1112 src/Model/Event.php:370 msgid "Sun" msgstr "星期日" -#: include/text.php:1114 src/Model/Event.php:386 +#: include/text.php:1115 src/Model/Event.php:386 msgid "Jan" msgstr "一月" -#: include/text.php:1114 src/Model/Event.php:387 +#: include/text.php:1115 src/Model/Event.php:387 msgid "Feb" msgstr "二月" -#: include/text.php:1114 src/Model/Event.php:388 +#: include/text.php:1115 src/Model/Event.php:388 msgid "Mar" msgstr "三月" -#: include/text.php:1114 src/Model/Event.php:389 +#: include/text.php:1115 src/Model/Event.php:389 msgid "Apr" msgstr "四月" -#: include/text.php:1114 src/Model/Event.php:392 +#: include/text.php:1115 src/Model/Event.php:392 msgid "Jul" msgstr "七月" -#: include/text.php:1114 src/Model/Event.php:393 +#: include/text.php:1115 src/Model/Event.php:393 msgid "Aug" msgstr "八月" -#: include/text.php:1114 +#: include/text.php:1115 msgid "Sep" msgstr "" -#: include/text.php:1114 src/Model/Event.php:395 +#: include/text.php:1115 src/Model/Event.php:395 msgid "Oct" msgstr "十月" -#: include/text.php:1114 src/Model/Event.php:396 +#: include/text.php:1115 src/Model/Event.php:396 msgid "Nov" msgstr "十一月" -#: include/text.php:1114 src/Model/Event.php:397 +#: include/text.php:1115 src/Model/Event.php:397 msgid "Dec" msgstr "十二月" -#: include/text.php:1254 +#: include/text.php:1255 #, php-format msgid "Content warning: %s" msgstr "内容警告:%s" -#: include/text.php:1324 mod/videos.php:380 +#: include/text.php:1325 mod/videos.php:380 msgid "View Video" msgstr "察看视频" -#: include/text.php:1341 +#: include/text.php:1342 msgid "bytes" msgstr "字节" -#: include/text.php:1374 include/text.php:1385 include/text.php:1418 +#: include/text.php:1375 include/text.php:1386 include/text.php:1419 msgid "Click to open/close" msgstr "点击为开关" -#: include/text.php:1533 +#: include/text.php:1534 msgid "View on separate page" msgstr "在另一页面中查看" -#: include/text.php:1534 +#: include/text.php:1535 msgid "view on separate page" msgstr "在另一页面中查看" -#: include/text.php:1539 include/text.php:1546 src/Model/Event.php:594 +#: include/text.php:1540 include/text.php:1547 src/Model/Event.php:594 msgid "link to source" msgstr "链接到来源" -#: include/text.php:1752 +#: include/text.php:1753 msgid "activity" msgstr "活动" -#: include/text.php:1754 src/Object/Post.php:429 src/Object/Post.php:441 +#: include/text.php:1755 src/Object/Post.php:437 src/Object/Post.php:449 msgid "comment" msgid_plural "comments" msgstr[0] "评论" -#: include/text.php:1757 +#: include/text.php:1758 msgid "post" msgstr "文章" -#: include/text.php:1914 +#: include/text.php:1915 msgid "Item filed" msgstr "把项目归档了" @@ -1212,17 +1211,17 @@ msgid "" " and/or create new posts for you?" msgstr "你要授权这个应用访问你的文章和联系人,及/或为你创建新的文章吗?" -#: mod/api.php:111 mod/dfrn_request.php:653 mod/follow.php:150 -#: mod/profiles.php:636 mod/profiles.php:640 mod/profiles.php:661 -#: mod/register.php:238 mod/settings.php:1107 mod/settings.php:1113 -#: mod/settings.php:1120 mod/settings.php:1124 mod/settings.php:1128 -#: mod/settings.php:1132 mod/settings.php:1136 mod/settings.php:1140 -#: mod/settings.php:1160 mod/settings.php:1161 mod/settings.php:1162 -#: mod/settings.php:1163 mod/settings.php:1164 +#: mod/api.php:111 mod/follow.php:150 mod/dfrn_request.php:648 +#: mod/profiles.php:543 mod/profiles.php:547 mod/profiles.php:568 +#: mod/register.php:239 mod/settings.php:1094 mod/settings.php:1100 +#: mod/settings.php:1107 mod/settings.php:1111 mod/settings.php:1115 +#: mod/settings.php:1119 mod/settings.php:1123 mod/settings.php:1127 +#: mod/settings.php:1147 mod/settings.php:1148 mod/settings.php:1149 +#: mod/settings.php:1150 mod/settings.php:1151 msgid "No" msgstr "否" -#: mod/apps.php:14 index.php:273 +#: mod/apps.php:14 index.php:265 msgid "You must be logged in to use addons. " msgstr "您用插件前要登录" @@ -1261,115 +1260,6 @@ msgid "" "code or the translation of Friendica. Thank you all!" msgstr "Friendica 是一个社区项目,如果没有许多人的努力她将无法实现。这里列出了那些为代码作出贡献或者参与本地化翻译的人们。感谢大家的努力!" -#: mod/crepair.php:87 -msgid "Contact settings applied." -msgstr "联系人设置已应用。" - -#: mod/crepair.php:89 -msgid "Contact update failed." -msgstr "联系人更新失败。" - -#: mod/crepair.php:110 mod/dfrn_confirm.php:131 mod/fsuggest.php:30 -#: mod/fsuggest.php:96 -msgid "Contact not found." -msgstr "没有找到联系人。" - -#: mod/crepair.php:114 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "警告:此为进阶,如果您输入不正确的信息,您也许无法与这位联系人的正常通讯。" - -#: mod/crepair.php:115 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "请立即用后退按钮如果您不确定怎么用这页" - -#: mod/crepair.php:129 mod/crepair.php:131 -msgid "No mirroring" -msgstr "没有复制" - -#: mod/crepair.php:129 -msgid "Mirror as forwarded posting" -msgstr "复制为传达文章" - -#: mod/crepair.php:129 mod/crepair.php:131 -msgid "Mirror as my own posting" -msgstr "复制为我自己的文章" - -#: mod/crepair.php:144 -msgid "Return to contact editor" -msgstr "返回到联系人编辑器" - -#: mod/crepair.php:146 -msgid "Refetch contact data" -msgstr "重新获取联系人数据" - -#: mod/crepair.php:148 mod/manage.php:184 mod/localtime.php:56 -#: mod/poke.php:199 mod/fsuggest.php:114 mod/message.php:265 -#: mod/message.php:432 mod/photos.php:1080 mod/photos.php:1160 -#: mod/photos.php:1445 mod/photos.php:1491 mod/photos.php:1530 -#: mod/photos.php:1603 mod/contacts.php:610 mod/events.php:530 -#: mod/profiles.php:672 mod/install.php:251 mod/install.php:290 -#: mod/invite.php:154 view/theme/duepuntozero/config.php:71 -#: view/theme/frio/config.php:118 view/theme/quattro/config.php:73 -#: view/theme/vier/config.php:119 src/Object/Post.php:796 -msgid "Submit" -msgstr "提交" - -#: mod/crepair.php:149 -msgid "Remote Self" -msgstr "遥远的自身" - -#: mod/crepair.php:152 -msgid "Mirror postings from this contact" -msgstr "把这个熟人的文章复制。" - -#: mod/crepair.php:154 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "表明这个熟人当遥远的自身。Friendica要把这个熟人的新的文章复制。" - -#: mod/crepair.php:158 mod/admin.php:490 mod/admin.php:1798 mod/admin.php:1809 -#: mod/admin.php:1822 mod/admin.php:1838 mod/settings.php:679 -#: mod/settings.php:705 -msgid "Name" -msgstr "名字" - -#: mod/crepair.php:159 -msgid "Account Nickname" -msgstr "帐户昵称" - -#: mod/crepair.php:160 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Tagname越过名/昵称" - -#: mod/crepair.php:161 -msgid "Account URL" -msgstr "帐户URL" - -#: mod/crepair.php:162 -msgid "Friend Request URL" -msgstr "朋友请求URL" - -#: mod/crepair.php:163 -msgid "Friend Confirm URL" -msgstr "朋友确认URL" - -#: mod/crepair.php:164 -msgid "Notification Endpoint URL" -msgstr "通知端URL" - -#: mod/crepair.php:165 -msgid "Poll/Feed URL" -msgstr "喂URL" - -#: mod/crepair.php:166 -msgid "New photo from this URL" -msgstr "新照片从这个URL" - #: mod/fbrowser.php:34 view/theme/frio/theme.php:261 src/Content/Nav.php:102 #: src/Model/Profile.php:902 msgid "Photos" @@ -1390,8 +1280,8 @@ msgstr "上传" msgid "Files" msgstr "文件" -#: mod/fetch.php:16 mod/fetch.php:52 mod/fetch.php:65 mod/help.php:60 -#: mod/p.php:21 mod/p.php:48 mod/p.php:57 index.php:320 +#: mod/fetch.php:16 mod/fetch.php:52 mod/fetch.php:65 mod/p.php:21 +#: mod/p.php:48 mod/p.php:57 mod/help.php:60 index.php:312 msgid "Not Found" msgstr "未发现" @@ -1399,18 +1289,6 @@ msgstr "未发现" msgid "No profile" msgstr "无简介" -#: mod/help.php:48 -msgid "Help:" -msgstr "帮助:" - -#: mod/help.php:54 view/theme/vier/theme.php:297 src/Content/Nav.php:134 -msgid "Help" -msgstr "帮助" - -#: mod/help.php:63 index.php:325 -msgid "Page not found." -msgstr "页发现。" - #: mod/home.php:39 #, php-format msgid "Welcome to %s" @@ -1459,8 +1337,8 @@ msgid "" " join." msgstr "在你的快速上手页-找到一个简要的对你的简介和网络标签的介绍,创建一些新的连接,并找一些群组加入。" -#: mod/newmember.php:19 mod/admin.php:1922 mod/admin.php:2191 -#: mod/settings.php:124 view/theme/frio/theme.php:269 src/Content/Nav.php:203 +#: mod/newmember.php:19 mod/admin.php:1935 mod/admin.php:2204 +#: mod/settings.php:124 view/theme/frio/theme.php:269 src/Content/Nav.php:207 msgid "Settings" msgstr "设置" @@ -1490,7 +1368,7 @@ msgstr "校对别的设置,特别是隐私设置。一个未发布的目录项 msgid "Profile" msgstr "简介" -#: mod/newmember.php:26 mod/profile_photo.php:249 mod/profiles.php:691 +#: mod/newmember.php:26 mod/profile_photo.php:249 mod/profiles.php:598 msgid "Upload Profile Photo" msgstr "上传简历照片" @@ -1670,13 +1548,13 @@ msgstr "朋友推荐" msgid "[Embedded content - reload page to view]" msgstr "[嵌入内容-重新加载页为看]" -#: mod/uimport.php:55 mod/register.php:191 +#: mod/uimport.php:55 mod/register.php:192 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "这个网站超过一天最多账户注册。请明天再试。" -#: mod/uimport.php:70 mod/register.php:285 +#: mod/uimport.php:70 mod/register.php:288 msgid "Import" msgstr "" @@ -1711,11 +1589,6 @@ msgid "" "select \"Export account\"" msgstr "为了导出你的账户,点击「设置→导出你的个人信息」和选择「导出账户」" -#: mod/dfrn_poll.php:123 mod/dfrn_poll.php:543 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "%1$s欢迎%2$s" - #: mod/match.php:48 msgid "No keywords to match. Please add keywords to your default profile." msgstr "没有符合的关键字。请在您的默认简介加关键字。" @@ -1732,268 +1605,6 @@ msgstr "简介符合" msgid "No matches" msgstr "没有结果" -#: mod/notifications.php:37 -msgid "Invalid request identifier." -msgstr "无效要求身份号。" - -#: mod/notifications.php:46 mod/notifications.php:183 -#: mod/notifications.php:230 -msgid "Discard" -msgstr "丢弃" - -#: mod/notifications.php:62 mod/notifications.php:182 -#: mod/notifications.php:266 mod/contacts.php:638 mod/contacts.php:828 -#: mod/contacts.php:1019 -msgid "Ignore" -msgstr "忽视" - -#: mod/notifications.php:98 src/Content/Nav.php:187 -msgid "Notifications" -msgstr "通知" - -#: mod/notifications.php:107 -msgid "Network Notifications" -msgstr "网络通知" - -#: mod/notifications.php:113 mod/notify.php:81 -msgid "System Notifications" -msgstr "系统通知" - -#: mod/notifications.php:119 -msgid "Personal Notifications" -msgstr "私人通知" - -#: mod/notifications.php:125 -msgid "Home Notifications" -msgstr "主页通知" - -#: mod/notifications.php:155 -msgid "Show Ignored Requests" -msgstr "显示被忽视的请求" - -#: mod/notifications.php:155 -msgid "Hide Ignored Requests" -msgstr "隐藏被忽视的请求" - -#: mod/notifications.php:167 mod/notifications.php:237 -msgid "Notification type: " -msgstr "通知种类:" - -#: mod/notifications.php:170 -#, php-format -msgid "suggested by %s" -msgstr "由%s建议的" - -#: mod/notifications.php:175 mod/notifications.php:254 mod/contacts.php:646 -msgid "Hide this contact from others" -msgstr "对其他人隐藏这个联系人" - -#: mod/notifications.php:176 mod/notifications.php:255 -msgid "Post a new friend activity" -msgstr "发表一个新朋友活动" - -#: mod/notifications.php:176 mod/notifications.php:255 -msgid "if applicable" -msgstr "如果可以" - -#: mod/notifications.php:179 mod/notifications.php:264 mod/admin.php:1812 -msgid "Approve" -msgstr "批准" - -#: mod/notifications.php:198 -msgid "Claims to be known to you: " -msgstr "声称被您认识:" - -#: mod/notifications.php:199 -msgid "yes" -msgstr "是" - -#: mod/notifications.php:199 -msgid "no" -msgstr "否" - -#: mod/notifications.php:200 mod/notifications.php:205 -msgid "Shall your connection be bidirectional or not?" -msgstr "是否启用双向连接?" - -#: mod/notifications.php:201 mod/notifications.php:206 -#, 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 "" - -#: mod/notifications.php:202 -#, 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 "" - -#: mod/notifications.php:207 -#, php-format -msgid "" -"Accepting %s as a sharer allows them to subscribe to your posts, but you " -"will not receive updates from them in your news feed." -msgstr "" - -#: mod/notifications.php:218 -msgid "Friend" -msgstr "朋友" - -#: mod/notifications.php:219 -msgid "Sharer" -msgstr "分享者" - -#: mod/notifications.php:219 -msgid "Subscriber" -msgstr "订阅者" - -#: mod/notifications.php:247 mod/contacts.php:660 mod/events.php:518 -#: mod/directory.php:148 src/Model/Event.php:60 src/Model/Event.php:85 -#: src/Model/Event.php:421 src/Model/Event.php:900 src/Model/Profile.php:413 -msgid "Location:" -msgstr "位置:" - -#: mod/notifications.php:249 mod/contacts.php:664 mod/directory.php:154 -#: src/Model/Profile.php:419 src/Model/Profile.php:804 -msgid "About:" -msgstr "关于:" - -#: mod/notifications.php:251 mod/contacts.php:666 mod/follow.php:174 -#: src/Model/Profile.php:792 -msgid "Tags:" -msgstr "标签:" - -#: mod/notifications.php:253 mod/directory.php:151 src/Model/Profile.php:416 -#: src/Model/Profile.php:743 -msgid "Gender:" -msgstr "性别:" - -#: mod/notifications.php:258 mod/contacts.php:656 mod/unfollow.php:122 -#: mod/follow.php:166 mod/admin.php:490 mod/admin.php:500 -msgid "Profile URL" -msgstr "简介 URL" - -#: mod/notifications.php:261 mod/contacts.php:71 src/Model/Profile.php:516 -msgid "Network:" -msgstr "网络" - -#: mod/notifications.php:275 -msgid "No introductions." -msgstr "没有介绍。" - -#: mod/notifications.php:316 -msgid "Show unread" -msgstr "显示未读" - -#: mod/notifications.php:316 -msgid "Show all" -msgstr "显示全部" - -#: mod/notifications.php:322 -#, php-format -msgid "No more %s notifications." -msgstr "没有更多的 %s 通知。" - -#: mod/openid.php:29 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID协议错误。没ID还。 " - -#: mod/openid.php:66 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "找不到账户和OpenID注册不允许。" - -#: mod/openid.php:116 src/Module/Login.php:86 src/Module/Login.php:134 -msgid "Login failed." -msgstr "登录失败。" - -#: mod/dfrn_confirm.php:74 mod/profiles.php:39 mod/profiles.php:149 -#: mod/profiles.php:196 mod/profiles.php:618 -msgid "Profile not found." -msgstr "找不到简介。" - -#: mod/dfrn_confirm.php:132 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "这会偶尔地发生熟人双方都要求和已经批准的时候。" - -#: mod/dfrn_confirm.php:242 -msgid "Response from remote site was not understood." -msgstr "遥网站的回答明白不了。" - -#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "居然回答从遥网站:" - -#: mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "确认成功完成。" - -#: mod/dfrn_confirm.php:275 -msgid "Temporary failure. Please wait and try again." -msgstr "临时失败。请等一会,再试。" - -#: mod/dfrn_confirm.php:278 -msgid "Introduction failed or was revoked." -msgstr "介绍失败或被吊销。" - -#: mod/dfrn_confirm.php:283 -msgid "Remote site reported: " -msgstr "远程站点报告:" - -#: mod/dfrn_confirm.php:396 -msgid "Unable to set contact photo." -msgstr "无法设置联系人照片。" - -#: mod/dfrn_confirm.php:498 -#, php-format -msgid "No user record found for '%s' " -msgstr "找不到「%s」的用户记录" - -#: mod/dfrn_confirm.php:508 -msgid "Our site encryption key is apparently messed up." -msgstr "看起来我们的加密钥匙失灵了。" - -#: mod/dfrn_confirm.php:519 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "空的URL供应,或URL解不了码。" - -#: mod/dfrn_confirm.php:535 -msgid "Contact record was not found for you on our site." -msgstr "无法在本站点为您找到联系人记录。" - -#: mod/dfrn_confirm.php:549 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "没有网站公开钥匙在熟人记录在URL%s。" - -#: mod/dfrn_confirm.php:565 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "身份证明由您的系统是在我们的重做。你再试应该运行。" - -#: mod/dfrn_confirm.php:576 -msgid "Unable to set your contact credentials on our system." -msgstr "不能创作您的熟人证件在我们的系统。" - -#: mod/dfrn_confirm.php:631 -msgid "Unable to update your contact profile details on our system" -msgstr "不能更新您的熟人简介消息在我们的系统" - -#: mod/dfrn_confirm.php:661 mod/dfrn_request.php:568 -#: src/Model/Contact.php:1537 -msgid "[Name Withheld]" -msgstr "[名字拒给]" - -#: mod/dfrn_confirm.php:694 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s加入%2$s了" - #: mod/manage.php:180 msgid "Manage Identities and/or Pages" msgstr "管理身份或页" @@ -2008,6 +1619,18 @@ msgstr "交替不同同一人或社会/组页合用您的账户或给您「管 msgid "Select an identity to manage: " msgstr "选择同一个人管理:" +#: mod/manage.php:184 mod/localtime.php:56 mod/poke.php:199 +#: mod/fsuggest.php:114 mod/photos.php:1080 mod/photos.php:1160 +#: mod/photos.php:1445 mod/photos.php:1491 mod/photos.php:1530 +#: mod/photos.php:1603 mod/contacts.php:610 mod/events.php:530 +#: mod/invite.php:154 mod/crepair.php:148 mod/install.php:198 +#: mod/install.php:237 mod/message.php:246 mod/message.php:413 +#: mod/profiles.php:579 view/theme/duepuntozero/config.php:71 +#: view/theme/frio/config.php:118 view/theme/quattro/config.php:73 +#: view/theme/vier/config.php:119 src/Object/Post.php:804 +msgid "Submit" +msgstr "提交" + #: mod/wall_attach.php:24 mod/wall_attach.php:32 mod/wall_attach.php:83 #: mod/wall_upload.php:38 mod/wall_upload.php:54 mod/wall_upload.php:112 #: mod/wall_upload.php:155 mod/wall_upload.php:158 @@ -2031,191 +1654,6 @@ msgstr "文件超过了 %s 的大小限制" msgid "File upload failed." msgstr "文件上传失败。" -#: mod/dfrn_request.php:94 -msgid "This introduction has already been accepted." -msgstr "这个介绍已经接受了。" - -#: mod/dfrn_request.php:112 mod/dfrn_request.php:359 -msgid "Profile location is not valid or does not contain profile information." -msgstr "简介位置失效或不包含简介信息。" - -#: mod/dfrn_request.php:116 mod/dfrn_request.php:363 -msgid "Warning: profile location has no identifiable owner name." -msgstr "警告:简介位置没有可设别的主名。" - -#: mod/dfrn_request.php:119 mod/dfrn_request.php:366 -msgid "Warning: profile location has no profile photo." -msgstr "警告:简介位置没有简介图。" - -#: mod/dfrn_request.php:123 mod/dfrn_request.php:370 -#, 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] "%d需要的参数没找到在输入的位置。" - -#: mod/dfrn_request.php:162 -msgid "Introduction complete." -msgstr "介绍完成的。" - -#: mod/dfrn_request.php:199 -msgid "Unrecoverable protocol error." -msgstr "不能恢复的协议错误" - -#: mod/dfrn_request.php:226 -msgid "Profile unavailable." -msgstr "简介无效" - -#: mod/dfrn_request.php:248 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s今天已经受到了太多联络要求" - -#: mod/dfrn_request.php:249 -msgid "Spam protection measures have been invoked." -msgstr "垃圾保护措施被用了。" - -#: mod/dfrn_request.php:250 -msgid "Friends are advised to please try again in 24 hours." -msgstr "朋友们被建议请24小时后再试。" - -#: mod/dfrn_request.php:280 -msgid "Invalid locator" -msgstr "无效找到物" - -#: mod/dfrn_request.php:316 -msgid "You have already introduced yourself here." -msgstr "您已经自我介绍这儿。" - -#: mod/dfrn_request.php:319 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "看上去您已经是%s的朋友。" - -#: mod/dfrn_request.php:339 -msgid "Invalid profile URL." -msgstr "无效的简介URL。" - -#: mod/dfrn_request.php:345 src/Model/Contact.php:1235 -msgid "Disallowed profile URL." -msgstr "不允许的简介地址." - -#: mod/dfrn_request.php:351 mod/admin.php:353 mod/admin.php:371 -#: mod/friendica.php:128 src/Model/Contact.php:1240 -msgid "Blocked domain" -msgstr "被封禁的域名" - -#: mod/dfrn_request.php:419 mod/contacts.php:230 -msgid "Failed to update contact record." -msgstr "更新联系人记录失败。" - -#: mod/dfrn_request.php:439 -msgid "Your introduction has been sent." -msgstr "您的介绍发布了。" - -#: mod/dfrn_request.php:477 -msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." -msgstr "无法为您的网络完成远程订阅。请直接在您的系统上订阅。" - -#: mod/dfrn_request.php:493 -msgid "Please login to confirm introduction." -msgstr "请登录以确认介绍。" - -#: mod/dfrn_request.php:501 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "当前登录的身份不正确。请登录到这个用户。" - -#: mod/dfrn_request.php:515 mod/dfrn_request.php:532 -msgid "Confirm" -msgstr "确认" - -#: mod/dfrn_request.php:527 -msgid "Hide this contact" -msgstr "隐藏这个联系人" - -#: mod/dfrn_request.php:530 -#, php-format -msgid "Welcome home %s." -msgstr "欢迎%s。" - -#: mod/dfrn_request.php:531 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "请确认您的介绍/联络要求给%s。" - -#: mod/dfrn_request.php:607 mod/probe.php:13 mod/search.php:98 -#: mod/search.php:104 mod/viewcontacts.php:45 mod/webfinger.php:16 -#: mod/photos.php:932 mod/videos.php:199 mod/display.php:203 -#: mod/directory.php:42 mod/community.php:27 -msgid "Public access denied." -msgstr "拒绝公开访问" - -#: mod/dfrn_request.php:642 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "请从以下支持的通信网络之一输入你的 “身份地址”:" - -#: mod/dfrn_request.php:645 -#, php-format -msgid "" -"If you are not yet a member of the free social web, follow " -"this link to find a public Friendica site and join us today." -msgstr "如果您还不是自由社交网络用户中的一员, 请通过此链接查找公共 Friendica 站点并在今天加入我们吧 。" - -#: mod/dfrn_request.php:650 -msgid "Friend/Connection Request" -msgstr "朋友/连接请求" - -#: mod/dfrn_request.php:651 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@gnusocial.de" -msgstr "例如:jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de" - -#: mod/dfrn_request.php:652 mod/follow.php:149 -msgid "Please answer the following:" -msgstr "请回答下述的:" - -#: mod/dfrn_request.php:653 mod/follow.php:150 -#, php-format -msgid "Does %s know you?" -msgstr "%s是否认识你?" - -#: mod/dfrn_request.php:654 mod/follow.php:151 -msgid "Add a personal note:" -msgstr "添加一个个人便条:" - -#: mod/dfrn_request.php:656 src/Content/ContactSelector.php:79 -msgid "Friendica" -msgstr "Friendica" - -#: mod/dfrn_request.php:657 -msgid "GNU Social (Pleroma, Mastodon)" -msgstr "GNU Social (Pleroma, Mastodon)" - -#: mod/dfrn_request.php:658 -msgid "Diaspora (Socialhome, Hubzilla)" -msgstr "Diaspora (Socialhome, Hubzilla)" - -#: mod/dfrn_request.php:659 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr " - 请别用这个表格。而是在你的 Diaspora 搜索栏输入 %s." - -#: mod/dfrn_request.php:660 mod/unfollow.php:113 mod/follow.php:157 -msgid "Your Identity Address:" -msgstr "你的身份地址:" - -#: mod/dfrn_request.php:662 mod/unfollow.php:65 mod/follow.php:62 -msgid "Submit Request" -msgstr "提交要求" - #: mod/filer.php:34 msgid "- select -" msgstr "-选择-" @@ -2257,6 +1695,10 @@ msgstr "请选择你的时区:" msgid "No more system notifications." msgstr "没别系统通知。" +#: mod/notify.php:81 mod/notifications.php:113 +msgid "System Notifications" +msgstr "系统通知" + #: mod/ping.php:292 msgid "{0} wants to be your friend" msgstr "{0}想成为您的朋友" @@ -2289,11 +1731,18 @@ msgstr "选择您想把别人作" msgid "Make this post private" msgstr "使这个文章私人" +#: mod/probe.php:13 mod/search.php:98 mod/search.php:104 +#: mod/viewcontacts.php:45 mod/webfinger.php:16 mod/photos.php:932 +#: mod/videos.php:199 mod/directory.php:42 mod/community.php:27 +#: mod/dfrn_request.php:602 mod/display.php:203 +msgid "Public access denied." +msgstr "拒绝公开访问" + #: mod/probe.php:14 mod/webfinger.php:17 msgid "Only logged in users are permitted to perform a probing." msgstr "只有已登录用户才被允许进行探测。" -#: mod/profperm.php:28 mod/group.php:83 index.php:443 +#: mod/profperm.php:28 mod/group.php:83 index.php:435 msgid "Permission denied" msgstr "权限不够" @@ -2466,7 +1915,7 @@ msgstr "消息发了" msgid "No recipient." msgstr "没有接受者。" -#: mod/wallmessage.php:132 mod/message.php:250 +#: mod/wallmessage.php:132 mod/message.php:231 msgid "Send Private Message" msgstr "发私人的通信" @@ -2477,20 +1926,20 @@ msgid "" "your site allow private mail from unknown senders." msgstr "如果您想%s回答,请核对您网站的隐私设置允许生发送人的私人邮件。" -#: mod/wallmessage.php:134 mod/message.php:251 mod/message.php:421 +#: mod/wallmessage.php:134 mod/message.php:232 mod/message.php:402 msgid "To:" msgstr "到:" -#: mod/wallmessage.php:135 mod/message.php:255 mod/message.php:423 +#: mod/wallmessage.php:135 mod/message.php:236 mod/message.php:404 msgid "Subject:" msgstr "题目:" -#: mod/wallmessage.php:141 mod/message.php:259 mod/message.php:426 -#: mod/invite.php:149 +#: mod/wallmessage.php:141 mod/invite.php:149 mod/message.php:240 +#: mod/message.php:407 msgid "Your message:" msgstr "你的消息:" -#: mod/bookmarklet.php:23 src/Content/Nav.php:114 src/Module/Login.php:312 +#: mod/bookmarklet.php:23 src/Content/Nav.php:114 src/Module/Login.php:313 msgid "Login" msgstr "登录" @@ -2514,6 +1963,11 @@ msgstr "抄送: 电子邮件地址" msgid "Example: bob@example.com, mary@example.com" msgstr "比如: li@example.com, wang@example.com" +#: mod/fsuggest.php:30 mod/fsuggest.php:96 mod/crepair.php:110 +#: mod/dfrn_confirm.php:129 +msgid "Contact not found." +msgstr "没有找到联系人。" + #: mod/fsuggest.php:72 msgid "Friend suggestion sent." msgstr "朋友建议发送了。" @@ -2527,149 +1981,6 @@ msgstr "推荐的朋友们" msgid "Suggest a friend for %s" msgstr "给 %s 推荐朋友" -#: mod/group.php:36 -msgid "Group created." -msgstr "群组已创建。" - -#: mod/group.php:42 -msgid "Could not create group." -msgstr "无法创建群组。" - -#: mod/group.php:56 mod/group.php:157 -msgid "Group not found." -msgstr "组找不到。" - -#: mod/group.php:70 -msgid "Group name changed." -msgstr "组名变化了。" - -#: mod/group.php:97 -msgid "Save Group" -msgstr "保存组" - -#: mod/group.php:102 -msgid "Create a group of contacts/friends." -msgstr "创建一组联系人/朋友。" - -#: mod/group.php:103 mod/group.php:199 src/Model/Group.php:421 -msgid "Group Name: " -msgstr "组名:" - -#: mod/group.php:127 -msgid "Group removed." -msgstr "组删除了。" - -#: mod/group.php:129 -msgid "Unable to remove group." -msgstr "不能删除组。" - -#: mod/group.php:192 -msgid "Delete Group" -msgstr "删除群组" - -#: mod/group.php:198 -msgid "Group Editor" -msgstr "组编辑器" - -#: mod/group.php:203 -msgid "Edit Group Name" -msgstr "编辑群组名称" - -#: mod/group.php:213 -msgid "Members" -msgstr "成员" - -#: mod/group.php:215 mod/contacts.php:719 -msgid "All Contacts" -msgstr "所有联系人" - -#: mod/group.php:216 mod/network.php:639 -msgid "Group is empty" -msgstr "组没有成员" - -#: mod/group.php:229 -msgid "Remove Contact" -msgstr "删除联系人" - -#: mod/group.php:253 -msgid "Add Contact" -msgstr "添加联系人" - -#: mod/message.php:30 src/Content/Nav.php:195 -msgid "New Message" -msgstr "新的消息" - -#: mod/message.php:77 -msgid "Unable to locate contact information." -msgstr "无法找到联系人信息。" - -#: mod/message.php:112 view/theme/frio/theme.php:268 src/Content/Nav.php:192 -msgid "Messages" -msgstr "消息" - -#: mod/message.php:136 -msgid "Do you really want to delete this message?" -msgstr "您真的想删除这个通知吗?" - -#: mod/message.php:156 -msgid "Message deleted." -msgstr "消息删除了。" - -#: mod/message.php:185 -msgid "Conversation removed." -msgstr "交流删除了。" - -#: mod/message.php:291 -msgid "No messages." -msgstr "没有消息" - -#: mod/message.php:330 -msgid "Message not available." -msgstr "通信不可用的" - -#: mod/message.php:397 -msgid "Delete message" -msgstr "删除消息" - -#: mod/message.php:399 mod/message.php:500 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: mod/message.php:414 mod/message.php:497 -msgid "Delete conversation" -msgstr "删除交谈" - -#: mod/message.php:416 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "没可用的安全交通。您可能会在发送人的简介页会回答。" - -#: mod/message.php:420 -msgid "Send Reply" -msgstr "发回答" - -#: mod/message.php:471 -#, php-format -msgid "Unknown sender - %s" -msgstr "生发送人-%s" - -#: mod/message.php:473 -#, php-format -msgid "You and %s" -msgstr "您和%s" - -#: mod/message.php:475 -#, php-format -msgid "%s and You" -msgstr "%s和您" - -#: mod/message.php:503 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d通知" - #: mod/notes.php:52 src/Model/Profile.php:944 msgid "Personal Notes" msgstr "私人便条" @@ -2770,11 +2081,11 @@ msgstr "别显示现状报到关于这个上传" msgid "Permissions" msgstr "权限" -#: mod/photos.php:1106 mod/photos.php:1449 mod/settings.php:1231 +#: mod/photos.php:1106 mod/photos.php:1449 mod/settings.php:1218 msgid "Show to Groups" msgstr "给组表示" -#: mod/photos.php:1107 mod/photos.php:1450 mod/settings.php:1232 +#: mod/photos.php:1107 mod/photos.php:1450 mod/settings.php:1219 msgid "Show to Contacts" msgstr "展示给联系人" @@ -2859,21 +2170,21 @@ msgstr "顺时针地转动(左)" msgid "Rotate CCW (left)" msgstr "反顺时针地转动(右)" -#: mod/photos.php:1471 src/Object/Post.php:296 +#: mod/photos.php:1471 src/Object/Post.php:304 msgid "I like this (toggle)" msgstr "我喜欢这(交替)" -#: mod/photos.php:1472 src/Object/Post.php:297 +#: mod/photos.php:1472 src/Object/Post.php:305 msgid "I don't like this (toggle)" msgstr "我不喜欢这(交替)" #: mod/photos.php:1488 mod/photos.php:1527 mod/photos.php:1600 -#: mod/contacts.php:953 src/Object/Post.php:793 +#: mod/contacts.php:953 src/Object/Post.php:801 msgid "This is you" msgstr "这是你" #: mod/photos.php:1490 mod/photos.php:1529 mod/photos.php:1602 -#: src/Object/Post.php:399 src/Object/Post.php:795 +#: src/Object/Post.php:407 src/Object/Post.php:803 msgid "Comment" msgstr "评论" @@ -2905,7 +2216,7 @@ msgstr "最近的视频" msgid "Upload New Videos" msgstr "上传新视频" -#: mod/cal.php:142 mod/display.php:313 mod/profile.php:173 +#: mod/cal.php:142 mod/display.php:316 mod/profile.php:174 msgid "Access to this profile has been restricted." msgstr "使用权这个简介被限制了." @@ -2923,7 +2234,7 @@ msgstr "查看" msgid "Previous" msgstr "上" -#: mod/cal.php:277 mod/events.php:395 mod/install.php:209 +#: mod/cal.php:277 mod/events.php:395 mod/install.php:156 msgid "Next" msgstr "下" @@ -2966,6 +2277,10 @@ msgstr "找不到可导出的数据" msgid "calendar" msgstr "日历" +#: mod/contacts.php:71 mod/notifications.php:259 src/Model/Profile.php:516 +msgid "Network:" +msgstr "网络" + #: mod/contacts.php:157 #, php-format msgid "%d contact edited." @@ -2984,6 +2299,10 @@ msgstr "找不到选择的简介。" msgid "Contact updated." msgstr "联系人更新了。" +#: mod/contacts.php:230 mod/dfrn_request.php:415 +msgid "Failed to update contact record." +msgstr "更新联系人记录失败。" + #: mod/contacts.php:421 msgid "Contact has been blocked" msgstr "联系人已被屏蔽" @@ -3075,8 +2394,8 @@ msgid "" "are taken from the meta header in the feed item and are posted as hash tags." msgstr "" -#: mod/contacts.php:572 mod/admin.php:1274 mod/admin.php:1437 -#: mod/admin.php:1447 +#: mod/contacts.php:572 mod/admin.php:1288 mod/admin.php:1450 +#: mod/admin.php:1460 msgid "Disabled" msgstr "已停用" @@ -3152,12 +2471,12 @@ msgid "Update now" msgstr "现在更新" #: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011 -#: mod/admin.php:485 mod/admin.php:1816 +#: mod/admin.php:489 mod/admin.php:1829 msgid "Unblock" msgstr "解除屏蔽" #: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011 -#: mod/admin.php:484 mod/admin.php:1815 +#: mod/admin.php:488 mod/admin.php:1828 msgid "Block" msgstr "屏蔽" @@ -3165,6 +2484,12 @@ msgstr "屏蔽" msgid "Unignore" msgstr "取消忽视" +#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019 +#: mod/notifications.php:62 mod/notifications.php:181 +#: mod/notifications.php:264 +msgid "Ignore" +msgstr "忽视" + #: mod/contacts.php:642 msgid "Currently blocked" msgstr "现在被封禁的" @@ -3181,6 +2506,10 @@ msgstr "当前已存档" msgid "Awaiting connection acknowledge" msgstr "等待连接确认" +#: mod/contacts.php:646 mod/notifications.php:175 mod/notifications.php:253 +msgid "Hide this contact from others" +msgstr "对其他人隐藏这个联系人" + #: mod/contacts.php:646 msgid "" "Replies/likes to your public posts may still be visible" @@ -3204,10 +2533,31 @@ msgid "" "when \"Fetch information and keywords\" is selected" msgstr "逗号分的关键词不应该翻译成主题标签,如果“取消息和关键词”选择的。" +#: mod/contacts.php:656 mod/unfollow.php:122 mod/follow.php:166 +#: mod/admin.php:494 mod/admin.php:504 mod/notifications.php:256 +msgid "Profile URL" +msgstr "简介 URL" + +#: mod/contacts.php:660 mod/events.php:518 mod/directory.php:148 +#: mod/notifications.php:246 src/Model/Event.php:60 src/Model/Event.php:85 +#: src/Model/Event.php:421 src/Model/Event.php:900 src/Model/Profile.php:413 +msgid "Location:" +msgstr "位置:" + #: mod/contacts.php:662 src/Model/Profile.php:420 msgid "XMPP:" msgstr "XMPP:" +#: mod/contacts.php:664 mod/directory.php:154 mod/notifications.php:248 +#: src/Model/Profile.php:419 src/Model/Profile.php:804 +msgid "About:" +msgstr "关于:" + +#: mod/contacts.php:666 mod/follow.php:174 mod/notifications.php:250 +#: src/Model/Profile.php:792 +msgid "Tags:" +msgstr "标签:" + #: mod/contacts.php:667 msgid "Actions" msgstr "" @@ -3229,6 +2579,10 @@ msgstr "建议" msgid "Suggest potential friends" msgstr "建议潜在朋友们" +#: mod/contacts.php:719 mod/group.php:215 +msgid "All Contacts" +msgstr "所有联系人" + #: mod/contacts.php:722 msgid "Show all contacts" msgstr "显示所有的联系人" @@ -3282,7 +2636,7 @@ msgstr "搜索您的联系人" msgid "Find" msgstr "搜索" -#: mod/contacts.php:826 mod/settings.php:171 mod/settings.php:703 +#: mod/contacts.php:826 mod/settings.php:169 mod/settings.php:695 msgid "Update" msgstr "更新" @@ -3315,7 +2669,7 @@ msgstr "查看所有联系人" msgid "View all common friends" msgstr "查看所有公共好友" -#: mod/contacts.php:895 mod/events.php:532 mod/admin.php:1353 +#: mod/contacts.php:895 mod/events.php:532 mod/admin.php:1363 #: src/Model/Profile.php:863 msgid "Advanced" msgstr "高级" @@ -3379,14 +2733,14 @@ msgid "" "settings. Please double check whom you give this access." msgstr "" -#: mod/delegate.php:168 mod/admin.php:307 mod/admin.php:1348 -#: mod/admin.php:1981 mod/admin.php:2234 mod/admin.php:2308 mod/admin.php:2455 -#: mod/settings.php:677 mod/settings.php:786 mod/settings.php:874 -#: mod/settings.php:963 mod/settings.php:1196 +#: mod/delegate.php:168 mod/admin.php:311 mod/admin.php:1358 +#: mod/admin.php:1994 mod/admin.php:2247 mod/admin.php:2321 mod/admin.php:2468 +#: mod/settings.php:669 mod/settings.php:776 mod/settings.php:864 +#: mod/settings.php:953 mod/settings.php:1183 msgid "Save Settings" msgstr "保存设置" -#: mod/delegate.php:169 src/Content/Nav.php:201 +#: mod/delegate.php:169 src/Content/Nav.php:205 msgid "Delegate Page Management" msgstr "页代表管理" @@ -3441,7 +2795,7 @@ msgstr "需要开始日期和标题。" msgid "Event Starts:" msgstr "事件开始:" -#: mod/events.php:508 mod/events.php:520 mod/profiles.php:700 +#: mod/events.php:508 mod/events.php:520 mod/profiles.php:607 msgid "Required" msgstr "必须的" @@ -3489,37 +2843,6 @@ msgstr "您必须登录才能使用此模块" msgid "Source URL" msgstr "源链接" -#: mod/item.php:114 -msgid "Unable to locate original post." -msgstr "找不到当初的新闻" - -#: mod/item.php:274 -msgid "Empty post discarded." -msgstr "空帖子被丢弃了。" - -#: mod/item.php:799 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "这个新闻是由%s,Friendica社会化网络成员之一,发给你。" - -#: mod/item.php:801 -#, php-format -msgid "You may visit them online at %s" -msgstr "你可以网上拜访他在%s" - -#: mod/item.php:802 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "你不想受到这些新闻的话,请回答这个新闻给发者联系。" - -#: mod/item.php:806 -#, php-format -msgid "%s posted an update." -msgstr "%s贴上一个新闻。" - #: mod/oexchange.php:30 msgid "Post successful." msgstr "评论发表了。" @@ -3548,7 +2871,7 @@ msgstr "成功" msgid "failed" msgstr "失败" -#: mod/ostatus_subscribe.php:83 src/Object/Post.php:279 +#: mod/ostatus_subscribe.php:83 src/Object/Post.php:287 msgid "ignored" msgstr "已忽视的" @@ -3616,6 +2939,10 @@ msgstr "找不到联系人或者不能关注联系人。" msgid "Contact unfollowed" msgstr "取消关注了的联系人" +#: mod/unfollow.php:65 mod/follow.php:62 mod/dfrn_request.php:657 +msgid "Submit Request" +msgstr "提交要求" + #: mod/unfollow.php:73 msgid "You aren't a friend of this contact." msgstr "你不是这个联系人的朋友。" @@ -3624,6 +2951,15 @@ msgstr "你不是这个联系人的朋友。" msgid "Unfollowing is currently not supported by your network." msgstr "取消关注现在不被你的网络支持。" +#: mod/unfollow.php:113 mod/follow.php:157 mod/dfrn_request.php:655 +msgid "Your Identity Address:" +msgstr "你的身份地址:" + +#: mod/directory.php:151 mod/notifications.php:252 src/Model/Profile.php:416 +#: src/Model/Profile.php:743 +msgid "Gender:" +msgstr "性别:" + #: mod/directory.php:152 src/Model/Profile.php:417 src/Model/Profile.php:767 msgid "Status:" msgstr "现状:" @@ -3683,6 +3019,19 @@ msgstr "OStatus 支持没被启用。无法添加联系人。" msgid "The network type couldn't be detected. Contact can't be added." msgstr "网络类型无法被检测。无法添加联系人。" +#: mod/follow.php:149 mod/dfrn_request.php:647 +msgid "Please answer the following:" +msgstr "请回答下述的:" + +#: mod/follow.php:150 mod/dfrn_request.php:648 +#, php-format +msgid "Does %s know you?" +msgstr "%s是否认识你?" + +#: mod/follow.php:151 mod/dfrn_request.php:649 +msgid "Add a personal note:" +msgstr "添加一个个人便条:" + #: mod/lostpass.php:27 msgid "No valid account found." msgstr "找不到效的账户。" @@ -3749,7 +3098,7 @@ msgid "" "your email for further instructions." msgstr "输入您的邮件地址和提交为重置密码。然后核对收件箱看别的说明。" -#: mod/lostpass.php:119 src/Module/Login.php:314 +#: mod/lostpass.php:119 src/Module/Login.php:315 msgid "Nickname or Email: " msgstr "昵称或邮件地址:" @@ -3757,7 +3106,7 @@ msgstr "昵称或邮件地址:" msgid "Reset" msgstr "复位" -#: mod/lostpass.php:136 src/Module/Login.php:326 +#: mod/lostpass.php:136 src/Module/Login.php:327 msgid "Password Reset" msgstr "复位密码" @@ -3813,2231 +3162,6 @@ msgstr "" msgid "Your password has been changed at %s" msgstr "您密码被变化在%s" -#: mod/profiles.php:58 -msgid "Profile deleted." -msgstr "简介删除了。" - -#: mod/profiles.php:74 mod/profiles.php:110 -msgid "Profile-" -msgstr "简介-" - -#: mod/profiles.php:93 mod/profiles.php:132 -msgid "New profile created." -msgstr "新的简介已创建。" - -#: mod/profiles.php:116 -msgid "Profile unavailable to clone." -msgstr "简介不可用为复制。" - -#: mod/profiles.php:206 -msgid "Profile Name is required." -msgstr "必要简介名" - -#: mod/profiles.php:347 -msgid "Marital Status" -msgstr "婚姻状况 " - -#: mod/profiles.php:351 -msgid "Romantic Partner" -msgstr "情人" - -#: mod/profiles.php:363 -msgid "Work/Employment" -msgstr "工作" - -#: mod/profiles.php:366 -msgid "Religion" -msgstr "宗教" - -#: mod/profiles.php:370 -msgid "Political Views" -msgstr "政治观念" - -#: mod/profiles.php:374 -msgid "Gender" -msgstr "性别" - -#: mod/profiles.php:378 -msgid "Sexual Preference" -msgstr "性取向" - -#: mod/profiles.php:382 -msgid "XMPP" -msgstr "XMPP" - -#: mod/profiles.php:386 -msgid "Homepage" -msgstr "主页" - -#: mod/profiles.php:390 mod/profiles.php:686 -msgid "Interests" -msgstr "兴趣" - -#: mod/profiles.php:394 mod/admin.php:490 -msgid "Address" -msgstr "地址" - -#: mod/profiles.php:401 mod/profiles.php:682 -msgid "Location" -msgstr "位置" - -#: mod/profiles.php:486 -msgid "Profile updated." -msgstr "简介更新了。" - -#: mod/profiles.php:564 -msgid " and " -msgstr "和" - -#: mod/profiles.php:573 -msgid "public profile" -msgstr "公开简介" - -#: mod/profiles.php:576 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s把%2$s变化成“%3$s”" - -#: mod/profiles.php:577 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr " - 看 %1$s的%2$s" - -#: mod/profiles.php:579 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s有更新的%2$s,修改%3$s." - -#: mod/profiles.php:633 -msgid "Hide contacts and friends:" -msgstr "隐藏联系人和朋友:" - -#: mod/profiles.php:638 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "藏起来发现您的熟人/朋友单不让这个简介看着看?" - -#: mod/profiles.php:658 -msgid "Show more profile fields:" -msgstr "显示更多简介内容:" - -#: mod/profiles.php:670 -msgid "Profile Actions" -msgstr "" - -#: mod/profiles.php:671 -msgid "Edit Profile Details" -msgstr "剪辑简介消息" - -#: mod/profiles.php:673 -msgid "Change Profile Photo" -msgstr "改变简介照片" - -#: mod/profiles.php:674 -msgid "View this profile" -msgstr "看这个简介" - -#: mod/profiles.php:675 mod/profiles.php:770 src/Model/Profile.php:389 -msgid "Edit visibility" -msgstr "修改能见度" - -#: mod/profiles.php:676 -msgid "Create a new profile using these settings" -msgstr "使用这些设置创建一份新的简介" - -#: mod/profiles.php:677 -msgid "Clone this profile" -msgstr "复制这个简介" - -#: mod/profiles.php:678 -msgid "Delete this profile" -msgstr "删除这个简介" - -#: mod/profiles.php:680 -msgid "Basic information" -msgstr "基本信息" - -#: mod/profiles.php:681 -msgid "Profile picture" -msgstr "头像" - -#: mod/profiles.php:683 -msgid "Preferences" -msgstr "偏好" - -#: mod/profiles.php:684 -msgid "Status information" -msgstr "状态信息" - -#: mod/profiles.php:685 -msgid "Additional information" -msgstr "更多信息" - -#: mod/profiles.php:687 mod/network.php:956 -#: src/Core/NotificationsManager.php:185 -msgid "Personal" -msgstr "私人" - -#: mod/profiles.php:688 -msgid "Relation" -msgstr "关系" - -#: mod/profiles.php:689 src/Util/Temporal.php:81 src/Util/Temporal.php:83 -msgid "Miscellaneous" -msgstr "形形色色" - -#: mod/profiles.php:692 -msgid "Your Gender:" -msgstr "你的性:" - -#: mod/profiles.php:693 -msgid " Marital Status:" -msgstr "婚姻状况:" - -#: mod/profiles.php:694 src/Model/Profile.php:780 -msgid "Sexual Preference:" -msgstr "性取向:" - -#: mod/profiles.php:695 -msgid "Example: fishing photography software" -msgstr "例如:钓鱼 照片 软件" - -#: mod/profiles.php:700 -msgid "Profile Name:" -msgstr "简介名:" - -#: mod/profiles.php:702 -msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." -msgstr "这是你的公开的简介。
可能被所有的因特网用的看到。" - -#: mod/profiles.php:703 -msgid "Your Full Name:" -msgstr "你的全名:" - -#: mod/profiles.php:704 -msgid "Title/Description:" -msgstr "标题/描述:" - -#: mod/profiles.php:707 -msgid "Street Address:" -msgstr "地址:" - -#: mod/profiles.php:708 -msgid "Locality/City:" -msgstr "现场/城市:" - -#: mod/profiles.php:709 -msgid "Region/State:" -msgstr "区域/省" - -#: mod/profiles.php:710 -msgid "Postal/Zip Code:" -msgstr "邮政编码:" - -#: mod/profiles.php:711 -msgid "Country:" -msgstr "国家:" - -#: mod/profiles.php:712 src/Util/Temporal.php:149 -msgid "Age: " -msgstr "年纪:" - -#: mod/profiles.php:715 -msgid "Who: (if applicable)" -msgstr "谁:(要是使用)" - -#: mod/profiles.php:715 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "比如:limou,李某,limou@example。com" - -#: mod/profiles.php:716 -msgid "Since [date]:" -msgstr "追溯[日期]:" - -#: mod/profiles.php:718 -msgid "Tell us about yourself..." -msgstr "给我们自我介绍..." - -#: mod/profiles.php:719 -msgid "XMPP (Jabber) address:" -msgstr "XMPP (Jabber) 地址:" - -#: mod/profiles.php:719 -msgid "" -"The XMPP address will be propagated to your contacts so that they can follow" -" you." -msgstr "这个 XMPP 地址会被传播到你的联系人从而他们可以关注你。" - -#: mod/profiles.php:720 -msgid "Homepage URL:" -msgstr "主页URL:" - -#: mod/profiles.php:721 src/Model/Profile.php:788 -msgid "Hometown:" -msgstr "故乡:" - -#: mod/profiles.php:722 src/Model/Profile.php:796 -msgid "Political Views:" -msgstr "政治观念:" - -#: mod/profiles.php:723 -msgid "Religious Views:" -msgstr " 宗教信仰 :" - -#: mod/profiles.php:724 -msgid "Public Keywords:" -msgstr "公开关键字 :" - -#: mod/profiles.php:724 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(用于建议可能的朋友们,会被别人看)" - -#: mod/profiles.php:725 -msgid "Private Keywords:" -msgstr "私人关键字" - -#: mod/profiles.php:725 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(用于搜索简介,没有给别人看)" - -#: mod/profiles.php:726 src/Model/Profile.php:812 -msgid "Likes:" -msgstr "喜欢:" - -#: mod/profiles.php:727 src/Model/Profile.php:816 -msgid "Dislikes:" -msgstr "不喜欢:" - -#: mod/profiles.php:728 -msgid "Musical interests" -msgstr "音乐兴趣" - -#: mod/profiles.php:729 -msgid "Books, literature" -msgstr "书,文学" - -#: mod/profiles.php:730 -msgid "Television" -msgstr "电视" - -#: mod/profiles.php:731 -msgid "Film/dance/culture/entertainment" -msgstr "电影/跳舞/文化/娱乐" - -#: mod/profiles.php:732 -msgid "Hobbies/Interests" -msgstr "爱好/兴趣" - -#: mod/profiles.php:733 -msgid "Love/romance" -msgstr "爱情/浪漫" - -#: mod/profiles.php:734 -msgid "Work/employment" -msgstr "工作" - -#: mod/profiles.php:735 -msgid "School/education" -msgstr "学院/教育" - -#: mod/profiles.php:736 -msgid "Contact information and Social Networks" -msgstr "熟人信息和社会化网络" - -#: mod/profiles.php:767 src/Model/Profile.php:385 -msgid "Profile Image" -msgstr "简介图像" - -#: mod/profiles.php:769 src/Model/Profile.php:388 -msgid "visible to everybody" -msgstr "给打假可见的" - -#: mod/profiles.php:776 -msgid "Edit/Manage Profiles" -msgstr "编辑/管理简介" - -#: mod/profiles.php:777 src/Model/Profile.php:375 src/Model/Profile.php:397 -msgid "Change profile photo" -msgstr "换简介照片" - -#: mod/profiles.php:778 src/Model/Profile.php:376 -msgid "Create New Profile" -msgstr "创建新的简介" - -#: mod/register.php:99 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "注册成功了。请咨询说明再您的收件箱。" - -#: mod/register.php:103 -#, php-format -msgid "" -"Failed to send email message. Here your accout details:
login: %s
" -"password: %s

You can change your password after login." -msgstr "发送邮件失败。你的账户消息是:
用户名:%s
密码: %s

。登录后能改密码。" - -#: mod/register.php:110 -msgid "Registration successful." -msgstr "注册成功。" - -#: mod/register.php:115 -msgid "Your registration can not be processed." -msgstr "处理不了您的注册。" - -#: mod/register.php:162 -msgid "Your registration is pending approval by the site owner." -msgstr "您的注册等网页主的批准。" - -#: mod/register.php:220 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "您会(可选的)用OpenID填这个表格通过提供您的OpenID和点击「注册」。" - -#: mod/register.php:221 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "如果您没熟悉OpenID,请留空这个栏和填另些栏。" - -#: mod/register.php:222 -msgid "Your OpenID (optional): " -msgstr "您的OpenID(可选的):" - -#: mod/register.php:234 -msgid "Include your profile in member directory?" -msgstr "放您的简介再员目录?" - -#: mod/register.php:259 -msgid "Note for the admin" -msgstr "给管理员的便条" - -#: mod/register.php:259 -msgid "Leave a message for the admin, why you want to join this node" -msgstr "给管理员留条消息,为什么你想加入这个节点" - -#: mod/register.php:260 -msgid "Membership on this site is by invitation only." -msgstr "会员身份在这个网站是光通过邀请。" - -#: mod/register.php:261 -msgid "Your invitation code: " -msgstr "您的邀请码:" - -#: mod/register.php:264 mod/admin.php:1350 -msgid "Registration" -msgstr "注册" - -#: mod/register.php:270 -msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " -msgstr "你的全名 (比如张三,真名或看起来是真名):" - -#: mod/register.php:271 -msgid "" -"Your Email Address: (Initial information will be send there, so this has to " -"be an existing address.)" -msgstr "您的电子邮件地址:(初始信息将发送到这里,所以这必须是一个存在的地址。)" - -#: mod/register.php:273 mod/settings.php:1203 -msgid "New Password:" -msgstr "新密码:" - -#: mod/register.php:273 -msgid "Leave empty for an auto generated password." -msgstr "留空以使用自动生成的密码。" - -#: mod/register.php:274 mod/settings.php:1204 -msgid "Confirm:" -msgstr "确认:" - -#: mod/register.php:275 -#, php-format -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be 'nickname@%s'." -msgstr "" - -#: mod/register.php:276 -msgid "Choose a nickname: " -msgstr "选择昵称:" - -#: mod/register.php:279 src/Content/Nav.php:128 src/Module/Login.php:283 -msgid "Register" -msgstr "注册" - -#: mod/register.php:286 -msgid "Import your profile to this friendica instance" -msgstr "进口您的简介到这个friendica服务器" - -#: mod/register.php:288 mod/admin.php:188 mod/admin.php:302 -#: src/Module/Tos.php:48 -msgid "Terms of Service" -msgstr "服务条款" - -#: mod/removeme.php:43 -msgid "User deleted their account" -msgstr "" - -#: mod/removeme.php:44 -msgid "" -"On your Friendica node an user deleted their account. Please ensure that " -"their data is removed from the backups." -msgstr "" - -#: mod/removeme.php:45 -#, php-format -msgid "The user id is %d" -msgstr "用户 id 为 %d" - -#: mod/removeme.php:76 mod/removeme.php:79 -msgid "Remove My Account" -msgstr "删除我的账户" - -#: mod/removeme.php:77 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "这要完全删除您的账户。这一做过,就不能恢复。" - -#: mod/removeme.php:78 -msgid "Please enter your password for verification:" -msgstr "请输入密码为确认:" - -#: mod/admin.php:106 -msgid "Theme settings updated." -msgstr "主题设置更新了。" - -#: mod/admin.php:179 src/Content/Nav.php:175 -msgid "Information" -msgstr "资料" - -#: mod/admin.php:180 -msgid "Overview" -msgstr "概览" - -#: mod/admin.php:181 mod/admin.php:718 -msgid "Federation Statistics" -msgstr "联邦网络统计" - -#: mod/admin.php:182 -msgid "Configuration" -msgstr "配置" - -#: mod/admin.php:183 mod/admin.php:1347 -msgid "Site" -msgstr "网站" - -#: mod/admin.php:184 mod/admin.php:1275 mod/admin.php:1804 mod/admin.php:1820 -msgid "Users" -msgstr "用户" - -#: mod/admin.php:185 mod/admin.php:1920 mod/admin.php:1980 mod/settings.php:87 -msgid "Addons" -msgstr "插件" - -#: mod/admin.php:186 mod/admin.php:2189 mod/admin.php:2233 -msgid "Themes" -msgstr "主题" - -#: mod/admin.php:187 mod/settings.php:65 -msgid "Additional features" -msgstr "附加的特点" - -#: mod/admin.php:189 -msgid "Database" -msgstr "数据库" - -#: mod/admin.php:190 -msgid "DB updates" -msgstr "数据库更新" - -#: mod/admin.php:191 mod/admin.php:753 -msgid "Inspect Queue" -msgstr "" - -#: mod/admin.php:192 -msgid "Tools" -msgstr "工具" - -#: mod/admin.php:193 -msgid "Contact Blocklist" -msgstr "联系人屏蔽列表" - -#: mod/admin.php:194 mod/admin.php:362 -msgid "Server Blocklist" -msgstr "服务器屏蔽列表" - -#: mod/admin.php:195 mod/admin.php:521 -msgid "Delete Item" -msgstr "删除项目" - -#: mod/admin.php:196 mod/admin.php:197 mod/admin.php:2307 -msgid "Logs" -msgstr "记录" - -#: mod/admin.php:198 mod/admin.php:2374 -msgid "View Logs" -msgstr "查看日志" - -#: mod/admin.php:200 -msgid "Diagnostics" -msgstr "诊断" - -#: mod/admin.php:201 -msgid "PHP Info" -msgstr "PHP Info" - -#: mod/admin.php:202 -msgid "probe address" -msgstr "探测地址" - -#: mod/admin.php:203 -msgid "check webfinger" -msgstr "检查 webfinger" - -#: mod/admin.php:222 src/Content/Nav.php:214 -msgid "Admin" -msgstr "管理" - -#: mod/admin.php:223 -msgid "Addon Features" -msgstr "插件特性" - -#: mod/admin.php:224 -msgid "User registrations waiting for confirmation" -msgstr "用户注册等确认" - -#: mod/admin.php:301 mod/admin.php:361 mod/admin.php:478 mod/admin.php:520 -#: mod/admin.php:717 mod/admin.php:752 mod/admin.php:848 mod/admin.php:1346 -#: mod/admin.php:1803 mod/admin.php:1919 mod/admin.php:1979 mod/admin.php:2188 -#: mod/admin.php:2232 mod/admin.php:2306 mod/admin.php:2373 -msgid "Administration" -msgstr "管理" - -#: mod/admin.php:303 -msgid "Display Terms of Service" -msgstr "显示服务条款" - -#: mod/admin.php:303 -msgid "" -"Enable the Terms of Service page. If this is enabled a link to the terms " -"will be added to the registration form and the general information page." -msgstr "" - -#: mod/admin.php:304 -msgid "Display Privacy Statement" -msgstr "显示隐私说明" - -#: mod/admin.php:304 -#, php-format -msgid "" -"Show some informations regarding the needed information to operate the node " -"according e.g. to EU-GDPR." -msgstr "" - -#: mod/admin.php:305 -msgid "The Terms of Service" -msgstr "服务条款" - -#: mod/admin.php:305 -msgid "" -"Enter the Terms of Service for your node here. You can use BBCode. Headers " -"of sections should be [h2] and below." -msgstr "" - -#: mod/admin.php:353 -msgid "The blocked domain" -msgstr "被封禁的域名" - -#: mod/admin.php:354 mod/admin.php:372 mod/friendica.php:128 -msgid "Reason for the block" -msgstr "封禁原因" - -#: mod/admin.php:354 mod/admin.php:367 -msgid "The reason why you blocked this domain." -msgstr "封禁这个域名的原因。" - -#: mod/admin.php:355 -msgid "Delete domain" -msgstr "删除域名" - -#: mod/admin.php:355 -msgid "Check to delete this entry from the blocklist" -msgstr "选中以从列表中删除此条目" - -#: mod/admin.php:363 -msgid "" -"This page can be used to define a black list of servers from the federated " -"network that are not allowed to interact with your node. For all entered " -"domains you should also give a reason why you have blocked the remote " -"server." -msgstr "" - -#: mod/admin.php:364 -msgid "" -"The list of blocked servers will be made publically available on the " -"/friendica page so that your users and people investigating communication " -"problems can find the reason easily." -msgstr "" - -#: mod/admin.php:365 -msgid "Add new entry to block list" -msgstr "添加新条目到屏蔽列表" - -#: mod/admin.php:366 -msgid "Server Domain" -msgstr "服务器域名" - -#: mod/admin.php:366 -msgid "" -"The domain of the new server to add to the block list. Do not include the " -"protocol." -msgstr "需要添加到服务器屏蔽列表的服务器的域名。请勿包括协议。" - -#: mod/admin.php:367 -msgid "Block reason" -msgstr "封禁原因" - -#: mod/admin.php:368 -msgid "Add Entry" -msgstr "添加条目" - -#: mod/admin.php:369 -msgid "Save changes to the blocklist" -msgstr "保存变更到屏蔽列表" - -#: mod/admin.php:370 -msgid "Current Entries in the Blocklist" -msgstr "屏蔽列表中的当前条目" - -#: mod/admin.php:373 -msgid "Delete entry from blocklist" -msgstr "删除屏蔽列表中的条目" - -#: mod/admin.php:376 -msgid "Delete entry from blocklist?" -msgstr "从屏蔽列表删除条目?" - -#: mod/admin.php:402 -msgid "Server added to blocklist." -msgstr "服务器已添加到屏蔽列表。" - -#: mod/admin.php:418 -msgid "Site blocklist updated." -msgstr "站点屏蔽列表已更新。" - -#: mod/admin.php:441 src/Core/Console/GlobalCommunityBlock.php:72 -msgid "The contact has been blocked from the node" -msgstr "该联系人已被本节点屏蔽。" - -#: mod/admin.php:443 src/Core/Console/GlobalCommunityBlock.php:69 -#, php-format -msgid "Could not find any contact entry for this URL (%s)" -msgstr "" - -#: mod/admin.php:450 -#, php-format -msgid "%s contact unblocked" -msgid_plural "%s contacts unblocked" -msgstr[0] "" - -#: mod/admin.php:479 -msgid "Remote Contact Blocklist" -msgstr "" - -#: mod/admin.php:480 -msgid "" -"This page allows you to prevent any message from a remote contact to reach " -"your node." -msgstr "" - -#: mod/admin.php:481 -msgid "Block Remote Contact" -msgstr "" - -#: mod/admin.php:482 mod/admin.php:1806 -msgid "select all" -msgstr "全选" - -#: mod/admin.php:483 -msgid "select none" -msgstr "" - -#: mod/admin.php:486 -msgid "No remote contact is blocked from this node." -msgstr "" - -#: mod/admin.php:488 -msgid "Blocked Remote Contacts" -msgstr "" - -#: mod/admin.php:489 -msgid "Block New Remote Contact" -msgstr "" - -#: mod/admin.php:490 -msgid "Photo" -msgstr "照片" - -#: mod/admin.php:498 -#, php-format -msgid "%s total blocked contact" -msgid_plural "%s total blocked contacts" -msgstr[0] "" - -#: mod/admin.php:500 -msgid "URL of the remote contact to block." -msgstr "" - -#: mod/admin.php:522 -msgid "Delete this Item" -msgstr "删除这个项目" - -#: mod/admin.php:523 -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." -msgstr "" - -#: mod/admin.php:524 -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 "" - -#: mod/admin.php:525 -msgid "GUID" -msgstr "GUID" - -#: mod/admin.php:525 -msgid "The GUID of the item you want to delete." -msgstr "你想要删除的项目的 GUID." - -#: mod/admin.php:564 -msgid "Item marked for deletion." -msgstr "被标记为要删除的项目。" - -#: mod/admin.php:635 -msgid "unknown" -msgstr "未知" - -#: mod/admin.php:711 -msgid "" -"This page offers you some numbers to the known part of the federated social " -"network your Friendica node is part of. These numbers are not complete but " -"only reflect the part of the network your node is aware of." -msgstr "" - -#: mod/admin.php:712 -msgid "" -"The Auto Discovered Contact Directory feature is not enabled, it " -"will improve the data displayed here." -msgstr "" - -#: mod/admin.php:724 -#, php-format -msgid "" -"Currently this node is aware of %d nodes with %d registered users from the " -"following platforms:" -msgstr "" - -#: mod/admin.php:755 -msgid "ID" -msgstr "ID" - -#: mod/admin.php:756 -msgid "Recipient Name" -msgstr "接收者的名字" - -#: mod/admin.php:757 -msgid "Recipient Profile" -msgstr "接收者的简介" - -#: mod/admin.php:758 view/theme/frio/theme.php:266 -#: src/Core/NotificationsManager.php:178 src/Content/Nav.php:179 -msgid "Network" -msgstr "网络" - -#: mod/admin.php:759 -msgid "Created" -msgstr "已创建" - -#: mod/admin.php:760 -msgid "Last Tried" -msgstr "上次尝试" - -#: mod/admin.php:761 -msgid "" -"This page lists the content of the queue for outgoing postings. These are " -"postings the initial delivery failed for. They will be resend later and " -"eventually deleted if the delivery fails permanently." -msgstr "" - -#: mod/admin.php:785 -#, php-format -msgid "" -"Your DB still runs with MyISAM tables. You should change the engine type to " -"InnoDB. As Friendica will use InnoDB only features in the future, you should" -" change this! See here for a guide that may be helpful " -"converting the table engines. You may also use the command php " -"bin/console.php dbstructure toinnodb of your Friendica installation for" -" an automatic conversion.
" -msgstr "" - -#: mod/admin.php:792 -#, php-format -msgid "" -"There is a new version of Friendica available for download. Your current " -"version is %1$s, upstream version is %2$s" -msgstr "有新的 Friendica 版本可供下载。您当前的版本为 %1$s,上游版本为 %2$s" - -#: mod/admin.php:802 -msgid "" -"The database update failed. Please run \"php bin/console.php dbstructure " -"update\" from the command line and have a look at the errors that might " -"appear." -msgstr "" - -#: mod/admin.php:808 -msgid "The worker was never executed. Please check your database structure!" -msgstr "" - -#: mod/admin.php:811 -#, php-format -msgid "" -"The last worker execution was on %s UTC. This is older than one hour. Please" -" check your crontab settings." -msgstr "" - -#: mod/admin.php:816 -msgid "Normal Account" -msgstr "正常帐户" - -#: mod/admin.php:817 -msgid "Automatic Follower Account" -msgstr "" - -#: mod/admin.php:818 -msgid "Public Forum Account" -msgstr "" - -#: mod/admin.php:819 -msgid "Automatic Friend Account" -msgstr "自动朋友帐户" - -#: mod/admin.php:820 -msgid "Blog Account" -msgstr "博客账户" - -#: mod/admin.php:821 -msgid "Private Forum Account" -msgstr "" - -#: mod/admin.php:843 -msgid "Message queues" -msgstr "通知排队" - -#: mod/admin.php:849 -msgid "Summary" -msgstr "概要" - -#: mod/admin.php:851 -msgid "Registered users" -msgstr "注册的用户" - -#: mod/admin.php:853 -msgid "Pending registrations" -msgstr "未决的注册" - -#: mod/admin.php:854 -msgid "Version" -msgstr "版本" - -#: mod/admin.php:859 -msgid "Active addons" -msgstr "激活插件" - -#: mod/admin.php:890 -msgid "Can not parse base url. Must have at least ://" -msgstr "不能分析基础URL。至少要://" - -#: mod/admin.php:1210 -msgid "Site settings updated." -msgstr "网站设置更新了。" - -#: mod/admin.php:1237 mod/settings.php:907 -msgid "No special theme for mobile devices" -msgstr "没专门适合手机的主题" - -#: mod/admin.php:1266 -msgid "No community page for local users" -msgstr "" - -#: mod/admin.php:1267 -msgid "No community page" -msgstr "没有社会页" - -#: mod/admin.php:1268 -msgid "Public postings from users of this site" -msgstr "本网站用户的公开文章" - -#: mod/admin.php:1269 -msgid "Public postings from the federated network" -msgstr "" - -#: mod/admin.php:1270 -msgid "Public postings from local users and the federated network" -msgstr "" - -#: mod/admin.php:1276 -msgid "Users, Global Contacts" -msgstr "用户,全球联系人" - -#: mod/admin.php:1277 -msgid "Users, Global Contacts/fallback" -msgstr "" - -#: mod/admin.php:1281 -msgid "One month" -msgstr "一个月" - -#: mod/admin.php:1282 -msgid "Three months" -msgstr "三个月" - -#: mod/admin.php:1283 -msgid "Half a year" -msgstr "半年" - -#: mod/admin.php:1284 -msgid "One year" -msgstr "一年" - -#: mod/admin.php:1289 -msgid "Multi user instance" -msgstr "多用户网站" - -#: mod/admin.php:1312 -msgid "Closed" -msgstr "关闭" - -#: mod/admin.php:1313 -msgid "Requires approval" -msgstr "要批准" - -#: mod/admin.php:1314 -msgid "Open" -msgstr "打开" - -#: mod/admin.php:1318 -msgid "No SSL policy, links will track page SSL state" -msgstr "没SSL方针,环节将追踪页SSL现状" - -#: mod/admin.php:1319 -msgid "Force all links to use SSL" -msgstr "强制所有链接使用 SSL" - -#: mod/admin.php:1320 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "自签证书,只在本地链接使用 SSL(不推荐)" - -#: mod/admin.php:1324 -msgid "Don't check" -msgstr "请勿检查" - -#: mod/admin.php:1325 -msgid "check the stable version" -msgstr "检查稳定版" - -#: mod/admin.php:1326 -msgid "check the development version" -msgstr "检查开发版本" - -#: mod/admin.php:1349 -msgid "Republish users to directory" -msgstr "" - -#: mod/admin.php:1351 -msgid "File upload" -msgstr "文件上传" - -#: mod/admin.php:1352 -msgid "Policies" -msgstr "政策" - -#: mod/admin.php:1354 -msgid "Auto Discovered Contact Directory" -msgstr "" - -#: mod/admin.php:1355 -msgid "Performance" -msgstr "性能" - -#: mod/admin.php:1356 -msgid "Worker" -msgstr "" - -#: mod/admin.php:1357 -msgid "Message Relay" -msgstr "讯息中继" - -#: mod/admin.php:1358 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "重定位 - 警告:高级功能。可能会让这个服务器不可达。" - -#: mod/admin.php:1361 -msgid "Site name" -msgstr "网页名字" - -#: mod/admin.php:1362 -msgid "Host name" -msgstr "服务器名" - -#: mod/admin.php:1363 -msgid "Sender Email" -msgstr "寄主邮件" - -#: mod/admin.php:1363 -msgid "" -"The email address your server shall use to send notification emails from." -msgstr "" - -#: mod/admin.php:1364 -msgid "Banner/Logo" -msgstr "标题/标志" - -#: mod/admin.php:1365 -msgid "Shortcut icon" -msgstr "捷径小图片" - -#: mod/admin.php:1365 -msgid "Link to an icon that will be used for browsers." -msgstr "" - -#: mod/admin.php:1366 -msgid "Touch icon" -msgstr "触摸小图片" - -#: mod/admin.php:1366 -msgid "Link to an icon that will be used for tablets and mobiles." -msgstr "" - -#: mod/admin.php:1367 -msgid "Additional Info" -msgstr "别的消息" - -#: mod/admin.php:1367 -#, php-format -msgid "" -"For public servers: you can add additional information here that will be " -"listed at %s/servers." -msgstr "" - -#: mod/admin.php:1368 -msgid "System language" -msgstr "系统语言" - -#: mod/admin.php:1369 -msgid "System theme" -msgstr "系统主题" - -#: mod/admin.php:1369 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "默认系统主题-会被用户简介超驰-把主题设置变化" - -#: mod/admin.php:1370 -msgid "Mobile system theme" -msgstr "手机系统主题" - -#: mod/admin.php:1370 -msgid "Theme for mobile devices" -msgstr "用于移动设备的主题" - -#: mod/admin.php:1371 -msgid "SSL link policy" -msgstr "SSL环节方针" - -#: mod/admin.php:1371 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "决定产生的链接是否应该强制使用 SSL" - -#: mod/admin.php:1372 -msgid "Force SSL" -msgstr "强制使用 SSL" - -#: mod/admin.php:1372 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" -" to endless loops." -msgstr "强逼所有非SSL的要求用SSL。注意:在有的系统会导致无限循环" - -#: mod/admin.php:1373 -msgid "Hide help entry from navigation menu" -msgstr "在导航菜单隐藏帮助条目" - -#: mod/admin.php:1373 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "在导航菜单中隐藏帮助页面的菜单条目。您仍然可以通过输入「/help」直接访问。" - -#: mod/admin.php:1374 -msgid "Single user instance" -msgstr "单用户网站" - -#: mod/admin.php:1374 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "弄这网站多用户或单用户为选择的用户" - -#: mod/admin.php:1375 -msgid "Maximum image size" -msgstr "图片最大尺寸" - -#: mod/admin.php:1375 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "最多上传照相的字节。默认是零,意思是无限。" - -#: mod/admin.php:1376 -msgid "Maximum image length" -msgstr "最大图片大小" - -#: mod/admin.php:1376 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "最多像素在上传图片的长度。默认-1,意思是无限。" - -#: mod/admin.php:1377 -msgid "JPEG image quality" -msgstr "JPEG 图片质量" - -#: mod/admin.php:1377 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "上传的JPEG被用这质量[0-100]保存。默认100,最高。" - -#: mod/admin.php:1379 -msgid "Register policy" -msgstr "注册政策" - -#: mod/admin.php:1380 -msgid "Maximum Daily Registrations" -msgstr "一天最多注册" - -#: mod/admin.php:1380 -msgid "" -"If registration is permitted above, this sets the maximum number of new user" -" registrations to accept per day. If register is set to closed, this " -"setting has no effect." -msgstr "如果注册上边许可的,这个选择一天最多新用户注册会接待。如果注册关闭了,这个设置没有印象。" - -#: mod/admin.php:1381 -msgid "Register text" -msgstr "注册正文" - -#: mod/admin.php:1381 -msgid "" -"Will be displayed prominently on the registration page. You can use BBCode " -"here." -msgstr "" - -#: mod/admin.php:1382 -msgid "Accounts abandoned after x days" -msgstr "账户丢弃X天后" - -#: mod/admin.php:1382 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "拒绝浪费系统资源看外网站找丢弃的账户。输入0为无时限。" - -#: mod/admin.php:1383 -msgid "Allowed friend domains" -msgstr "允许的朋友域" - -#: mod/admin.php:1383 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "逗号分隔的域名许根这个网站结友谊。通配符行。空的允许所有的域名。" - -#: mod/admin.php:1384 -msgid "Allowed email domains" -msgstr "允许的电子邮件域" - -#: mod/admin.php:1384 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "逗号分隔的域名可接受在邮件地址为这网站的注册。通配符行。空的允许所有的域名。" - -#: mod/admin.php:1385 -msgid "No OEmbed rich content" -msgstr "" - -#: mod/admin.php:1385 -msgid "" -"Don't show the rich content (e.g. embedded PDF), except from the domains " -"listed below." -msgstr "" - -#: mod/admin.php:1386 -msgid "Allowed OEmbed domains" -msgstr "" - -#: mod/admin.php:1386 -msgid "" -"Comma separated list of domains which oembed content is allowed to be " -"displayed. Wildcards are accepted." -msgstr "" - -#: mod/admin.php:1387 -msgid "Block public" -msgstr "" - -#: mod/admin.php:1387 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "" - -#: mod/admin.php:1388 -msgid "Force publish" -msgstr "强行发布" - -#: mod/admin.php:1388 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "让所有这网站的的简介表明在网站目录。" - -#: mod/admin.php:1389 -msgid "Global directory URL" -msgstr "" - -#: mod/admin.php:1389 -msgid "" -"URL to the global directory. If this is not set, the global directory is " -"completely unavailable to the application." -msgstr "" - -#: mod/admin.php:1390 -msgid "Private posts by default for new users" -msgstr "新用户默认写私人文章" - -#: mod/admin.php:1390 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "默认新用户文章批准使默认隐私组,没有公开。" - -#: mod/admin.php:1391 -msgid "Don't include post content in email notifications" -msgstr "别包含文章内容在邮件消息" - -#: mod/admin.php:1391 -msgid "" -"Don't include the content of a post/comment/private message/etc. in the " -"email notifications that are sent out from this site, as a privacy measure." -msgstr "别包含文章/谈论/私消息/等的内容在文件消息被这个网站寄出,为了隐私。" - -#: mod/admin.php:1392 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "不允许插件的公众使用权在应用选单。" - -#: mod/admin.php:1392 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "复选这个框为把应用选内插件限制仅成员" - -#: mod/admin.php:1393 -msgid "Don't embed private images in posts" -msgstr "别嵌入私人图案在文章里" - -#: mod/admin.php:1393 -msgid "" -"Don't replace locally-hosted private photos in posts with an embedded copy " -"of the image. This means that contacts who receive posts containing private " -"photos will have to authenticate and load each image, which may take a " -"while." -msgstr "别把复制嵌入的照相代替本网站的私人照相在文章里。结果是收包括私人照相的熟人要认证才卸载个张照片,会花许久。" - -#: mod/admin.php:1394 -msgid "Allow Users to set remote_self" -msgstr "允许用户用遥远的自身" - -#: mod/admin.php:1394 -msgid "" -"With checking this, every user is allowed to mark every contact as a " -"remote_self in the repair contact dialog. Setting this flag on a contact " -"causes mirroring every posting of that contact in the users stream." -msgstr "选择这个之后,用户们允许表明熟人当遥远的自身在熟人修理页。遥远的自身所有文章被复制到用户文章流。" - -#: mod/admin.php:1395 -msgid "Block multiple registrations" -msgstr "阻止多次注册" - -#: mod/admin.php:1395 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "不允许用户注册别的账户为当页。" - -#: mod/admin.php:1396 -msgid "OpenID support" -msgstr "OpenID 支持" - -#: mod/admin.php:1396 -msgid "OpenID support for registration and logins." -msgstr "支持使用 OpenID 注册和登录。" - -#: mod/admin.php:1397 -msgid "Fullname check" -msgstr "全名核实" - -#: mod/admin.php:1397 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "让用户注册的时候放空格姓名中间,省得垃圾注册。" - -#: mod/admin.php:1398 -msgid "Community pages for visitors" -msgstr "" - -#: mod/admin.php:1398 -msgid "" -"Which community pages should be available for visitors. Local users always " -"see both pages." -msgstr "" - -#: mod/admin.php:1399 -msgid "Posts per user on community page" -msgstr "个用户文章数量在社会页" - -#: mod/admin.php:1399 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"'Global Community')" -msgstr "一个用户最多文章在社会页。(无效在“全球社会”)" - -#: mod/admin.php:1400 -msgid "Enable OStatus support" -msgstr "启用 OStatus 支持" - -#: mod/admin.php:1400 -msgid "" -"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "提供内置的 OStatus(StatusNet、GNU Social 等)兼容性。所有 OStatus 的通信是公开的,所以会偶尔显示隐私警告。" - -#: mod/admin.php:1401 -msgid "Only import OStatus threads from our contacts" -msgstr "" - -#: mod/admin.php:1401 -msgid "" -"Normally we import every content from our OStatus contacts. With this option" -" we only store threads that are started by a contact that is known on our " -"system." -msgstr "" - -#: mod/admin.php:1402 -msgid "OStatus support can only be enabled if threading is enabled." -msgstr "" - -#: mod/admin.php:1404 -msgid "" -"Diaspora support can't be enabled because Friendica was installed into a sub" -" directory." -msgstr "Diaspora 支持无法启用,因为 Friendica 被安装到了一个子目录。" - -#: mod/admin.php:1405 -msgid "Enable Diaspora support" -msgstr "启用 Diaspora 支持" - -#: mod/admin.php:1405 -msgid "Provide built-in Diaspora network compatibility." -msgstr "提供内置的 Diaspora 网络兼容性。" - -#: mod/admin.php:1406 -msgid "Only allow Friendica contacts" -msgstr "只允许 Friendica 联系人" - -#: mod/admin.php:1406 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "所有联系人必须使用 Friendica 协议 。所有其他内置沟通协议都已停用。" - -#: mod/admin.php:1407 -msgid "Verify SSL" -msgstr "验证 SSL" - -#: mod/admin.php:1407 -msgid "" -"If you wish, you can turn on strict certificate checking. This will mean you" -" cannot connect (at all) to self-signed SSL sites." -msgstr "你想的话,您会使严格证书核实可用。意思是您不能根自签的SSL网站交流。" - -#: mod/admin.php:1408 -msgid "Proxy user" -msgstr "代理用户" - -#: mod/admin.php:1409 -msgid "Proxy URL" -msgstr "代理URL" - -#: mod/admin.php:1410 -msgid "Network timeout" -msgstr "网络超时" - -#: mod/admin.php:1410 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "输入秒数。输入零为无限(不推荐的)。" - -#: mod/admin.php:1411 -msgid "Maximum Load Average" -msgstr "最大平均负荷" - -#: mod/admin.php:1411 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "系统负荷平均以上转播和检查行程会被耽误-默认50。" - -#: mod/admin.php:1412 -msgid "Maximum Load Average (Frontend)" -msgstr "" - -#: mod/admin.php:1412 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "" - -#: mod/admin.php:1413 -msgid "Minimal Memory" -msgstr "最少内存" - -#: mod/admin.php:1413 -msgid "" -"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " -"default 0 (deactivated)." -msgstr "" - -#: mod/admin.php:1414 -msgid "Maximum table size for optimization" -msgstr "" - -#: mod/admin.php:1414 -msgid "" -"Maximum table size (in MB) for the automatic optimization - default 100 MB. " -"Enter -1 to disable it." -msgstr "" - -#: mod/admin.php:1415 -msgid "Minimum level of fragmentation" -msgstr "" - -#: mod/admin.php:1415 -msgid "" -"Minimum fragmenation level to start the automatic optimization - default " -"value is 30%." -msgstr "" - -#: mod/admin.php:1417 -msgid "Periodical check of global contacts" -msgstr "" - -#: mod/admin.php:1417 -msgid "" -"If enabled, the global contacts are checked periodically for missing or " -"outdated data and the vitality of the contacts and servers." -msgstr "" - -#: mod/admin.php:1418 -msgid "Days between requery" -msgstr "重新查询间隔天数" - -#: mod/admin.php:1418 -msgid "Number of days after which a server is requeried for his contacts." -msgstr "" - -#: mod/admin.php:1419 -msgid "Discover contacts from other servers" -msgstr "从其他服务器上发现联系人" - -#: mod/admin.php:1419 -msgid "" -"Periodically query other servers for contacts. You can choose between " -"'users': the users on the remote system, 'Global Contacts': active contacts " -"that are known on the system. The fallback is meant for Redmatrix servers " -"and older friendica servers, where global contacts weren't available. The " -"fallback increases the server load, so the recommened setting is 'Users, " -"Global Contacts'." -msgstr "" - -#: mod/admin.php:1420 -msgid "Timeframe for fetching global contacts" -msgstr "" - -#: mod/admin.php:1420 -msgid "" -"When the discovery is activated, this value defines the timeframe for the " -"activity of the global contacts that are fetched from other servers." -msgstr "" - -#: mod/admin.php:1421 -msgid "Search the local directory" -msgstr "搜索本地目录" - -#: mod/admin.php:1421 -msgid "" -"Search the local directory instead of the global directory. When searching " -"locally, every search will be executed on the global directory in the " -"background. This improves the search results when the search is repeated." -msgstr "" - -#: mod/admin.php:1423 -msgid "Publish server information" -msgstr "发布服务器信息" - -#: mod/admin.php:1423 -msgid "" -"If enabled, general server and usage data will be published. The data " -"contains the name and version of the server, number of users with public " -"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." -msgstr "" - -#: mod/admin.php:1425 -msgid "Check upstream version" -msgstr "检查上游版本" - -#: mod/admin.php:1425 -msgid "" -"Enables checking for new Friendica versions at github. If there is a new " -"version, you will be informed in the admin panel overview." -msgstr "启用在 github 上检查新的 Friendica 版本。如果发现新版本,您将在管理员概要面板得到通知。" - -#: mod/admin.php:1426 -msgid "Suppress Tags" -msgstr "压制标签" - -#: mod/admin.php:1426 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "不在文章末尾显示主题标签列表。" - -#: mod/admin.php:1427 -msgid "Path to item cache" -msgstr "路线到项目缓存" - -#: mod/admin.php:1427 -msgid "The item caches buffers generated bbcode and external images." -msgstr "" - -#: mod/admin.php:1428 -msgid "Cache duration in seconds" -msgstr "缓存时间秒" - -#: mod/admin.php:1428 -msgid "" -"How long should the cache files be hold? Default value is 86400 seconds (One" -" day). To disable the item cache, set the value to -1." -msgstr "高速缓存要存文件多久?默认是86400秒钟(一天)。停用高速缓存,输入-1。" - -#: mod/admin.php:1429 -msgid "Maximum numbers of comments per post" -msgstr "文件最多评论" - -#: mod/admin.php:1429 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "" - -#: mod/admin.php:1430 -msgid "Temp path" -msgstr "临时文件路线" - -#: mod/admin.php:1430 -msgid "" -"If you have a restricted system where the webserver can't access the system " -"temp path, enter another path here." -msgstr "" - -#: mod/admin.php:1431 -msgid "Base path to installation" -msgstr "基础安装路线" - -#: mod/admin.php:1431 -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 "如果您的系统无法为您检测到正确的安装路径,请在这里输入正确的路径。此配置仅在您使用设有限制的系统时符号链接到网页服务器根目录使用。" - -#: mod/admin.php:1432 -msgid "Disable picture proxy" -msgstr "停用图片代理" - -#: mod/admin.php:1432 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwith." -msgstr "" - -#: mod/admin.php:1433 -msgid "Only search in tags" -msgstr "" - -#: mod/admin.php:1433 -msgid "On large systems the text search can slow down the system extremely." -msgstr "在大型系统中,正文搜索会极大降低系统运行速度。" - -#: mod/admin.php:1435 -msgid "New base url" -msgstr "新基础URL" - -#: mod/admin.php:1435 -msgid "" -"Change base url for this server. Sends relocate message to all Friendica and" -" Diaspora* contacts of all users." -msgstr "" - -#: mod/admin.php:1437 -msgid "RINO Encryption" -msgstr "RINO 加密" - -#: mod/admin.php:1437 -msgid "Encryption layer between nodes." -msgstr "节点之间的加密层。" - -#: mod/admin.php:1437 -msgid "Enabled" -msgstr "已启用" - -#: mod/admin.php:1439 -msgid "Maximum number of parallel workers" -msgstr "" - -#: mod/admin.php:1439 -msgid "" -"On shared hosters set this to 2. On larger systems, values of 10 are great. " -"Default value is 4." -msgstr "" - -#: mod/admin.php:1440 -msgid "Don't use 'proc_open' with the worker" -msgstr "" - -#: mod/admin.php:1440 -msgid "" -"Enable this if your system doesn't allow the use of 'proc_open'. This can " -"happen on shared hosters. If this is enabled you should increase the " -"frequency of worker calls in your crontab." -msgstr "" - -#: mod/admin.php:1441 -msgid "Enable fastlane" -msgstr "启用快车道模式" - -#: mod/admin.php:1441 -msgid "" -"When enabed, the fastlane mechanism starts an additional worker if processes" -" with higher priority are blocked by processes of lower priority." -msgstr "" - -#: mod/admin.php:1442 -msgid "Enable frontend worker" -msgstr "" - -#: mod/admin.php:1442 -#, php-format -msgid "" -"When enabled the Worker process is triggered when backend access is " -"performed \\x28e.g. messages being delivered\\x29. On smaller sites you " -"might want to call %s/worker on a regular basis via an external cron job. " -"You should only enable this option if you cannot utilize cron/scheduled jobs" -" on your server." -msgstr "" - -#: mod/admin.php:1444 -msgid "Subscribe to relay" -msgstr "" - -#: mod/admin.php:1444 -msgid "" -"Enables the receiving of public posts from the relay. They will be included " -"in the search, subscribed tags and on the global community page." -msgstr "" - -#: mod/admin.php:1445 -msgid "Relay server" -msgstr "中继服务器" - -#: mod/admin.php:1445 -msgid "" -"Address of the relay server where public posts should be send to. For " -"example https://relay.diasp.org" -msgstr "" - -#: mod/admin.php:1446 -msgid "Direct relay transfer" -msgstr "" - -#: mod/admin.php:1446 -msgid "" -"Enables the direct transfer to other servers without using the relay servers" -msgstr "" - -#: mod/admin.php:1447 -msgid "Relay scope" -msgstr "" - -#: mod/admin.php:1447 -msgid "" -"Can be 'all' or 'tags'. 'all' means that every public post should be " -"received. 'tags' means that only posts with selected tags should be " -"received." -msgstr "" - -#: mod/admin.php:1447 -msgid "all" -msgstr "" - -#: mod/admin.php:1447 -msgid "tags" -msgstr "" - -#: mod/admin.php:1448 -msgid "Server tags" -msgstr "" - -#: mod/admin.php:1448 -msgid "Comma separated list of tags for the 'tags' subscription." -msgstr "" - -#: mod/admin.php:1449 -msgid "Allow user tags" -msgstr "" - -#: mod/admin.php:1449 -msgid "" -"If enabled, the tags from the saved searches will used for the 'tags' " -"subscription in addition to the 'relay_server_tags'." -msgstr "" - -#: mod/admin.php:1477 -msgid "Update has been marked successful" -msgstr "更新当成功标签了" - -#: mod/admin.php:1484 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "" - -#: mod/admin.php:1487 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "" - -#: mod/admin.php:1500 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "执行 %s 失败,错误:%s" - -#: mod/admin.php:1502 -#, php-format -msgid "Update %s was successfully applied." -msgstr "把%s更新成功地实行。" - -#: mod/admin.php:1505 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "%s更新没回答现状。不知道是否成功。" - -#: mod/admin.php:1508 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "" - -#: mod/admin.php:1528 -msgid "No failed updates." -msgstr "没有不通过地更新。" - -#: mod/admin.php:1529 -msgid "Check database structure" -msgstr "检查数据库结构" - -#: mod/admin.php:1534 -msgid "Failed Updates" -msgstr "没通过的更新" - -#: mod/admin.php:1535 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "这个不包括1139号更新之前,它们没回答装线。" - -#: mod/admin.php:1536 -msgid "Mark success (if update was manually applied)" -msgstr "标注成功(如果手动地把更新实行了)" - -#: mod/admin.php:1537 -msgid "Attempt to execute this update step automatically" -msgstr "试图自动地把这步更新实行" - -#: mod/admin.php:1576 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tthe administrator of %2$s has set up an account for you." -msgstr "" - -#: mod/admin.php:1579 -#, php-format -msgid "" -"\n" -"\t\t\tThe login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%1$s\n" -"\t\t\tLogin Name:\t\t%2$s\n" -"\t\t\tPassword:\t\t%3$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 %1$s/removeme\n" -"\n" -"\t\t\tThank you and welcome to %4$s." -msgstr "" - -#: mod/admin.php:1613 src/Model/User.php:663 -#, php-format -msgid "Registration details for %s" -msgstr "注册信息为%s" - -#: mod/admin.php:1623 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "" - -#: mod/admin.php:1629 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s 用户被删除了" - -#: mod/admin.php:1676 -#, php-format -msgid "User '%s' deleted" -msgstr "用户 '%s' 被删除了" - -#: mod/admin.php:1684 -#, php-format -msgid "User '%s' unblocked" -msgstr "用户“%s”已解除屏蔽" - -#: mod/admin.php:1684 -#, php-format -msgid "User '%s' blocked" -msgstr "用户“%s”已屏蔽" - -#: mod/admin.php:1741 mod/settings.php:1071 -msgid "Normal Account Page" -msgstr "标准账户页面" - -#: mod/admin.php:1742 mod/settings.php:1075 -msgid "Soapbox Page" -msgstr "演讲台页" - -#: mod/admin.php:1743 mod/settings.php:1079 -msgid "Public Forum" -msgstr "公共论坛" - -#: mod/admin.php:1744 mod/settings.php:1083 -msgid "Automatic Friend Page" -msgstr "自动朋友页" - -#: mod/admin.php:1745 -msgid "Private Forum" -msgstr "" - -#: mod/admin.php:1748 mod/settings.php:1055 -msgid "Personal Page" -msgstr "个人页面" - -#: mod/admin.php:1749 mod/settings.php:1059 -msgid "Organisation Page" -msgstr "组织页面" - -#: mod/admin.php:1750 mod/settings.php:1063 -msgid "News Page" -msgstr "新闻页面" - -#: mod/admin.php:1751 mod/settings.php:1067 -msgid "Community Forum" -msgstr "社区论坛" - -#: mod/admin.php:1798 mod/admin.php:1809 mod/admin.php:1822 mod/admin.php:1840 -#: src/Content/ContactSelector.php:82 -msgid "Email" -msgstr "电子邮件" - -#: mod/admin.php:1798 mod/admin.php:1822 -msgid "Register date" -msgstr "注册日期" - -#: mod/admin.php:1798 mod/admin.php:1822 -msgid "Last login" -msgstr "上次登录" - -#: mod/admin.php:1798 mod/admin.php:1822 -msgid "Last item" -msgstr "上项目" - -#: mod/admin.php:1798 -msgid "Type" -msgstr "" - -#: mod/admin.php:1805 -msgid "Add User" -msgstr "添加用户" - -#: mod/admin.php:1807 -msgid "User registrations waiting for confirm" -msgstr "用户注册等待确认" - -#: mod/admin.php:1808 -msgid "User waiting for permanent deletion" -msgstr "用户等待长久删除" - -#: mod/admin.php:1809 -msgid "Request date" -msgstr "要求日期" - -#: mod/admin.php:1810 -msgid "No registrations." -msgstr "没有注册。" - -#: mod/admin.php:1811 -msgid "Note from the user" -msgstr "" - -#: mod/admin.php:1813 -msgid "Deny" -msgstr "否定" - -#: mod/admin.php:1817 -msgid "Site admin" -msgstr "网站管理员" - -#: mod/admin.php:1818 -msgid "Account expired" -msgstr "帐户过期了" - -#: mod/admin.php:1821 -msgid "New User" -msgstr "新用户" - -#: mod/admin.php:1822 -msgid "Deleted since" -msgstr "删除从" - -#: mod/admin.php:1827 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "特定的用户被删除!\\n\\n什么这些用户放在这个网站被永远删除!\\n\\n您肯定吗?" - -#: mod/admin.php:1828 -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 "用户{0}将被删除!\\n\\n什么这个用户放在这个网站被永远删除!\\n\\n您肯定吗?" - -#: mod/admin.php:1838 -msgid "Name of the new user." -msgstr "新用户的名字。" - -#: mod/admin.php:1839 -msgid "Nickname" -msgstr "昵称" - -#: mod/admin.php:1839 -msgid "Nickname of the new user." -msgstr "新用户的昵称。" - -#: mod/admin.php:1840 -msgid "Email address of the new user." -msgstr "新用户的邮件地址。" - -#: mod/admin.php:1882 -#, php-format -msgid "Addon %s disabled." -msgstr "插件 %s 已禁用。" - -#: mod/admin.php:1886 -#, php-format -msgid "Addon %s enabled." -msgstr "插件 %s 已启用。" - -#: mod/admin.php:1896 mod/admin.php:2145 -msgid "Disable" -msgstr "停用" - -#: mod/admin.php:1899 mod/admin.php:2148 -msgid "Enable" -msgstr "使能用" - -#: mod/admin.php:1921 mod/admin.php:2190 -msgid "Toggle" -msgstr "肘节" - -#: mod/admin.php:1929 mod/admin.php:2199 -msgid "Author: " -msgstr "作者:" - -#: mod/admin.php:1930 mod/admin.php:2200 -msgid "Maintainer: " -msgstr "维护者:" - -#: mod/admin.php:1982 -msgid "Reload active addons" -msgstr "重新加载可用插件" - -#: mod/admin.php:1987 -#, php-format -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" -msgstr "目前您的节点上没有可用插件。您可以在 %1$s 找到官方插件库,或者到开放的插件登记处 %2$s 也能找到其他有趣的插件" - -#: mod/admin.php:2107 -msgid "No themes found." -msgstr "找不到主题。" - -#: mod/admin.php:2181 -msgid "Screenshot" -msgstr "截图" - -#: mod/admin.php:2235 -msgid "Reload active themes" -msgstr "重载活动的主题" - -#: mod/admin.php:2240 -#, php-format -msgid "No themes found on the system. They should be placed in %1$s" -msgstr "未在系统中发现主题。它们应该被放置在 %1$s" - -#: mod/admin.php:2241 -msgid "[Experimental]" -msgstr "[试验]" - -#: mod/admin.php:2242 -msgid "[Unsupported]" -msgstr "[没支持]" - -#: mod/admin.php:2266 -msgid "Log settings updated." -msgstr "日志设置更新了。" - -#: mod/admin.php:2298 -msgid "PHP log currently enabled." -msgstr "PHP 日志已启用。" - -#: mod/admin.php:2300 -msgid "PHP log currently disabled." -msgstr "PHP 日志已禁用。" - -#: mod/admin.php:2309 -msgid "Clear" -msgstr "清理出" - -#: mod/admin.php:2313 -msgid "Enable Debugging" -msgstr "启用调试" - -#: mod/admin.php:2314 -msgid "Log file" -msgstr "日志文件" - -#: mod/admin.php:2314 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "必要被网页服务器可写的。相对Friendica主文件夹。" - -#: mod/admin.php:2315 -msgid "Log level" -msgstr "日志级别" - -#: mod/admin.php:2317 -msgid "PHP logging" -msgstr "PHP 日志" - -#: mod/admin.php:2318 -msgid "" -"To enable logging of PHP errors and warnings you can add the following to " -"the .htconfig.php file of your installation. The filename set in the " -"'error_log' line is relative to the friendica top-level directory and must " -"be writeable by the web server. The option '1' for 'log_errors' and " -"'display_errors' is to enable these options, set to '0' to disable them." -msgstr "" - -#: mod/admin.php:2349 -#, php-format -msgid "" -"Error trying to open %1$s log file.\\r\\n
Check to see " -"if file %1$s exist and is readable." -msgstr "打开 %1$s 日志文件出错。\\r\\n
请检查 %1$s 文件是否存在并且可读。" - -#: mod/admin.php:2353 -#, php-format -msgid "" -"Couldn't open %1$s log file.\\r\\n
Check to see if file" -" %1$s is readable." -msgstr "无法打开 %1$s 日志文件。\\r\\n
请检查 %1$s 文件是否可读。" - -#: mod/admin.php:2444 mod/admin.php:2445 mod/settings.php:777 -msgid "Off" -msgstr "关" - -#: mod/admin.php:2444 mod/admin.php:2445 mod/settings.php:777 -msgid "On" -msgstr "开" - -#: mod/admin.php:2445 -#, php-format -msgid "Lock feature %s" -msgstr "锁定特性 %s" - -#: mod/admin.php:2453 -msgid "Manage Additional Features" -msgstr "管理附加特性" - #: mod/babel.php:22 msgid "Source input" msgstr "源码输入" @@ -6187,366 +3311,14 @@ msgstr "阅读此节点的服务条款。" msgid "On this server the following remote servers are blocked." msgstr "在这个服务器上以下远程服务器被封禁了。" -#: mod/install.php:114 -msgid "Friendica Communications Server - Setup" -msgstr "Friendica沟通服务器-安装" - -#: mod/install.php:120 -msgid "Could not connect to database." -msgstr "解不了数据库。" - -#: mod/install.php:124 -msgid "Could not create table." -msgstr "无法创建表格。" - -#: mod/install.php:130 -msgid "Your Friendica site database has been installed." -msgstr "您Friendica网站数据库被安装了。" - -#: mod/install.php:135 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "您可能要手工地进口文件「database.sql」用phpmyadmin或mysql。" - -#: mod/install.php:136 mod/install.php:208 mod/install.php:565 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "请看文件「INSTALL.txt」" - -#: mod/install.php:148 -msgid "Database already in use." -msgstr "数据库已经被使用。" - -#: mod/install.php:205 -msgid "System check" -msgstr "系统检测" - -#: mod/install.php:210 -msgid "Check again" -msgstr "再检测" - -#: mod/install.php:230 -msgid "Database connection" -msgstr "数据库接通" - -#: mod/install.php:231 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "为安装Friendica我们要知道怎么连接您的数据库。" - -#: mod/install.php:232 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "你有关于这些设置有问题的话,请给互联网托管服务或者网页管理联系。" - -#: mod/install.php:233 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "您下边指定的数据库应该已经存在。如果还没有,请创建后继续。" - -#: mod/install.php:237 -msgid "Database Server Name" -msgstr "数据库服务器名" - -#: mod/install.php:238 -msgid "Database Login Name" -msgstr "数据库登录名" - -#: mod/install.php:239 -msgid "Database Login Password" -msgstr "数据库登录密码" - -#: mod/install.php:239 -msgid "For security reasons the password must not be empty" -msgstr "由于安全的原因,密码不能为空" - -#: mod/install.php:240 -msgid "Database Name" -msgstr "数据库名字" - -#: mod/install.php:241 mod/install.php:281 -msgid "Site administrator email address" -msgstr "网站行政人员邮件地址" - -#: mod/install.php:241 mod/install.php:281 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "您账户邮件地址必要符合这个为用网站处理仪表板" - -#: mod/install.php:245 mod/install.php:284 -msgid "Please select a default timezone for your website" -msgstr "请选择您网站的默认时区" - -#: mod/install.php:271 -msgid "Site settings" -msgstr "网站设置" - -#: mod/install.php:285 -msgid "System Language:" -msgstr "系统语言:" - -#: mod/install.php:285 -msgid "" -"Set the default language for your Friendica installation interface and to " -"send emails." -msgstr "为 Friendica 安装界面及邮件发送设置默认语言。" - -#: mod/install.php:326 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "没找到命令行PHP在网服务器PATH。" - -#: mod/install.php:327 -msgid "" -"If you don't have a command line version of PHP installed on your server, " -"you will not be able to run the background processing. See 'Setup the worker'" -msgstr "" - -#: mod/install.php:331 -msgid "PHP executable path" -msgstr "PHP可执行路径" - -#: mod/install.php:331 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "输入全路线到php执行程序。您会留空白为继续安装。" - -#: mod/install.php:336 -msgid "Command line PHP" -msgstr "命令行PHP" - -#: mod/install.php:345 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "PHP执行程序不是命令行PHP執行檔(有可能是cgi-fgci版本)" - -#: mod/install.php:346 -msgid "Found PHP version: " -msgstr "找到 PHP 版本:" - -#: mod/install.php:348 -msgid "PHP cli binary" -msgstr "命令行PHP執行檔" - -#: mod/install.php:359 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "您系统的命令行PHP没有能够「register_argc_argv」。" - -#: mod/install.php:360 -msgid "This is required for message delivery to work." -msgstr "这必要为通信发布成功。" - -#: mod/install.php:362 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: mod/install.php:385 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "错误:这系统的「register_argc_argv」子程序不能产生加密钥匙" - -#: mod/install.php:386 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "如果您用Windows,请看「http://www.php.net/manual/en/openssl.installation.php」。" - -#: mod/install.php:388 -msgid "Generate encryption keys" -msgstr "产生加密钥匙" - -#: mod/install.php:395 -msgid "libCurl PHP module" -msgstr "libCurl PHP模块" - -#: mod/install.php:396 -msgid "GD graphics PHP module" -msgstr "GD显示PHP模块" - -#: mod/install.php:397 -msgid "OpenSSL PHP module" -msgstr "OpenSSL PHP模块" - -#: mod/install.php:398 -msgid "PDO or MySQLi PHP module" -msgstr "PDO 或者 MySQLi PHP 模块" - -#: mod/install.php:399 -msgid "mb_string PHP module" -msgstr "mb_string PHP模块" - -#: mod/install.php:400 -msgid "XML PHP module" -msgstr "XML PHP 模块" - -#: mod/install.php:401 -msgid "iconv PHP module" -msgstr "iconv PHP 模块" - -#: mod/install.php:402 -msgid "POSIX PHP module" -msgstr "POSIX PHP 模块" - -#: mod/install.php:406 mod/install.php:408 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite部件" - -#: mod/install.php:406 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "错误:Apache服务器的mod-rewrite模块是必要的可却不安装的。" - -#: mod/install.php:414 -msgid "Error: libCURL PHP module required but not installed." -msgstr "错误:libCurl PHP模块是必要的可却不安装的。" - -#: mod/install.php:418 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "错误:GD显示PHP模块跟JPEG支持是必要的可却安装的。" - -#: mod/install.php:422 -msgid "Error: openssl PHP module required but not installed." -msgstr "错误:openssl PHP模块是必要的可却不安装的。" - -#: mod/install.php:426 -msgid "Error: PDO or MySQLi PHP module required but not installed." -msgstr "" - -#: mod/install.php:430 -msgid "Error: The MySQL driver for PDO is not installed." -msgstr "错误:MySQL 的 PHP 数据对象 (PDO) 扩展驱动未安装。" - -#: mod/install.php:434 -msgid "Error: mb_string PHP module required but not installed." -msgstr "错误:mbstring PHP模块必要可没安装的。" - -#: mod/install.php:438 -msgid "Error: iconv PHP module required but not installed." -msgstr "错误:需要 iconv PHP 模块但它并没有被安装。" - -#: mod/install.php:442 -msgid "Error: POSIX PHP module required but not installed." -msgstr "" - -#: mod/install.php:452 -msgid "Error, XML PHP module required but not installed." -msgstr "部件错误,需要 XML PHP 模块但它并没有被安装。" - -#: mod/install.php:464 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "网页安装器要创建一个叫 \".htconfig.php\" 的文件在你的 web 服务器的顶层目录下,但无法这么做。" - -#: mod/install.php:465 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "这常常是一个权设置,因为网服务器可能不会写文件在文件夹-即使您会。" - -#: mod/install.php:466 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "这个步骤头,我们给您正文要保存在叫.htconfig.php的文件在您Friendica主文件夹。" - -#: mod/install.php:467 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "或者您会这个步骤不做还是实行手动的安装。请看INSTALL.txt文件为说明。" - -#: mod/install.php:470 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php是可写的" - -#: mod/install.php:480 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Friendica用Smarty3模板机车为建筑网页。Smarty3把模板编译成PHP为催建筑网页。" - -#: mod/install.php:481 -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory view/smarty3/ under the Friendica top level " -"folder." -msgstr "为了保存这些模板,网服务器要写权利于view/smarty3/目录在Friendica主目录下。" - -#: mod/install.php:482 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "请保险您网服务器用户(比如www-data)有这个目录的写权利。" - -#: mod/install.php:483 -msgid "" -"Note: as a security measure, you should give the web server write access to " -"view/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "注意:为了安全,您应该只给网服务器写权利于view/smarty3/-没有模板文件(.tpl)之下。" - -#: mod/install.php:486 -msgid "view/smarty3 is writable" -msgstr "能写view/smarty3" - -#: mod/install.php:504 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "在 .htaccess 中的 URL 重写不工作。请检查你的服务器配置。" - -#: mod/install.php:506 -msgid "Error message from Curl when fetching" -msgstr "" - -#: mod/install.php:510 -msgid "Url rewrite is working" -msgstr "URL改写发挥机能" - -#: mod/install.php:529 -msgid "ImageMagick PHP extension is not installed" -msgstr "ImageMagick PHP 扩展没有安装" - -#: mod/install.php:531 -msgid "ImageMagick PHP extension is installed" -msgstr "ImageMagick PHP 扩展已安装" - -#: mod/install.php:533 -msgid "ImageMagick supports GIF" -msgstr "ImageMagick 支持 GIF" - -#: mod/install.php:540 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "数据库配置文件 \".htconfig.php\" 无法被写入。请在 web 服务器根目录下使用附上的文字创建一个配置文件。" - -#: mod/install.php:563 -msgid "

What next

" -msgstr "

下步是什么

" - -#: mod/install.php:564 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"worker." -msgstr "" - -#: mod/install.php:567 -#, php-format -msgid "" -"Go to your new Friendica node registration page " -"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 "" +#: mod/friendica.php:128 mod/admin.php:357 mod/admin.php:375 +#: mod/dfrn_request.php:347 src/Model/Contact.php:1281 +msgid "Blocked domain" +msgstr "被封禁的域名" + +#: mod/friendica.php:128 mod/admin.php:358 mod/admin.php:376 +msgid "Reason for the block" +msgstr "封禁原因" #: mod/invite.php:33 msgid "Total invitation limit exceeded." @@ -6673,6 +3445,10 @@ msgstr "这个组中的消息不会被发送至这些接收者。" msgid "No such group" msgstr "没有这个组" +#: mod/network.php:639 mod/group.php:216 +msgid "Group is empty" +msgstr "组没有成员" + #: mod/network.php:643 #, php-format msgid "Group: %s" @@ -6702,6 +3478,11 @@ msgstr "发布时间顺序" msgid "Sort by Post Date" msgstr "按发布日期顺序排列" +#: mod/network.php:956 mod/profiles.php:594 +#: src/Core/NotificationsManager.php:185 +msgid "Personal" +msgstr "私人" + #: mod/network.php:959 msgid "Posts that mention or involve you" msgstr "提及你或你参与的文章" @@ -6730,29 +3511,3020 @@ msgstr "被星" msgid "Favourite Posts" msgstr "最喜欢的文章" +#: mod/crepair.php:87 +msgid "Contact settings applied." +msgstr "联系人设置已应用。" + +#: mod/crepair.php:89 +msgid "Contact update failed." +msgstr "联系人更新失败。" + +#: mod/crepair.php:114 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "警告:此为进阶,如果您输入不正确的信息,您也许无法与这位联系人的正常通讯。" + +#: mod/crepair.php:115 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "请立即用后退按钮如果您不确定怎么用这页" + +#: mod/crepair.php:129 mod/crepair.php:131 +msgid "No mirroring" +msgstr "没有复制" + +#: mod/crepair.php:129 +msgid "Mirror as forwarded posting" +msgstr "复制为传达文章" + +#: mod/crepair.php:129 mod/crepair.php:131 +msgid "Mirror as my own posting" +msgstr "复制为我自己的文章" + +#: mod/crepair.php:144 +msgid "Return to contact editor" +msgstr "返回到联系人编辑器" + +#: mod/crepair.php:146 +msgid "Refetch contact data" +msgstr "重新获取联系人数据" + +#: mod/crepair.php:149 +msgid "Remote Self" +msgstr "遥远的自身" + +#: mod/crepair.php:152 +msgid "Mirror postings from this contact" +msgstr "把这个熟人的文章复制。" + +#: mod/crepair.php:154 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "表明这个熟人当遥远的自身。Friendica要把这个熟人的新的文章复制。" + +#: mod/crepair.php:158 mod/admin.php:494 mod/admin.php:1811 mod/admin.php:1822 +#: mod/admin.php:1835 mod/admin.php:1851 mod/settings.php:671 +#: mod/settings.php:697 +msgid "Name" +msgstr "名字" + +#: mod/crepair.php:159 +msgid "Account Nickname" +msgstr "帐户昵称" + +#: mod/crepair.php:160 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Tagname越过名/昵称" + +#: mod/crepair.php:161 +msgid "Account URL" +msgstr "帐户URL" + +#: mod/crepair.php:162 +msgid "Friend Request URL" +msgstr "朋友请求URL" + +#: mod/crepair.php:163 +msgid "Friend Confirm URL" +msgstr "朋友确认URL" + +#: mod/crepair.php:164 +msgid "Notification Endpoint URL" +msgstr "通知端URL" + +#: mod/crepair.php:165 +msgid "Poll/Feed URL" +msgstr "喂URL" + +#: mod/crepair.php:166 +msgid "New photo from this URL" +msgstr "新照片从这个URL" + +#: mod/dfrn_poll.php:123 mod/dfrn_poll.php:539 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "%1$s欢迎%2$s" + +#: mod/help.php:48 +msgid "Help:" +msgstr "帮助:" + +#: mod/help.php:54 view/theme/vier/theme.php:297 src/Content/Nav.php:134 +msgid "Help" +msgstr "帮助" + +#: mod/help.php:63 index.php:317 +msgid "Page not found." +msgstr "页发现。" + +#: mod/install.php:87 +msgid "Friendica Communications Server - Setup" +msgstr "Friendica沟通服务器-安装" + +#: mod/install.php:93 +msgid "Could not connect to database." +msgstr "解不了数据库。" + +#: mod/install.php:97 +msgid "Could not create table." +msgstr "无法创建表格。" + +#: mod/install.php:103 +msgid "Your Friendica site database has been installed." +msgstr "您Friendica网站数据库被安装了。" + +#: mod/install.php:108 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "您可能要手工地进口文件「database.sql」用phpmyadmin或mysql。" + +#: mod/install.php:109 mod/install.php:155 mod/install.php:267 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "请看文件「INSTALL.txt」" + +#: mod/install.php:121 +msgid "Database already in use." +msgstr "数据库已经被使用。" + +#: mod/install.php:152 +msgid "System check" +msgstr "系统检测" + +#: mod/install.php:157 +msgid "Check again" +msgstr "再检测" + +#: mod/install.php:177 +msgid "Database connection" +msgstr "数据库接通" + +#: mod/install.php:178 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "为安装Friendica我们要知道怎么连接您的数据库。" + +#: mod/install.php:179 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "你有关于这些设置有问题的话,请给互联网托管服务或者网页管理联系。" + +#: mod/install.php:180 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "您下边指定的数据库应该已经存在。如果还没有,请创建后继续。" + +#: mod/install.php:184 +msgid "Database Server Name" +msgstr "数据库服务器名" + +#: mod/install.php:185 +msgid "Database Login Name" +msgstr "数据库登录名" + +#: mod/install.php:186 +msgid "Database Login Password" +msgstr "数据库登录密码" + +#: mod/install.php:186 +msgid "For security reasons the password must not be empty" +msgstr "由于安全的原因,密码不能为空" + +#: mod/install.php:187 +msgid "Database Name" +msgstr "数据库名字" + +#: mod/install.php:188 mod/install.php:228 +msgid "Site administrator email address" +msgstr "网站行政人员邮件地址" + +#: mod/install.php:188 mod/install.php:228 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "您账户邮件地址必要符合这个为用网站处理仪表板" + +#: mod/install.php:192 mod/install.php:231 +msgid "Please select a default timezone for your website" +msgstr "请选择您网站的默认时区" + +#: mod/install.php:218 +msgid "Site settings" +msgstr "网站设置" + +#: mod/install.php:232 +msgid "System Language:" +msgstr "系统语言:" + +#: mod/install.php:232 +msgid "" +"Set the default language for your Friendica installation interface and to " +"send emails." +msgstr "为 Friendica 安装界面及邮件发送设置默认语言。" + +#: mod/install.php:248 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "数据库配置文件 \".htconfig.php\" 无法被写入。请在 web 服务器根目录下使用附上的文字创建一个配置文件。" + +#: mod/install.php:265 +msgid "

What next

" +msgstr "

下步是什么

" + +#: mod/install.php:266 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"worker." +msgstr "" + +#: mod/install.php:269 +#, php-format +msgid "" +"Go to your new Friendica node registration page " +"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 "" + +#: mod/message.php:30 src/Content/Nav.php:199 +msgid "New Message" +msgstr "新的消息" + +#: mod/message.php:77 +msgid "Unable to locate contact information." +msgstr "无法找到联系人信息。" + +#: mod/message.php:112 view/theme/frio/theme.php:268 src/Content/Nav.php:196 +msgid "Messages" +msgstr "消息" + +#: mod/message.php:136 +msgid "Do you really want to delete this message?" +msgstr "您真的想删除这个通知吗?" + +#: mod/message.php:152 +msgid "Message deleted." +msgstr "消息删除了。" + +#: mod/message.php:166 +msgid "Conversation removed." +msgstr "交流删除了。" + +#: mod/message.php:272 +msgid "No messages." +msgstr "没有消息" + +#: mod/message.php:311 +msgid "Message not available." +msgstr "通信不可用的" + +#: mod/message.php:378 +msgid "Delete message" +msgstr "删除消息" + +#: mod/message.php:380 mod/message.php:481 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" + +#: mod/message.php:395 mod/message.php:478 +msgid "Delete conversation" +msgstr "删除交谈" + +#: mod/message.php:397 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "没可用的安全交通。您可能会在发送人的简介页会回答。" + +#: mod/message.php:401 +msgid "Send Reply" +msgstr "发回答" + +#: mod/message.php:452 +#, php-format +msgid "Unknown sender - %s" +msgstr "生发送人-%s" + +#: mod/message.php:454 +#, php-format +msgid "You and %s" +msgstr "您和%s" + +#: mod/message.php:456 +#, php-format +msgid "%s and You" +msgstr "%s和您" + +#: mod/message.php:484 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d通知" + +#: mod/group.php:36 +msgid "Group created." +msgstr "群组已创建。" + +#: mod/group.php:42 +msgid "Could not create group." +msgstr "无法创建群组。" + +#: mod/group.php:56 mod/group.php:157 +msgid "Group not found." +msgstr "组找不到。" + +#: mod/group.php:70 +msgid "Group name changed." +msgstr "组名变化了。" + +#: mod/group.php:97 +msgid "Save Group" +msgstr "保存组" + +#: mod/group.php:102 +msgid "Create a group of contacts/friends." +msgstr "创建一组联系人/朋友。" + +#: mod/group.php:103 mod/group.php:199 src/Model/Group.php:421 +msgid "Group Name: " +msgstr "组名:" + +#: mod/group.php:127 +msgid "Group removed." +msgstr "组删除了。" + +#: mod/group.php:129 +msgid "Unable to remove group." +msgstr "不能删除组。" + +#: mod/group.php:192 +msgid "Delete Group" +msgstr "删除群组" + +#: mod/group.php:198 +msgid "Group Editor" +msgstr "组编辑器" + +#: mod/group.php:203 +msgid "Edit Group Name" +msgstr "编辑群组名称" + +#: mod/group.php:213 +msgid "Members" +msgstr "成员" + +#: mod/group.php:229 +msgid "Remove contact from group" +msgstr "" + +#: mod/group.php:253 +msgid "Add contact to group" +msgstr "" + +#: mod/openid.php:29 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID协议错误。没ID还。 " + +#: mod/openid.php:66 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "找不到账户和OpenID注册不允许。" + +#: mod/openid.php:116 src/Module/Login.php:86 src/Module/Login.php:135 +msgid "Login failed." +msgstr "登录失败。" + +#: mod/admin.php:107 +msgid "Theme settings updated." +msgstr "主题设置更新了。" + +#: mod/admin.php:180 src/Content/Nav.php:175 +msgid "Information" +msgstr "资料" + +#: mod/admin.php:181 +msgid "Overview" +msgstr "概览" + +#: mod/admin.php:182 mod/admin.php:722 +msgid "Federation Statistics" +msgstr "联邦网络统计" + +#: mod/admin.php:183 +msgid "Configuration" +msgstr "配置" + +#: mod/admin.php:184 mod/admin.php:1357 +msgid "Site" +msgstr "网站" + +#: mod/admin.php:185 mod/admin.php:1289 mod/admin.php:1817 mod/admin.php:1833 +msgid "Users" +msgstr "用户" + +#: mod/admin.php:186 mod/admin.php:1933 mod/admin.php:1993 mod/settings.php:87 +msgid "Addons" +msgstr "插件" + +#: mod/admin.php:187 mod/admin.php:2202 mod/admin.php:2246 +msgid "Themes" +msgstr "主题" + +#: mod/admin.php:188 mod/settings.php:65 +msgid "Additional features" +msgstr "附加的特点" + +#: mod/admin.php:189 mod/admin.php:304 mod/register.php:291 +#: src/Content/Nav.php:178 src/Module/Tos.php:70 +msgid "Terms of Service" +msgstr "服务条款" + +#: mod/admin.php:190 +msgid "Database" +msgstr "数据库" + +#: mod/admin.php:191 +msgid "DB updates" +msgstr "数据库更新" + +#: mod/admin.php:192 mod/admin.php:757 +msgid "Inspect Queue" +msgstr "" + +#: mod/admin.php:193 +msgid "Tools" +msgstr "工具" + +#: mod/admin.php:194 +msgid "Contact Blocklist" +msgstr "联系人屏蔽列表" + +#: mod/admin.php:195 mod/admin.php:366 +msgid "Server Blocklist" +msgstr "服务器屏蔽列表" + +#: mod/admin.php:196 mod/admin.php:525 +msgid "Delete Item" +msgstr "删除项目" + +#: mod/admin.php:197 mod/admin.php:198 mod/admin.php:2320 +msgid "Logs" +msgstr "记录" + +#: mod/admin.php:199 mod/admin.php:2387 +msgid "View Logs" +msgstr "查看日志" + +#: mod/admin.php:201 +msgid "Diagnostics" +msgstr "诊断" + +#: mod/admin.php:202 +msgid "PHP Info" +msgstr "PHP Info" + +#: mod/admin.php:203 +msgid "probe address" +msgstr "探测地址" + +#: mod/admin.php:204 +msgid "check webfinger" +msgstr "检查 webfinger" + +#: mod/admin.php:223 src/Content/Nav.php:218 +msgid "Admin" +msgstr "管理" + +#: mod/admin.php:224 +msgid "Addon Features" +msgstr "插件特性" + +#: mod/admin.php:225 +msgid "User registrations waiting for confirmation" +msgstr "用户注册等确认" + +#: mod/admin.php:303 mod/admin.php:365 mod/admin.php:482 mod/admin.php:524 +#: mod/admin.php:721 mod/admin.php:756 mod/admin.php:852 mod/admin.php:1356 +#: mod/admin.php:1816 mod/admin.php:1932 mod/admin.php:1992 mod/admin.php:2201 +#: mod/admin.php:2245 mod/admin.php:2319 mod/admin.php:2386 +msgid "Administration" +msgstr "管理" + +#: mod/admin.php:305 +msgid "Display Terms of Service" +msgstr "显示服务条款" + +#: mod/admin.php:305 +msgid "" +"Enable the Terms of Service page. If this is enabled a link to the terms " +"will be added to the registration form and the general information page." +msgstr "" + +#: mod/admin.php:306 +msgid "Display Privacy Statement" +msgstr "显示隐私说明" + +#: mod/admin.php:306 +#, php-format +msgid "" +"Show some informations regarding the needed information to operate the node " +"according e.g. to EU-GDPR." +msgstr "" + +#: mod/admin.php:307 +msgid "Privacy Statement Preview" +msgstr "" + +#: mod/admin.php:309 +msgid "The Terms of Service" +msgstr "服务条款" + +#: mod/admin.php:309 +msgid "" +"Enter the Terms of Service for your node here. You can use BBCode. Headers " +"of sections should be [h2] and below." +msgstr "" + +#: mod/admin.php:357 +msgid "The blocked domain" +msgstr "被封禁的域名" + +#: mod/admin.php:358 mod/admin.php:371 +msgid "The reason why you blocked this domain." +msgstr "封禁这个域名的原因。" + +#: mod/admin.php:359 +msgid "Delete domain" +msgstr "删除域名" + +#: mod/admin.php:359 +msgid "Check to delete this entry from the blocklist" +msgstr "选中以从列表中删除此条目" + +#: mod/admin.php:367 +msgid "" +"This page can be used to define a black list of servers from the federated " +"network that are not allowed to interact with your node. For all entered " +"domains you should also give a reason why you have blocked the remote " +"server." +msgstr "" + +#: mod/admin.php:368 +msgid "" +"The list of blocked servers will be made publically available on the " +"/friendica page so that your users and people investigating communication " +"problems can find the reason easily." +msgstr "" + +#: mod/admin.php:369 +msgid "Add new entry to block list" +msgstr "添加新条目到屏蔽列表" + +#: mod/admin.php:370 +msgid "Server Domain" +msgstr "服务器域名" + +#: mod/admin.php:370 +msgid "" +"The domain of the new server to add to the block list. Do not include the " +"protocol." +msgstr "需要添加到服务器屏蔽列表的服务器的域名。请勿包括协议。" + +#: mod/admin.php:371 +msgid "Block reason" +msgstr "封禁原因" + +#: mod/admin.php:372 +msgid "Add Entry" +msgstr "添加条目" + +#: mod/admin.php:373 +msgid "Save changes to the blocklist" +msgstr "保存变更到屏蔽列表" + +#: mod/admin.php:374 +msgid "Current Entries in the Blocklist" +msgstr "屏蔽列表中的当前条目" + +#: mod/admin.php:377 +msgid "Delete entry from blocklist" +msgstr "删除屏蔽列表中的条目" + +#: mod/admin.php:380 +msgid "Delete entry from blocklist?" +msgstr "从屏蔽列表删除条目?" + +#: mod/admin.php:406 +msgid "Server added to blocklist." +msgstr "服务器已添加到屏蔽列表。" + +#: mod/admin.php:422 +msgid "Site blocklist updated." +msgstr "站点屏蔽列表已更新。" + +#: mod/admin.php:445 src/Core/Console/GlobalCommunityBlock.php:72 +msgid "The contact has been blocked from the node" +msgstr "该联系人已被本节点屏蔽。" + +#: mod/admin.php:447 src/Core/Console/GlobalCommunityBlock.php:69 +#, php-format +msgid "Could not find any contact entry for this URL (%s)" +msgstr "" + +#: mod/admin.php:454 +#, php-format +msgid "%s contact unblocked" +msgid_plural "%s contacts unblocked" +msgstr[0] "" + +#: mod/admin.php:483 +msgid "Remote Contact Blocklist" +msgstr "" + +#: mod/admin.php:484 +msgid "" +"This page allows you to prevent any message from a remote contact to reach " +"your node." +msgstr "" + +#: mod/admin.php:485 +msgid "Block Remote Contact" +msgstr "" + +#: mod/admin.php:486 mod/admin.php:1819 +msgid "select all" +msgstr "全选" + +#: mod/admin.php:487 +msgid "select none" +msgstr "" + +#: mod/admin.php:490 +msgid "No remote contact is blocked from this node." +msgstr "" + +#: mod/admin.php:492 +msgid "Blocked Remote Contacts" +msgstr "" + +#: mod/admin.php:493 +msgid "Block New Remote Contact" +msgstr "" + +#: mod/admin.php:494 +msgid "Photo" +msgstr "照片" + +#: mod/admin.php:494 mod/profiles.php:394 +msgid "Address" +msgstr "地址" + +#: mod/admin.php:502 +#, php-format +msgid "%s total blocked contact" +msgid_plural "%s total blocked contacts" +msgstr[0] "" + +#: mod/admin.php:504 +msgid "URL of the remote contact to block." +msgstr "" + +#: mod/admin.php:526 +msgid "Delete this Item" +msgstr "删除这个项目" + +#: mod/admin.php:527 +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." +msgstr "" + +#: mod/admin.php:528 +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 "" + +#: mod/admin.php:529 +msgid "GUID" +msgstr "GUID" + +#: mod/admin.php:529 +msgid "The GUID of the item you want to delete." +msgstr "你想要删除的项目的 GUID." + +#: mod/admin.php:568 +msgid "Item marked for deletion." +msgstr "被标记为要删除的项目。" + +#: mod/admin.php:639 +msgid "unknown" +msgstr "未知" + +#: mod/admin.php:715 +msgid "" +"This page offers you some numbers to the known part of the federated social " +"network your Friendica node is part of. These numbers are not complete but " +"only reflect the part of the network your node is aware of." +msgstr "" + +#: mod/admin.php:716 +msgid "" +"The Auto Discovered Contact Directory feature is not enabled, it " +"will improve the data displayed here." +msgstr "" + +#: mod/admin.php:728 +#, php-format +msgid "" +"Currently this node is aware of %d nodes with %d registered users from the " +"following platforms:" +msgstr "" + +#: mod/admin.php:759 +msgid "ID" +msgstr "ID" + +#: mod/admin.php:760 +msgid "Recipient Name" +msgstr "接收者的名字" + +#: mod/admin.php:761 +msgid "Recipient Profile" +msgstr "接收者的简介" + +#: mod/admin.php:762 view/theme/frio/theme.php:266 +#: src/Core/NotificationsManager.php:178 src/Content/Nav.php:183 +msgid "Network" +msgstr "网络" + +#: mod/admin.php:763 +msgid "Created" +msgstr "已创建" + +#: mod/admin.php:764 +msgid "Last Tried" +msgstr "上次尝试" + +#: mod/admin.php:765 +msgid "" +"This page lists the content of the queue for outgoing postings. These are " +"postings the initial delivery failed for. They will be resend later and " +"eventually deleted if the delivery fails permanently." +msgstr "" + +#: mod/admin.php:789 +#, php-format +msgid "" +"Your DB still runs with MyISAM tables. You should change the engine type to " +"InnoDB. As Friendica will use InnoDB only features in the future, you should" +" change this! See here for a guide that may be helpful " +"converting the table engines. You may also use the command php " +"bin/console.php dbstructure toinnodb of your Friendica installation for" +" an automatic conversion.
" +msgstr "" + +#: mod/admin.php:796 +#, php-format +msgid "" +"There is a new version of Friendica available for download. Your current " +"version is %1$s, upstream version is %2$s" +msgstr "有新的 Friendica 版本可供下载。您当前的版本为 %1$s,上游版本为 %2$s" + +#: mod/admin.php:806 +msgid "" +"The database update failed. Please run \"php bin/console.php dbstructure " +"update\" from the command line and have a look at the errors that might " +"appear." +msgstr "" + +#: mod/admin.php:812 +msgid "The worker was never executed. Please check your database structure!" +msgstr "" + +#: mod/admin.php:815 +#, php-format +msgid "" +"The last worker execution was on %s UTC. This is older than one hour. Please" +" check your crontab settings." +msgstr "" + +#: mod/admin.php:820 +msgid "Normal Account" +msgstr "正常帐户" + +#: mod/admin.php:821 +msgid "Automatic Follower Account" +msgstr "" + +#: mod/admin.php:822 +msgid "Public Forum Account" +msgstr "" + +#: mod/admin.php:823 +msgid "Automatic Friend Account" +msgstr "自动朋友帐户" + +#: mod/admin.php:824 +msgid "Blog Account" +msgstr "博客账户" + +#: mod/admin.php:825 +msgid "Private Forum Account" +msgstr "" + +#: mod/admin.php:847 +msgid "Message queues" +msgstr "通知排队" + +#: mod/admin.php:853 +msgid "Summary" +msgstr "概要" + +#: mod/admin.php:855 +msgid "Registered users" +msgstr "注册的用户" + +#: mod/admin.php:857 +msgid "Pending registrations" +msgstr "未决的注册" + +#: mod/admin.php:858 +msgid "Version" +msgstr "版本" + +#: mod/admin.php:863 +msgid "Active addons" +msgstr "激活插件" + +#: mod/admin.php:894 +msgid "Can not parse base url. Must have at least ://" +msgstr "不能分析基础URL。至少要://" + +#: mod/admin.php:1224 +msgid "Site settings updated." +msgstr "网站设置更新了。" + +#: mod/admin.php:1251 mod/settings.php:897 +msgid "No special theme for mobile devices" +msgstr "没专门适合手机的主题" + +#: mod/admin.php:1280 +msgid "No community page for local users" +msgstr "" + +#: mod/admin.php:1281 +msgid "No community page" +msgstr "没有社会页" + +#: mod/admin.php:1282 +msgid "Public postings from users of this site" +msgstr "本网站用户的公开文章" + +#: mod/admin.php:1283 +msgid "Public postings from the federated network" +msgstr "" + +#: mod/admin.php:1284 +msgid "Public postings from local users and the federated network" +msgstr "" + +#: mod/admin.php:1290 +msgid "Users, Global Contacts" +msgstr "用户,全球联系人" + +#: mod/admin.php:1291 +msgid "Users, Global Contacts/fallback" +msgstr "" + +#: mod/admin.php:1295 +msgid "One month" +msgstr "一个月" + +#: mod/admin.php:1296 +msgid "Three months" +msgstr "三个月" + +#: mod/admin.php:1297 +msgid "Half a year" +msgstr "半年" + +#: mod/admin.php:1298 +msgid "One year" +msgstr "一年" + +#: mod/admin.php:1303 +msgid "Multi user instance" +msgstr "多用户网站" + +#: mod/admin.php:1326 +msgid "Closed" +msgstr "关闭" + +#: mod/admin.php:1327 +msgid "Requires approval" +msgstr "要批准" + +#: mod/admin.php:1328 +msgid "Open" +msgstr "打开" + +#: mod/admin.php:1332 +msgid "No SSL policy, links will track page SSL state" +msgstr "没SSL方针,环节将追踪页SSL现状" + +#: mod/admin.php:1333 +msgid "Force all links to use SSL" +msgstr "强制所有链接使用 SSL" + +#: mod/admin.php:1334 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "自签证书,只在本地链接使用 SSL(不推荐)" + +#: mod/admin.php:1338 +msgid "Don't check" +msgstr "请勿检查" + +#: mod/admin.php:1339 +msgid "check the stable version" +msgstr "检查稳定版" + +#: mod/admin.php:1340 +msgid "check the development version" +msgstr "检查开发版本" + +#: mod/admin.php:1359 +msgid "Republish users to directory" +msgstr "" + +#: mod/admin.php:1360 mod/register.php:267 +msgid "Registration" +msgstr "注册" + +#: mod/admin.php:1361 +msgid "File upload" +msgstr "文件上传" + +#: mod/admin.php:1362 +msgid "Policies" +msgstr "政策" + +#: mod/admin.php:1364 +msgid "Auto Discovered Contact Directory" +msgstr "" + +#: mod/admin.php:1365 +msgid "Performance" +msgstr "性能" + +#: mod/admin.php:1366 +msgid "Worker" +msgstr "" + +#: mod/admin.php:1367 +msgid "Message Relay" +msgstr "讯息中继" + +#: mod/admin.php:1368 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "重定位 - 警告:高级功能。可能会让这个服务器不可达。" + +#: mod/admin.php:1371 +msgid "Site name" +msgstr "网页名字" + +#: mod/admin.php:1372 +msgid "Host name" +msgstr "服务器名" + +#: mod/admin.php:1373 +msgid "Sender Email" +msgstr "寄主邮件" + +#: mod/admin.php:1373 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "" + +#: mod/admin.php:1374 +msgid "Banner/Logo" +msgstr "标题/标志" + +#: mod/admin.php:1375 +msgid "Shortcut icon" +msgstr "捷径小图片" + +#: mod/admin.php:1375 +msgid "Link to an icon that will be used for browsers." +msgstr "" + +#: mod/admin.php:1376 +msgid "Touch icon" +msgstr "触摸小图片" + +#: mod/admin.php:1376 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "" + +#: mod/admin.php:1377 +msgid "Additional Info" +msgstr "别的消息" + +#: mod/admin.php:1377 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/servers." +msgstr "" + +#: mod/admin.php:1378 +msgid "System language" +msgstr "系统语言" + +#: mod/admin.php:1379 +msgid "System theme" +msgstr "系统主题" + +#: mod/admin.php:1379 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "默认系统主题-会被用户简介超驰-把主题设置变化" + +#: mod/admin.php:1380 +msgid "Mobile system theme" +msgstr "手机系统主题" + +#: mod/admin.php:1380 +msgid "Theme for mobile devices" +msgstr "用于移动设备的主题" + +#: mod/admin.php:1381 +msgid "SSL link policy" +msgstr "SSL环节方针" + +#: mod/admin.php:1381 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "决定产生的链接是否应该强制使用 SSL" + +#: mod/admin.php:1382 +msgid "Force SSL" +msgstr "强制使用 SSL" + +#: mod/admin.php:1382 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "强逼所有非SSL的要求用SSL。注意:在有的系统会导致无限循环" + +#: mod/admin.php:1383 +msgid "Hide help entry from navigation menu" +msgstr "在导航菜单隐藏帮助条目" + +#: mod/admin.php:1383 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "在导航菜单中隐藏帮助页面的菜单条目。您仍然可以通过输入「/help」直接访问。" + +#: mod/admin.php:1384 +msgid "Single user instance" +msgstr "单用户网站" + +#: mod/admin.php:1384 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "弄这网站多用户或单用户为选择的用户" + +#: mod/admin.php:1385 +msgid "Maximum image size" +msgstr "图片最大尺寸" + +#: mod/admin.php:1385 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "最多上传照相的字节。默认是零,意思是无限。" + +#: mod/admin.php:1386 +msgid "Maximum image length" +msgstr "最大图片大小" + +#: mod/admin.php:1386 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "最多像素在上传图片的长度。默认-1,意思是无限。" + +#: mod/admin.php:1387 +msgid "JPEG image quality" +msgstr "JPEG 图片质量" + +#: mod/admin.php:1387 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "上传的JPEG被用这质量[0-100]保存。默认100,最高。" + +#: mod/admin.php:1389 +msgid "Register policy" +msgstr "注册政策" + +#: mod/admin.php:1390 +msgid "Maximum Daily Registrations" +msgstr "一天最多注册" + +#: mod/admin.php:1390 +msgid "" +"If registration is permitted above, this sets the maximum number of new user" +" registrations to accept per day. If register is set to closed, this " +"setting has no effect." +msgstr "如果注册上边许可的,这个选择一天最多新用户注册会接待。如果注册关闭了,这个设置没有印象。" + +#: mod/admin.php:1391 +msgid "Register text" +msgstr "注册正文" + +#: mod/admin.php:1391 +msgid "" +"Will be displayed prominently on the registration page. You can use BBCode " +"here." +msgstr "" + +#: mod/admin.php:1392 +msgid "Accounts abandoned after x days" +msgstr "账户丢弃X天后" + +#: mod/admin.php:1392 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "拒绝浪费系统资源看外网站找丢弃的账户。输入0为无时限。" + +#: mod/admin.php:1393 +msgid "Allowed friend domains" +msgstr "允许的朋友域" + +#: mod/admin.php:1393 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "逗号分隔的域名许根这个网站结友谊。通配符行。空的允许所有的域名。" + +#: mod/admin.php:1394 +msgid "Allowed email domains" +msgstr "允许的电子邮件域" + +#: mod/admin.php:1394 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "逗号分隔的域名可接受在邮件地址为这网站的注册。通配符行。空的允许所有的域名。" + +#: mod/admin.php:1395 +msgid "No OEmbed rich content" +msgstr "" + +#: mod/admin.php:1395 +msgid "" +"Don't show the rich content (e.g. embedded PDF), except from the domains " +"listed below." +msgstr "" + +#: mod/admin.php:1396 +msgid "Allowed OEmbed domains" +msgstr "" + +#: mod/admin.php:1396 +msgid "" +"Comma separated list of domains which oembed content is allowed to be " +"displayed. Wildcards are accepted." +msgstr "" + +#: mod/admin.php:1397 +msgid "Block public" +msgstr "" + +#: mod/admin.php:1397 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "" + +#: mod/admin.php:1398 +msgid "Force publish" +msgstr "强行发布" + +#: mod/admin.php:1398 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "让所有这网站的的简介表明在网站目录。" + +#: mod/admin.php:1399 +msgid "Global directory URL" +msgstr "" + +#: mod/admin.php:1399 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "" + +#: mod/admin.php:1400 +msgid "Private posts by default for new users" +msgstr "新用户默认写私人文章" + +#: mod/admin.php:1400 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "默认新用户文章批准使默认隐私组,没有公开。" + +#: mod/admin.php:1401 +msgid "Don't include post content in email notifications" +msgstr "别包含文章内容在邮件消息" + +#: mod/admin.php:1401 +msgid "" +"Don't include the content of a post/comment/private message/etc. in the " +"email notifications that are sent out from this site, as a privacy measure." +msgstr "别包含文章/谈论/私消息/等的内容在文件消息被这个网站寄出,为了隐私。" + +#: mod/admin.php:1402 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "不允许插件的公众使用权在应用选单。" + +#: mod/admin.php:1402 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "复选这个框为把应用选内插件限制仅成员" + +#: mod/admin.php:1403 +msgid "Don't embed private images in posts" +msgstr "别嵌入私人图案在文章里" + +#: mod/admin.php:1403 +msgid "" +"Don't replace locally-hosted private photos in posts with an embedded copy " +"of the image. This means that contacts who receive posts containing private " +"photos will have to authenticate and load each image, which may take a " +"while." +msgstr "别把复制嵌入的照相代替本网站的私人照相在文章里。结果是收包括私人照相的熟人要认证才卸载个张照片,会花许久。" + +#: mod/admin.php:1404 +msgid "Allow Users to set remote_self" +msgstr "允许用户用遥远的自身" + +#: mod/admin.php:1404 +msgid "" +"With checking this, every user is allowed to mark every contact as a " +"remote_self in the repair contact dialog. Setting this flag on a contact " +"causes mirroring every posting of that contact in the users stream." +msgstr "选择这个之后,用户们允许表明熟人当遥远的自身在熟人修理页。遥远的自身所有文章被复制到用户文章流。" + +#: mod/admin.php:1405 +msgid "Block multiple registrations" +msgstr "阻止多次注册" + +#: mod/admin.php:1405 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "不允许用户注册别的账户为当页。" + +#: mod/admin.php:1406 +msgid "OpenID support" +msgstr "OpenID 支持" + +#: mod/admin.php:1406 +msgid "OpenID support for registration and logins." +msgstr "支持使用 OpenID 注册和登录。" + +#: mod/admin.php:1407 +msgid "Fullname check" +msgstr "全名核实" + +#: mod/admin.php:1407 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "让用户注册的时候放空格姓名中间,省得垃圾注册。" + +#: mod/admin.php:1408 +msgid "Community pages for visitors" +msgstr "" + +#: mod/admin.php:1408 +msgid "" +"Which community pages should be available for visitors. Local users always " +"see both pages." +msgstr "" + +#: mod/admin.php:1409 +msgid "Posts per user on community page" +msgstr "个用户文章数量在社会页" + +#: mod/admin.php:1409 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"'Global Community')" +msgstr "一个用户最多文章在社会页。(无效在“全球社会”)" + +#: mod/admin.php:1410 +msgid "Enable OStatus support" +msgstr "启用 OStatus 支持" + +#: mod/admin.php:1410 +msgid "" +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "提供内置的 OStatus(StatusNet、GNU Social 等)兼容性。所有 OStatus 的通信是公开的,所以会偶尔显示隐私警告。" + +#: mod/admin.php:1411 +msgid "Only import OStatus threads from our contacts" +msgstr "" + +#: mod/admin.php:1411 +msgid "" +"Normally we import every content from our OStatus contacts. With this option" +" we only store threads that are started by a contact that is known on our " +"system." +msgstr "" + +#: mod/admin.php:1412 +msgid "OStatus support can only be enabled if threading is enabled." +msgstr "" + +#: mod/admin.php:1414 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "Diaspora 支持无法启用,因为 Friendica 被安装到了一个子目录。" + +#: mod/admin.php:1415 +msgid "Enable Diaspora support" +msgstr "启用 Diaspora 支持" + +#: mod/admin.php:1415 +msgid "Provide built-in Diaspora network compatibility." +msgstr "提供内置的 Diaspora 网络兼容性。" + +#: mod/admin.php:1416 +msgid "Only allow Friendica contacts" +msgstr "只允许 Friendica 联系人" + +#: mod/admin.php:1416 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "所有联系人必须使用 Friendica 协议 。所有其他内置沟通协议都已停用。" + +#: mod/admin.php:1417 +msgid "Verify SSL" +msgstr "验证 SSL" + +#: mod/admin.php:1417 +msgid "" +"If you wish, you can turn on strict certificate checking. This will mean you" +" cannot connect (at all) to self-signed SSL sites." +msgstr "你想的话,您会使严格证书核实可用。意思是您不能根自签的SSL网站交流。" + +#: mod/admin.php:1418 +msgid "Proxy user" +msgstr "代理用户" + +#: mod/admin.php:1419 +msgid "Proxy URL" +msgstr "代理URL" + +#: mod/admin.php:1420 +msgid "Network timeout" +msgstr "网络超时" + +#: mod/admin.php:1420 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "输入秒数。输入零为无限(不推荐的)。" + +#: mod/admin.php:1421 +msgid "Maximum Load Average" +msgstr "最大平均负荷" + +#: mod/admin.php:1421 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "系统负荷平均以上转播和检查行程会被耽误-默认50。" + +#: mod/admin.php:1422 +msgid "Maximum Load Average (Frontend)" +msgstr "" + +#: mod/admin.php:1422 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "" + +#: mod/admin.php:1423 +msgid "Minimal Memory" +msgstr "最少内存" + +#: mod/admin.php:1423 +msgid "" +"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " +"default 0 (deactivated)." +msgstr "" + +#: mod/admin.php:1424 +msgid "Maximum table size for optimization" +msgstr "" + +#: mod/admin.php:1424 +msgid "" +"Maximum table size (in MB) for the automatic optimization. Enter -1 to " +"disable it." +msgstr "" + +#: mod/admin.php:1425 +msgid "Minimum level of fragmentation" +msgstr "" + +#: mod/admin.php:1425 +msgid "" +"Minimum fragmenation level to start the automatic optimization - default " +"value is 30%." +msgstr "" + +#: mod/admin.php:1427 +msgid "Periodical check of global contacts" +msgstr "" + +#: mod/admin.php:1427 +msgid "" +"If enabled, the global contacts are checked periodically for missing or " +"outdated data and the vitality of the contacts and servers." +msgstr "" + +#: mod/admin.php:1428 +msgid "Days between requery" +msgstr "重新查询间隔天数" + +#: mod/admin.php:1428 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "" + +#: mod/admin.php:1429 +msgid "Discover contacts from other servers" +msgstr "从其他服务器上发现联系人" + +#: mod/admin.php:1429 +msgid "" +"Periodically query other servers for contacts. You can choose between " +"'users': the users on the remote system, 'Global Contacts': active contacts " +"that are known on the system. The fallback is meant for Redmatrix servers " +"and older friendica servers, where global contacts weren't available. The " +"fallback increases the server load, so the recommened setting is 'Users, " +"Global Contacts'." +msgstr "" + +#: mod/admin.php:1430 +msgid "Timeframe for fetching global contacts" +msgstr "" + +#: mod/admin.php:1430 +msgid "" +"When the discovery is activated, this value defines the timeframe for the " +"activity of the global contacts that are fetched from other servers." +msgstr "" + +#: mod/admin.php:1431 +msgid "Search the local directory" +msgstr "搜索本地目录" + +#: mod/admin.php:1431 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "" + +#: mod/admin.php:1433 +msgid "Publish server information" +msgstr "发布服务器信息" + +#: mod/admin.php:1433 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "" + +#: mod/admin.php:1435 +msgid "Check upstream version" +msgstr "检查上游版本" + +#: mod/admin.php:1435 +msgid "" +"Enables checking for new Friendica versions at github. If there is a new " +"version, you will be informed in the admin panel overview." +msgstr "启用在 github 上检查新的 Friendica 版本。如果发现新版本,您将在管理员概要面板得到通知。" + +#: mod/admin.php:1436 +msgid "Suppress Tags" +msgstr "压制标签" + +#: mod/admin.php:1436 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "不在文章末尾显示主题标签列表。" + +#: mod/admin.php:1437 +msgid "Clean database" +msgstr "" + +#: mod/admin.php:1437 +msgid "" +"Remove old remote items, orphaned database records and old content from some" +" other helper tables." +msgstr "" + +#: mod/admin.php:1438 +msgid "Lifespan of remote items" +msgstr "" + +#: mod/admin.php:1438 +msgid "" +"When the database cleanup is enabled, this defines the days after which " +"remote items will be deleted. Own items, and marked or filed items are " +"always kept. 0 disables this behaviour." +msgstr "" + +#: mod/admin.php:1439 +msgid "Lifespan of unclaimed items" +msgstr "" + +#: mod/admin.php:1439 +msgid "" +"When the database cleanup is enabled, this defines the days after which " +"unclaimed remote items (mostly content from the relay) will be deleted. " +"Default value is 90 days. Defaults to the general lifespan value of remote " +"items if set to 0." +msgstr "" + +#: mod/admin.php:1440 +msgid "Path to item cache" +msgstr "路线到项目缓存" + +#: mod/admin.php:1440 +msgid "The item caches buffers generated bbcode and external images." +msgstr "" + +#: mod/admin.php:1441 +msgid "Cache duration in seconds" +msgstr "缓存时间秒" + +#: mod/admin.php:1441 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day). To disable the item cache, set the value to -1." +msgstr "高速缓存要存文件多久?默认是86400秒钟(一天)。停用高速缓存,输入-1。" + +#: mod/admin.php:1442 +msgid "Maximum numbers of comments per post" +msgstr "文件最多评论" + +#: mod/admin.php:1442 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "" + +#: mod/admin.php:1443 +msgid "Temp path" +msgstr "临时文件路线" + +#: mod/admin.php:1443 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "" + +#: mod/admin.php:1444 +msgid "Base path to installation" +msgstr "基础安装路线" + +#: mod/admin.php:1444 +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 "如果您的系统无法为您检测到正确的安装路径,请在这里输入正确的路径。此配置仅在您使用设有限制的系统时符号链接到网页服务器根目录使用。" + +#: mod/admin.php:1445 +msgid "Disable picture proxy" +msgstr "停用图片代理" + +#: mod/admin.php:1445 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on" +" systems with very low bandwith." +msgstr "" + +#: mod/admin.php:1446 +msgid "Only search in tags" +msgstr "" + +#: mod/admin.php:1446 +msgid "On large systems the text search can slow down the system extremely." +msgstr "在大型系统中,正文搜索会极大降低系统运行速度。" + +#: mod/admin.php:1448 +msgid "New base url" +msgstr "新基础URL" + +#: mod/admin.php:1448 +msgid "" +"Change base url for this server. Sends relocate message to all Friendica and" +" Diaspora* contacts of all users." +msgstr "" + +#: mod/admin.php:1450 +msgid "RINO Encryption" +msgstr "RINO 加密" + +#: mod/admin.php:1450 +msgid "Encryption layer between nodes." +msgstr "节点之间的加密层。" + +#: mod/admin.php:1450 +msgid "Enabled" +msgstr "已启用" + +#: mod/admin.php:1452 +msgid "Maximum number of parallel workers" +msgstr "" + +#: mod/admin.php:1452 +msgid "" +"On shared hosters set this to 2. On larger systems, values of 10 are great. " +"Default value is 4." +msgstr "" + +#: mod/admin.php:1453 +msgid "Don't use 'proc_open' with the worker" +msgstr "" + +#: mod/admin.php:1453 +msgid "" +"Enable this if your system doesn't allow the use of 'proc_open'. This can " +"happen on shared hosters. If this is enabled you should increase the " +"frequency of worker calls in your crontab." +msgstr "" + +#: mod/admin.php:1454 +msgid "Enable fastlane" +msgstr "启用快车道模式" + +#: mod/admin.php:1454 +msgid "" +"When enabed, the fastlane mechanism starts an additional worker if processes" +" with higher priority are blocked by processes of lower priority." +msgstr "" + +#: mod/admin.php:1455 +msgid "Enable frontend worker" +msgstr "" + +#: mod/admin.php:1455 +#, php-format +msgid "" +"When enabled the Worker process is triggered when backend access is " +"performed \\x28e.g. messages being delivered\\x29. On smaller sites you " +"might want to call %s/worker on a regular basis via an external cron job. " +"You should only enable this option if you cannot utilize cron/scheduled jobs" +" on your server." +msgstr "" + +#: mod/admin.php:1457 +msgid "Subscribe to relay" +msgstr "" + +#: mod/admin.php:1457 +msgid "" +"Enables the receiving of public posts from the relay. They will be included " +"in the search, subscribed tags and on the global community page." +msgstr "" + +#: mod/admin.php:1458 +msgid "Relay server" +msgstr "中继服务器" + +#: mod/admin.php:1458 +msgid "" +"Address of the relay server where public posts should be send to. For " +"example https://relay.diasp.org" +msgstr "" + +#: mod/admin.php:1459 +msgid "Direct relay transfer" +msgstr "" + +#: mod/admin.php:1459 +msgid "" +"Enables the direct transfer to other servers without using the relay servers" +msgstr "" + +#: mod/admin.php:1460 +msgid "Relay scope" +msgstr "" + +#: mod/admin.php:1460 +msgid "" +"Can be 'all' or 'tags'. 'all' means that every public post should be " +"received. 'tags' means that only posts with selected tags should be " +"received." +msgstr "" + +#: mod/admin.php:1460 +msgid "all" +msgstr "" + +#: mod/admin.php:1460 +msgid "tags" +msgstr "" + +#: mod/admin.php:1461 +msgid "Server tags" +msgstr "" + +#: mod/admin.php:1461 +msgid "Comma separated list of tags for the 'tags' subscription." +msgstr "" + +#: mod/admin.php:1462 +msgid "Allow user tags" +msgstr "" + +#: mod/admin.php:1462 +msgid "" +"If enabled, the tags from the saved searches will used for the 'tags' " +"subscription in addition to the 'relay_server_tags'." +msgstr "" + +#: mod/admin.php:1490 +msgid "Update has been marked successful" +msgstr "更新当成功标签了" + +#: mod/admin.php:1497 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "" + +#: mod/admin.php:1500 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "" + +#: mod/admin.php:1513 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "执行 %s 失败,错误:%s" + +#: mod/admin.php:1515 +#, php-format +msgid "Update %s was successfully applied." +msgstr "把%s更新成功地实行。" + +#: mod/admin.php:1518 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "%s更新没回答现状。不知道是否成功。" + +#: mod/admin.php:1521 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "" + +#: mod/admin.php:1541 +msgid "No failed updates." +msgstr "没有不通过地更新。" + +#: mod/admin.php:1542 +msgid "Check database structure" +msgstr "检查数据库结构" + +#: mod/admin.php:1547 +msgid "Failed Updates" +msgstr "没通过的更新" + +#: mod/admin.php:1548 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "这个不包括1139号更新之前,它们没回答装线。" + +#: mod/admin.php:1549 +msgid "Mark success (if update was manually applied)" +msgstr "标注成功(如果手动地把更新实行了)" + +#: mod/admin.php:1550 +msgid "Attempt to execute this update step automatically" +msgstr "试图自动地把这步更新实行" + +#: mod/admin.php:1589 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "" + +#: mod/admin.php:1592 +#, php-format +msgid "" +"\n" +"\t\t\tThe login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%1$s\n" +"\t\t\tLogin Name:\t\t%2$s\n" +"\t\t\tPassword:\t\t%3$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 %1$s/removeme\n" +"\n" +"\t\t\tThank you and welcome to %4$s." +msgstr "" + +#: mod/admin.php:1626 src/Model/User.php:663 +#, php-format +msgid "Registration details for %s" +msgstr "注册信息为%s" + +#: mod/admin.php:1636 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "" + +#: mod/admin.php:1642 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s 用户被删除了" + +#: mod/admin.php:1689 +#, php-format +msgid "User '%s' deleted" +msgstr "用户 '%s' 被删除了" + +#: mod/admin.php:1697 +#, php-format +msgid "User '%s' unblocked" +msgstr "用户“%s”已解除屏蔽" + +#: mod/admin.php:1697 +#, php-format +msgid "User '%s' blocked" +msgstr "用户“%s”已屏蔽" + +#: mod/admin.php:1754 mod/settings.php:1058 +msgid "Normal Account Page" +msgstr "标准账户页面" + +#: mod/admin.php:1755 mod/settings.php:1062 +msgid "Soapbox Page" +msgstr "演讲台页" + +#: mod/admin.php:1756 mod/settings.php:1066 +msgid "Public Forum" +msgstr "公共论坛" + +#: mod/admin.php:1757 mod/settings.php:1070 +msgid "Automatic Friend Page" +msgstr "自动朋友页" + +#: mod/admin.php:1758 +msgid "Private Forum" +msgstr "" + +#: mod/admin.php:1761 mod/settings.php:1042 +msgid "Personal Page" +msgstr "个人页面" + +#: mod/admin.php:1762 mod/settings.php:1046 +msgid "Organisation Page" +msgstr "组织页面" + +#: mod/admin.php:1763 mod/settings.php:1050 +msgid "News Page" +msgstr "新闻页面" + +#: mod/admin.php:1764 mod/settings.php:1054 +msgid "Community Forum" +msgstr "社区论坛" + +#: mod/admin.php:1811 mod/admin.php:1822 mod/admin.php:1835 mod/admin.php:1853 +#: src/Content/ContactSelector.php:82 +msgid "Email" +msgstr "电子邮件" + +#: mod/admin.php:1811 mod/admin.php:1835 +msgid "Register date" +msgstr "注册日期" + +#: mod/admin.php:1811 mod/admin.php:1835 +msgid "Last login" +msgstr "上次登录" + +#: mod/admin.php:1811 mod/admin.php:1835 +msgid "Last item" +msgstr "上项目" + +#: mod/admin.php:1811 +msgid "Type" +msgstr "" + +#: mod/admin.php:1818 +msgid "Add User" +msgstr "添加用户" + +#: mod/admin.php:1820 +msgid "User registrations waiting for confirm" +msgstr "用户注册等待确认" + +#: mod/admin.php:1821 +msgid "User waiting for permanent deletion" +msgstr "用户等待长久删除" + +#: mod/admin.php:1822 +msgid "Request date" +msgstr "要求日期" + +#: mod/admin.php:1823 +msgid "No registrations." +msgstr "没有注册。" + +#: mod/admin.php:1824 +msgid "Note from the user" +msgstr "" + +#: mod/admin.php:1825 mod/notifications.php:178 mod/notifications.php:262 +msgid "Approve" +msgstr "批准" + +#: mod/admin.php:1826 +msgid "Deny" +msgstr "否定" + +#: mod/admin.php:1830 +msgid "Site admin" +msgstr "网站管理员" + +#: mod/admin.php:1831 +msgid "Account expired" +msgstr "帐户过期了" + +#: mod/admin.php:1834 +msgid "New User" +msgstr "新用户" + +#: mod/admin.php:1835 +msgid "Deleted since" +msgstr "删除从" + +#: mod/admin.php:1840 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "特定的用户被删除!\\n\\n什么这些用户放在这个网站被永远删除!\\n\\n您肯定吗?" + +#: mod/admin.php:1841 +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 "用户{0}将被删除!\\n\\n什么这个用户放在这个网站被永远删除!\\n\\n您肯定吗?" + +#: mod/admin.php:1851 +msgid "Name of the new user." +msgstr "新用户的名字。" + +#: mod/admin.php:1852 +msgid "Nickname" +msgstr "昵称" + +#: mod/admin.php:1852 +msgid "Nickname of the new user." +msgstr "新用户的昵称。" + +#: mod/admin.php:1853 +msgid "Email address of the new user." +msgstr "新用户的邮件地址。" + +#: mod/admin.php:1895 +#, php-format +msgid "Addon %s disabled." +msgstr "插件 %s 已禁用。" + +#: mod/admin.php:1899 +#, php-format +msgid "Addon %s enabled." +msgstr "插件 %s 已启用。" + +#: mod/admin.php:1909 mod/admin.php:2158 +msgid "Disable" +msgstr "停用" + +#: mod/admin.php:1912 mod/admin.php:2161 +msgid "Enable" +msgstr "使能用" + +#: mod/admin.php:1934 mod/admin.php:2203 +msgid "Toggle" +msgstr "肘节" + +#: mod/admin.php:1942 mod/admin.php:2212 +msgid "Author: " +msgstr "作者:" + +#: mod/admin.php:1943 mod/admin.php:2213 +msgid "Maintainer: " +msgstr "维护者:" + +#: mod/admin.php:1995 +msgid "Reload active addons" +msgstr "重新加载可用插件" + +#: mod/admin.php:2000 +#, php-format +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" +msgstr "目前您的节点上没有可用插件。您可以在 %1$s 找到官方插件库,或者到开放的插件登记处 %2$s 也能找到其他有趣的插件" + +#: mod/admin.php:2120 +msgid "No themes found." +msgstr "找不到主题。" + +#: mod/admin.php:2194 +msgid "Screenshot" +msgstr "截图" + +#: mod/admin.php:2248 +msgid "Reload active themes" +msgstr "重载活动的主题" + +#: mod/admin.php:2253 +#, php-format +msgid "No themes found on the system. They should be placed in %1$s" +msgstr "未在系统中发现主题。它们应该被放置在 %1$s" + +#: mod/admin.php:2254 +msgid "[Experimental]" +msgstr "[试验]" + +#: mod/admin.php:2255 +msgid "[Unsupported]" +msgstr "[没支持]" + +#: mod/admin.php:2279 +msgid "Log settings updated." +msgstr "日志设置更新了。" + +#: mod/admin.php:2311 +msgid "PHP log currently enabled." +msgstr "PHP 日志已启用。" + +#: mod/admin.php:2313 +msgid "PHP log currently disabled." +msgstr "PHP 日志已禁用。" + +#: mod/admin.php:2322 +msgid "Clear" +msgstr "清理出" + +#: mod/admin.php:2326 +msgid "Enable Debugging" +msgstr "启用调试" + +#: mod/admin.php:2327 +msgid "Log file" +msgstr "日志文件" + +#: mod/admin.php:2327 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "必要被网页服务器可写的。相对Friendica主文件夹。" + +#: mod/admin.php:2328 +msgid "Log level" +msgstr "日志级别" + +#: mod/admin.php:2330 +msgid "PHP logging" +msgstr "PHP 日志" + +#: mod/admin.php:2331 +msgid "" +"To enable logging of PHP errors and warnings you can add the following to " +"the .htconfig.php file of your installation. The filename set in the " +"'error_log' line is relative to the friendica top-level directory and must " +"be writeable by the web server. The option '1' for 'log_errors' and " +"'display_errors' is to enable these options, set to '0' to disable them." +msgstr "" + +#: mod/admin.php:2362 +#, php-format +msgid "" +"Error trying to open %1$s log file.\\r\\n
Check to see " +"if file %1$s exist and is readable." +msgstr "打开 %1$s 日志文件出错。\\r\\n
请检查 %1$s 文件是否存在并且可读。" + +#: mod/admin.php:2366 +#, php-format +msgid "" +"Couldn't open %1$s log file.\\r\\n
Check to see if file" +" %1$s is readable." +msgstr "无法打开 %1$s 日志文件。\\r\\n
请检查 %1$s 文件是否可读。" + +#: mod/admin.php:2457 mod/admin.php:2458 mod/settings.php:767 +msgid "Off" +msgstr "关" + +#: mod/admin.php:2457 mod/admin.php:2458 mod/settings.php:767 +msgid "On" +msgstr "开" + +#: mod/admin.php:2458 +#, php-format +msgid "Lock feature %s" +msgstr "锁定特性 %s" + +#: mod/admin.php:2466 +msgid "Manage Additional Features" +msgstr "管理附加特性" + +#: mod/dfrn_confirm.php:74 mod/profiles.php:39 mod/profiles.php:149 +#: mod/profiles.php:196 mod/profiles.php:525 +msgid "Profile not found." +msgstr "找不到简介。" + +#: mod/dfrn_confirm.php:130 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "这会偶尔地发生熟人双方都要求和已经批准的时候。" + +#: mod/dfrn_confirm.php:240 +msgid "Response from remote site was not understood." +msgstr "遥网站的回答明白不了。" + +#: mod/dfrn_confirm.php:247 mod/dfrn_confirm.php:252 +msgid "Unexpected response from remote site: " +msgstr "居然回答从遥网站:" + +#: mod/dfrn_confirm.php:261 +msgid "Confirmation completed successfully." +msgstr "确认成功完成。" + +#: mod/dfrn_confirm.php:273 +msgid "Temporary failure. Please wait and try again." +msgstr "临时失败。请等一会,再试。" + +#: mod/dfrn_confirm.php:276 +msgid "Introduction failed or was revoked." +msgstr "介绍失败或被吊销。" + +#: mod/dfrn_confirm.php:281 +msgid "Remote site reported: " +msgstr "远程站点报告:" + +#: mod/dfrn_confirm.php:392 +msgid "Unable to set contact photo." +msgstr "无法设置联系人照片。" + +#: mod/dfrn_confirm.php:450 +#, php-format +msgid "No user record found for '%s' " +msgstr "找不到「%s」的用户记录" + +#: mod/dfrn_confirm.php:460 +msgid "Our site encryption key is apparently messed up." +msgstr "看起来我们的加密钥匙失灵了。" + +#: mod/dfrn_confirm.php:471 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "空的URL供应,或URL解不了码。" + +#: mod/dfrn_confirm.php:487 +msgid "Contact record was not found for you on our site." +msgstr "无法在本站点为您找到联系人记录。" + +#: mod/dfrn_confirm.php:501 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "没有网站公开钥匙在熟人记录在URL%s。" + +#: mod/dfrn_confirm.php:517 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "身份证明由您的系统是在我们的重做。你再试应该运行。" + +#: mod/dfrn_confirm.php:528 +msgid "Unable to set your contact credentials on our system." +msgstr "不能创作您的熟人证件在我们的系统。" + +#: mod/dfrn_confirm.php:583 +msgid "Unable to update your contact profile details on our system" +msgstr "不能更新您的熟人简介消息在我们的系统" + +#: mod/dfrn_confirm.php:613 mod/dfrn_request.php:564 +#: src/Model/Contact.php:1578 +msgid "[Name Withheld]" +msgstr "[名字拒给]" + +#: mod/dfrn_request.php:94 +msgid "This introduction has already been accepted." +msgstr "这个介绍已经接受了。" + +#: mod/dfrn_request.php:112 mod/dfrn_request.php:355 +msgid "Profile location is not valid or does not contain profile information." +msgstr "简介位置失效或不包含简介信息。" + +#: mod/dfrn_request.php:116 mod/dfrn_request.php:359 +msgid "Warning: profile location has no identifiable owner name." +msgstr "警告:简介位置没有可设别的主名。" + +#: mod/dfrn_request.php:119 mod/dfrn_request.php:362 +msgid "Warning: profile location has no profile photo." +msgstr "警告:简介位置没有简介图。" + +#: mod/dfrn_request.php:123 mod/dfrn_request.php:366 +#, 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] "%d需要的参数没找到在输入的位置。" + +#: mod/dfrn_request.php:162 +msgid "Introduction complete." +msgstr "介绍完成的。" + +#: mod/dfrn_request.php:199 +msgid "Unrecoverable protocol error." +msgstr "不能恢复的协议错误" + +#: mod/dfrn_request.php:226 +msgid "Profile unavailable." +msgstr "简介无效" + +#: mod/dfrn_request.php:248 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s今天已经受到了太多联络要求" + +#: mod/dfrn_request.php:249 +msgid "Spam protection measures have been invoked." +msgstr "垃圾保护措施被用了。" + +#: mod/dfrn_request.php:250 +msgid "Friends are advised to please try again in 24 hours." +msgstr "朋友们被建议请24小时后再试。" + +#: mod/dfrn_request.php:276 +msgid "Invalid locator" +msgstr "无效找到物" + +#: mod/dfrn_request.php:312 +msgid "You have already introduced yourself here." +msgstr "您已经自我介绍这儿。" + +#: mod/dfrn_request.php:315 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "看上去您已经是%s的朋友。" + +#: mod/dfrn_request.php:335 +msgid "Invalid profile URL." +msgstr "无效的简介URL。" + +#: mod/dfrn_request.php:341 src/Model/Contact.php:1276 +msgid "Disallowed profile URL." +msgstr "不允许的简介地址." + +#: mod/dfrn_request.php:435 +msgid "Your introduction has been sent." +msgstr "您的介绍发布了。" + +#: mod/dfrn_request.php:473 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "无法为您的网络完成远程订阅。请直接在您的系统上订阅。" + +#: mod/dfrn_request.php:489 +msgid "Please login to confirm introduction." +msgstr "请登录以确认介绍。" + +#: mod/dfrn_request.php:497 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "当前登录的身份不正确。请登录到这个用户。" + +#: mod/dfrn_request.php:511 mod/dfrn_request.php:528 +msgid "Confirm" +msgstr "确认" + +#: mod/dfrn_request.php:523 +msgid "Hide this contact" +msgstr "隐藏这个联系人" + +#: mod/dfrn_request.php:526 +#, php-format +msgid "Welcome home %s." +msgstr "欢迎%s。" + +#: mod/dfrn_request.php:527 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "请确认您的介绍/联络要求给%s。" + +#: mod/dfrn_request.php:637 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "请从以下支持的通信网络之一输入你的 “身份地址”:" + +#: mod/dfrn_request.php:640 +#, php-format +msgid "" +"If you are not yet a member of the free social web, follow " +"this link to find a public Friendica site and join us today." +msgstr "如果您还不是自由社交网络用户中的一员, 请通过此链接查找公共 Friendica 站点并在今天加入我们吧 。" + +#: mod/dfrn_request.php:645 +msgid "Friend/Connection Request" +msgstr "朋友/连接请求" + +#: mod/dfrn_request.php:646 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@gnusocial.de" +msgstr "例如:jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de" + +#: mod/dfrn_request.php:651 src/Content/ContactSelector.php:79 +msgid "Friendica" +msgstr "Friendica" + +#: mod/dfrn_request.php:652 +msgid "GNU Social (Pleroma, Mastodon)" +msgstr "GNU Social (Pleroma, Mastodon)" + +#: mod/dfrn_request.php:653 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "Diaspora (Socialhome, Hubzilla)" + +#: mod/dfrn_request.php:654 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr " - 请别用这个表格。而是在你的 Diaspora 搜索栏输入 %s." + +#: mod/item.php:114 +msgid "Unable to locate original post." +msgstr "找不到当初的新闻" + +#: mod/item.php:274 +msgid "Empty post discarded." +msgstr "空帖子被丢弃了。" + +#: mod/item.php:804 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "这个新闻是由%s,Friendica社会化网络成员之一,发给你。" + +#: mod/item.php:806 +#, php-format +msgid "You may visit them online at %s" +msgstr "你可以网上拜访他在%s" + +#: mod/item.php:807 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "你不想受到这些新闻的话,请回答这个新闻给发者联系。" + +#: mod/item.php:811 +#, php-format +msgid "%s posted an update." +msgstr "%s贴上一个新闻。" + +#: mod/notifications.php:37 +msgid "Invalid request identifier." +msgstr "无效要求身份号。" + +#: mod/notifications.php:46 mod/notifications.php:182 +#: mod/notifications.php:229 +msgid "Discard" +msgstr "丢弃" + +#: mod/notifications.php:98 src/Content/Nav.php:191 +msgid "Notifications" +msgstr "通知" + +#: mod/notifications.php:107 +msgid "Network Notifications" +msgstr "网络通知" + +#: mod/notifications.php:119 +msgid "Personal Notifications" +msgstr "私人通知" + +#: mod/notifications.php:125 +msgid "Home Notifications" +msgstr "主页通知" + +#: mod/notifications.php:155 +msgid "Show Ignored Requests" +msgstr "显示被忽视的请求" + +#: mod/notifications.php:155 +msgid "Hide Ignored Requests" +msgstr "隐藏被忽视的请求" + +#: mod/notifications.php:167 mod/notifications.php:236 +msgid "Notification type: " +msgstr "通知种类:" + +#: mod/notifications.php:170 +#, php-format +msgid "suggested by %s" +msgstr "由%s建议的" + +#: mod/notifications.php:197 +msgid "Claims to be known to you: " +msgstr "声称被您认识:" + +#: mod/notifications.php:198 +msgid "yes" +msgstr "是" + +#: mod/notifications.php:198 +msgid "no" +msgstr "否" + +#: mod/notifications.php:199 mod/notifications.php:204 +msgid "Shall your connection be bidirectional or not?" +msgstr "是否启用双向连接?" + +#: mod/notifications.php:200 mod/notifications.php:205 +#, 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 "" + +#: mod/notifications.php:201 +#, 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 "" + +#: mod/notifications.php:206 +#, php-format +msgid "" +"Accepting %s as a sharer allows them to subscribe to your posts, but you " +"will not receive updates from them in your news feed." +msgstr "" + +#: mod/notifications.php:217 +msgid "Friend" +msgstr "朋友" + +#: mod/notifications.php:218 +msgid "Sharer" +msgstr "分享者" + +#: mod/notifications.php:218 +msgid "Subscriber" +msgstr "订阅者" + +#: mod/notifications.php:273 +msgid "No introductions." +msgstr "没有介绍。" + +#: mod/notifications.php:314 +msgid "Show unread" +msgstr "显示未读" + +#: mod/notifications.php:314 +msgid "Show all" +msgstr "显示全部" + +#: mod/notifications.php:320 +#, php-format +msgid "No more %s notifications." +msgstr "没有更多的 %s 通知。" + #: mod/profile.php:37 src/Model/Profile.php:118 msgid "Requested profile is not available." msgstr "要求的简介联系不上的。" -#: mod/profile.php:78 src/Protocol/OStatus.php:1252 -#, php-format -msgid "%s's posts" -msgstr "%s的帖子" - -#: mod/profile.php:79 src/Protocol/OStatus.php:1253 -#, php-format -msgid "%s's comments" -msgstr "%s 的评论" - -#: mod/profile.php:80 src/Protocol/OStatus.php:1251 +#: mod/profile.php:78 mod/profile.php:81 src/Protocol/OStatus.php:1251 #, php-format msgid "%s's timeline" msgstr "%s 的时间线" -#: mod/profile.php:194 +#: mod/profile.php:79 src/Protocol/OStatus.php:1252 +#, php-format +msgid "%s's posts" +msgstr "%s的帖子" + +#: mod/profile.php:80 src/Protocol/OStatus.php:1253 +#, php-format +msgid "%s's comments" +msgstr "%s 的评论" + +#: mod/profile.php:195 msgid "Tips for New Members" msgstr "新人建议" +#: mod/profiles.php:58 +msgid "Profile deleted." +msgstr "简介删除了。" + +#: mod/profiles.php:74 mod/profiles.php:110 +msgid "Profile-" +msgstr "简介-" + +#: mod/profiles.php:93 mod/profiles.php:132 +msgid "New profile created." +msgstr "新的简介已创建。" + +#: mod/profiles.php:116 +msgid "Profile unavailable to clone." +msgstr "简介不可用为复制。" + +#: mod/profiles.php:206 +msgid "Profile Name is required." +msgstr "必要简介名" + +#: mod/profiles.php:347 +msgid "Marital Status" +msgstr "婚姻状况 " + +#: mod/profiles.php:351 +msgid "Romantic Partner" +msgstr "情人" + +#: mod/profiles.php:363 +msgid "Work/Employment" +msgstr "工作" + +#: mod/profiles.php:366 +msgid "Religion" +msgstr "宗教" + +#: mod/profiles.php:370 +msgid "Political Views" +msgstr "政治观念" + +#: mod/profiles.php:374 +msgid "Gender" +msgstr "性别" + +#: mod/profiles.php:378 +msgid "Sexual Preference" +msgstr "性取向" + +#: mod/profiles.php:382 +msgid "XMPP" +msgstr "XMPP" + +#: mod/profiles.php:386 +msgid "Homepage" +msgstr "主页" + +#: mod/profiles.php:390 mod/profiles.php:593 +msgid "Interests" +msgstr "兴趣" + +#: mod/profiles.php:401 mod/profiles.php:589 +msgid "Location" +msgstr "位置" + +#: mod/profiles.php:483 +msgid "Profile updated." +msgstr "简介更新了。" + +#: mod/profiles.php:540 +msgid "Hide contacts and friends:" +msgstr "隐藏联系人和朋友:" + +#: mod/profiles.php:545 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "藏起来发现您的熟人/朋友单不让这个简介看着看?" + +#: mod/profiles.php:565 +msgid "Show more profile fields:" +msgstr "显示更多简介内容:" + +#: mod/profiles.php:577 +msgid "Profile Actions" +msgstr "" + +#: mod/profiles.php:578 +msgid "Edit Profile Details" +msgstr "剪辑简介消息" + +#: mod/profiles.php:580 +msgid "Change Profile Photo" +msgstr "改变简介照片" + +#: mod/profiles.php:581 +msgid "View this profile" +msgstr "看这个简介" + +#: mod/profiles.php:582 mod/profiles.php:677 src/Model/Profile.php:389 +msgid "Edit visibility" +msgstr "修改能见度" + +#: mod/profiles.php:583 +msgid "Create a new profile using these settings" +msgstr "使用这些设置创建一份新的简介" + +#: mod/profiles.php:584 +msgid "Clone this profile" +msgstr "复制这个简介" + +#: mod/profiles.php:585 +msgid "Delete this profile" +msgstr "删除这个简介" + +#: mod/profiles.php:587 +msgid "Basic information" +msgstr "基本信息" + +#: mod/profiles.php:588 +msgid "Profile picture" +msgstr "头像" + +#: mod/profiles.php:590 +msgid "Preferences" +msgstr "偏好" + +#: mod/profiles.php:591 +msgid "Status information" +msgstr "状态信息" + +#: mod/profiles.php:592 +msgid "Additional information" +msgstr "更多信息" + +#: mod/profiles.php:595 +msgid "Relation" +msgstr "关系" + +#: mod/profiles.php:596 src/Util/Temporal.php:81 src/Util/Temporal.php:83 +msgid "Miscellaneous" +msgstr "形形色色" + +#: mod/profiles.php:599 +msgid "Your Gender:" +msgstr "你的性:" + +#: mod/profiles.php:600 +msgid " Marital Status:" +msgstr "婚姻状况:" + +#: mod/profiles.php:601 src/Model/Profile.php:780 +msgid "Sexual Preference:" +msgstr "性取向:" + +#: mod/profiles.php:602 +msgid "Example: fishing photography software" +msgstr "例如:钓鱼 照片 软件" + +#: mod/profiles.php:607 +msgid "Profile Name:" +msgstr "简介名:" + +#: mod/profiles.php:609 +msgid "" +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "这是你的公开的简介。
可能被所有的因特网用的看到。" + +#: mod/profiles.php:610 +msgid "Your Full Name:" +msgstr "你的全名:" + +#: mod/profiles.php:611 +msgid "Title/Description:" +msgstr "标题/描述:" + +#: mod/profiles.php:614 +msgid "Street Address:" +msgstr "地址:" + +#: mod/profiles.php:615 +msgid "Locality/City:" +msgstr "现场/城市:" + +#: mod/profiles.php:616 +msgid "Region/State:" +msgstr "区域/省" + +#: mod/profiles.php:617 +msgid "Postal/Zip Code:" +msgstr "邮政编码:" + +#: mod/profiles.php:618 +msgid "Country:" +msgstr "国家:" + +#: mod/profiles.php:619 src/Util/Temporal.php:149 +msgid "Age: " +msgstr "年纪:" + +#: mod/profiles.php:622 +msgid "Who: (if applicable)" +msgstr "谁:(要是使用)" + +#: mod/profiles.php:622 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "比如:limou,李某,limou@example。com" + +#: mod/profiles.php:623 +msgid "Since [date]:" +msgstr "追溯[日期]:" + +#: mod/profiles.php:625 +msgid "Tell us about yourself..." +msgstr "给我们自我介绍..." + +#: mod/profiles.php:626 +msgid "XMPP (Jabber) address:" +msgstr "XMPP (Jabber) 地址:" + +#: mod/profiles.php:626 +msgid "" +"The XMPP address will be propagated to your contacts so that they can follow" +" you." +msgstr "这个 XMPP 地址会被传播到你的联系人从而他们可以关注你。" + +#: mod/profiles.php:627 +msgid "Homepage URL:" +msgstr "主页URL:" + +#: mod/profiles.php:628 src/Model/Profile.php:788 +msgid "Hometown:" +msgstr "故乡:" + +#: mod/profiles.php:629 src/Model/Profile.php:796 +msgid "Political Views:" +msgstr "政治观念:" + +#: mod/profiles.php:630 +msgid "Religious Views:" +msgstr " 宗教信仰 :" + +#: mod/profiles.php:631 +msgid "Public Keywords:" +msgstr "公开关键字 :" + +#: mod/profiles.php:631 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(用于建议可能的朋友们,会被别人看)" + +#: mod/profiles.php:632 +msgid "Private Keywords:" +msgstr "私人关键字" + +#: mod/profiles.php:632 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(用于搜索简介,没有给别人看)" + +#: mod/profiles.php:633 src/Model/Profile.php:812 +msgid "Likes:" +msgstr "喜欢:" + +#: mod/profiles.php:634 src/Model/Profile.php:816 +msgid "Dislikes:" +msgstr "不喜欢:" + +#: mod/profiles.php:635 +msgid "Musical interests" +msgstr "音乐兴趣" + +#: mod/profiles.php:636 +msgid "Books, literature" +msgstr "书,文学" + +#: mod/profiles.php:637 +msgid "Television" +msgstr "电视" + +#: mod/profiles.php:638 +msgid "Film/dance/culture/entertainment" +msgstr "电影/跳舞/文化/娱乐" + +#: mod/profiles.php:639 +msgid "Hobbies/Interests" +msgstr "爱好/兴趣" + +#: mod/profiles.php:640 +msgid "Love/romance" +msgstr "爱情/浪漫" + +#: mod/profiles.php:641 +msgid "Work/employment" +msgstr "工作" + +#: mod/profiles.php:642 +msgid "School/education" +msgstr "学院/教育" + +#: mod/profiles.php:643 +msgid "Contact information and Social Networks" +msgstr "熟人信息和社会化网络" + +#: mod/profiles.php:674 src/Model/Profile.php:385 +msgid "Profile Image" +msgstr "简介图像" + +#: mod/profiles.php:676 src/Model/Profile.php:388 +msgid "visible to everybody" +msgstr "给打假可见的" + +#: mod/profiles.php:683 +msgid "Edit/Manage Profiles" +msgstr "编辑/管理简介" + +#: mod/profiles.php:684 src/Model/Profile.php:375 src/Model/Profile.php:397 +msgid "Change profile photo" +msgstr "换简介照片" + +#: mod/profiles.php:685 src/Model/Profile.php:376 +msgid "Create New Profile" +msgstr "创建新的简介" + +#: mod/register.php:100 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "注册成功了。请咨询说明再您的收件箱。" + +#: mod/register.php:104 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
login: %s
" +"password: %s

You can change your password after login." +msgstr "发送邮件失败。你的账户消息是:
用户名:%s
密码: %s

。登录后能改密码。" + +#: mod/register.php:111 +msgid "Registration successful." +msgstr "注册成功。" + +#: mod/register.php:116 +msgid "Your registration can not be processed." +msgstr "处理不了您的注册。" + +#: mod/register.php:163 +msgid "Your registration is pending approval by the site owner." +msgstr "您的注册等网页主的批准。" + +#: mod/register.php:221 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "您会(可选的)用OpenID填这个表格通过提供您的OpenID和点击「注册」。" + +#: mod/register.php:222 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "如果您没熟悉OpenID,请留空这个栏和填另些栏。" + +#: mod/register.php:223 +msgid "Your OpenID (optional): " +msgstr "您的OpenID(可选的):" + +#: mod/register.php:235 +msgid "Include your profile in member directory?" +msgstr "放您的简介再员目录?" + +#: mod/register.php:262 +msgid "Note for the admin" +msgstr "给管理员的便条" + +#: mod/register.php:262 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "给管理员留条消息,为什么你想加入这个节点" + +#: mod/register.php:263 +msgid "Membership on this site is by invitation only." +msgstr "会员身份在这个网站是光通过邀请。" + +#: mod/register.php:264 +msgid "Your invitation code: " +msgstr "您的邀请码:" + +#: mod/register.php:273 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "你的全名 (比如张三,真名或看起来是真名):" + +#: mod/register.php:274 +msgid "" +"Your Email Address: (Initial information will be send there, so this has to " +"be an existing address.)" +msgstr "您的电子邮件地址:(初始信息将发送到这里,所以这必须是一个存在的地址。)" + +#: mod/register.php:276 mod/settings.php:1190 +msgid "New Password:" +msgstr "新密码:" + +#: mod/register.php:276 +msgid "Leave empty for an auto generated password." +msgstr "留空以使用自动生成的密码。" + +#: mod/register.php:277 mod/settings.php:1191 +msgid "Confirm:" +msgstr "确认:" + +#: mod/register.php:278 +#, php-format +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be 'nickname@%s'." +msgstr "" + +#: mod/register.php:279 +msgid "Choose a nickname: " +msgstr "选择昵称:" + +#: mod/register.php:282 src/Content/Nav.php:128 src/Module/Login.php:284 +msgid "Register" +msgstr "注册" + +#: mod/register.php:289 +msgid "Import your profile to this friendica instance" +msgstr "进口您的简介到这个friendica服务器" + +#: mod/removeme.php:44 +msgid "User deleted their account" +msgstr "" + +#: mod/removeme.php:45 +msgid "" +"On your Friendica node an user deleted their account. Please ensure that " +"their data is removed from the backups." +msgstr "" + +#: mod/removeme.php:46 +#, php-format +msgid "The user id is %d" +msgstr "用户 id 为 %d" + +#: mod/removeme.php:77 mod/removeme.php:80 +msgid "Remove My Account" +msgstr "删除我的账户" + +#: mod/removeme.php:78 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "这要完全删除您的账户。这一做过,就不能恢复。" + +#: mod/removeme.php:79 +msgid "Please enter your password for verification:" +msgstr "请输入密码为确认:" + #: mod/settings.php:56 msgid "Account" msgstr "帐户" @@ -6761,11 +6533,11 @@ msgstr "帐户" msgid "Display" msgstr "显示" -#: mod/settings.php:80 mod/settings.php:844 +#: mod/settings.php:80 mod/settings.php:834 msgid "Social Networks" msgstr "社会化网络" -#: mod/settings.php:94 src/Content/Nav.php:201 +#: mod/settings.php:94 src/Content/Nav.php:205 msgid "Delegations" msgstr "代表" @@ -6777,174 +6549,174 @@ msgstr "连接着应用" msgid "Remove account" msgstr "删除账户" -#: mod/settings.php:169 +#: mod/settings.php:167 msgid "Missing some important data!" msgstr "缺失一些重要数据!" -#: mod/settings.php:280 +#: mod/settings.php:278 msgid "Failed to connect with email account using the settings provided." msgstr "不能连接电子邮件账户用输入的设置。" -#: mod/settings.php:285 +#: mod/settings.php:283 msgid "Email settings updated." msgstr "电子邮件设置更新了" -#: mod/settings.php:301 +#: mod/settings.php:299 msgid "Features updated" msgstr "特点更新了" -#: mod/settings.php:374 +#: mod/settings.php:372 msgid "Relocate message has been send to your contacts" msgstr "调动消息已发送给您的联系人" -#: mod/settings.php:386 src/Model/User.php:339 +#: mod/settings.php:384 src/Model/User.php:339 msgid "Passwords do not match. Password unchanged." msgstr "密码不匹配。密码没改变。" -#: mod/settings.php:391 +#: mod/settings.php:389 msgid "Empty passwords are not allowed. Password unchanged." msgstr "空的密码禁止。密码没未改变的。" -#: mod/settings.php:396 src/Core/Console/NewPassword.php:87 +#: mod/settings.php:394 src/Core/Console/NewPassword.php:87 msgid "" "The new password has been exposed in a public data dump, please choose " "another." -msgstr "" +msgstr "新密码已暴露在公共数据转储中,请务必另选密码。" -#: mod/settings.php:402 +#: mod/settings.php:400 msgid "Wrong password." msgstr "密码不正确。" -#: mod/settings.php:409 src/Core/Console/NewPassword.php:94 +#: mod/settings.php:407 src/Core/Console/NewPassword.php:94 msgid "Password changed." msgstr "密码变化了。" -#: mod/settings.php:411 src/Core/Console/NewPassword.php:91 +#: mod/settings.php:409 src/Core/Console/NewPassword.php:91 msgid "Password update failed. Please try again." msgstr "密码更新失败了。请再试。" -#: mod/settings.php:498 +#: mod/settings.php:493 msgid " Please use a shorter name." msgstr " 请用一个更短的名字。" -#: mod/settings.php:501 +#: mod/settings.php:496 msgid " Name too short." msgstr " 名字过短。" -#: mod/settings.php:509 +#: mod/settings.php:504 msgid "Wrong Password" msgstr "密码不正确" -#: mod/settings.php:514 +#: mod/settings.php:509 msgid "Invalid email." msgstr "无效的邮箱。" -#: mod/settings.php:521 +#: mod/settings.php:516 msgid "Cannot change to that email." msgstr "无法更改到此电子邮件地址。" -#: mod/settings.php:574 +#: mod/settings.php:566 msgid "Private forum has no privacy permissions. Using default privacy group." msgstr "私人评坛没有隐私批准。默认隐私组用者。" -#: mod/settings.php:577 +#: mod/settings.php:569 msgid "Private forum has no privacy permissions and no default privacy group." msgstr "私人评坛没有隐私批准或默认隐私组。" -#: mod/settings.php:617 +#: mod/settings.php:609 msgid "Settings updated." msgstr "设置更新了。" -#: mod/settings.php:676 mod/settings.php:702 mod/settings.php:738 +#: mod/settings.php:668 mod/settings.php:694 mod/settings.php:728 msgid "Add application" msgstr "加入应用" -#: mod/settings.php:680 mod/settings.php:706 +#: mod/settings.php:672 mod/settings.php:698 msgid "Consumer Key" msgstr "钥匙(Consumer Key)" -#: mod/settings.php:681 mod/settings.php:707 +#: mod/settings.php:673 mod/settings.php:699 msgid "Consumer Secret" msgstr "密码(Consumer Secret)" -#: mod/settings.php:682 mod/settings.php:708 +#: mod/settings.php:674 mod/settings.php:700 msgid "Redirect" msgstr "重定向" -#: mod/settings.php:683 mod/settings.php:709 +#: mod/settings.php:675 mod/settings.php:701 msgid "Icon url" msgstr "图符URL" -#: mod/settings.php:694 +#: mod/settings.php:686 msgid "You can't edit this application." msgstr "您不能编辑这个应用。" -#: mod/settings.php:737 +#: mod/settings.php:727 msgid "Connected Apps" msgstr "连接着应用" -#: mod/settings.php:739 src/Object/Post.php:155 src/Object/Post.php:157 +#: mod/settings.php:729 src/Object/Post.php:155 src/Object/Post.php:157 msgid "Edit" msgstr "编辑" -#: mod/settings.php:741 +#: mod/settings.php:731 msgid "Client key starts with" msgstr "客户钥匙头字是" -#: mod/settings.php:742 +#: mod/settings.php:732 msgid "No name" msgstr "无名" -#: mod/settings.php:743 +#: mod/settings.php:733 msgid "Remove authorization" msgstr "撤消权能" -#: mod/settings.php:754 +#: mod/settings.php:744 msgid "No Addon settings configured" msgstr "无插件设置配置完成" -#: mod/settings.php:763 +#: mod/settings.php:753 msgid "Addon Settings" msgstr "插件设置" -#: mod/settings.php:784 +#: mod/settings.php:774 msgid "Additional Features" msgstr "附加特性" -#: mod/settings.php:807 src/Content/ContactSelector.php:83 +#: mod/settings.php:797 src/Content/ContactSelector.php:83 msgid "Diaspora" msgstr "Diaspora" -#: mod/settings.php:807 mod/settings.php:808 +#: mod/settings.php:797 mod/settings.php:798 msgid "enabled" msgstr "能够做的" -#: mod/settings.php:807 mod/settings.php:808 +#: mod/settings.php:797 mod/settings.php:798 msgid "disabled" msgstr "已停用" -#: mod/settings.php:807 mod/settings.php:808 +#: mod/settings.php:797 mod/settings.php:798 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "包括的支持为%s连通性是%s" -#: mod/settings.php:808 +#: mod/settings.php:798 msgid "GNU Social (OStatus)" msgstr "GNU Social (OStatus)" -#: mod/settings.php:839 +#: mod/settings.php:829 msgid "Email access is disabled on this site." msgstr "电子邮件访问在这个站上被禁用。" -#: mod/settings.php:849 +#: mod/settings.php:839 msgid "General Social Media Settings" msgstr "通用社交媒体设置" -#: mod/settings.php:850 +#: mod/settings.php:840 msgid "Disable Content Warning" msgstr "禁用内容警告" -#: mod/settings.php:850 +#: mod/settings.php:840 msgid "" "Users on networks like Mastodon or Pleroma are able to set a content warning" " field which collapse their post by default. This disables the automatic " @@ -6952,319 +6724,319 @@ msgid "" "any other content filtering you eventually set up." msgstr "" -#: mod/settings.php:851 +#: mod/settings.php:841 msgid "Disable intelligent shortening" msgstr "" -#: mod/settings.php:851 +#: mod/settings.php:841 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If this option is enabled then every shortened post will always point to the" " original friendica post." msgstr "" -#: mod/settings.php:852 +#: mod/settings.php:842 msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" msgstr "自动关注任何 GNU Social (OStatus) 关注者/提及者" -#: mod/settings.php:852 +#: mod/settings.php:842 msgid "" "If you receive a message from an unknown OStatus user, this option decides " "what to do. If it is checked, a new contact will be created for every " "unknown user." msgstr "" -#: mod/settings.php:853 +#: mod/settings.php:843 msgid "Default group for OStatus contacts" msgstr "用于 OStatus 联系人的默认组" -#: mod/settings.php:854 +#: mod/settings.php:844 msgid "Your legacy GNU Social account" msgstr "您遗留的 GNU Social 账户" -#: mod/settings.php:854 +#: mod/settings.php:844 msgid "" "If you enter your old GNU Social/Statusnet account name here (in the format " "user@domain.tld), your contacts will be added automatically. The field will " "be emptied when done." msgstr "如果您在这里输入您旧的 GNU Social/Statusnet 账号名 (格式示例 user@domain.tld) ,您的联系人列表将会被自动添加。完成后该字段将被清空。" -#: mod/settings.php:857 +#: mod/settings.php:847 msgid "Repair OStatus subscriptions" msgstr "修复 OStatus 订阅" -#: mod/settings.php:861 +#: mod/settings.php:851 msgid "Email/Mailbox Setup" msgstr "邮件收件箱设置" -#: mod/settings.php:862 +#: mod/settings.php:852 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "如果您想用这股服务(可选的)跟邮件熟人交流,请指定怎么连通您的收件箱。" -#: mod/settings.php:863 +#: mod/settings.php:853 msgid "Last successful email check:" msgstr "上个成功收件箱检查:" -#: mod/settings.php:865 +#: mod/settings.php:855 msgid "IMAP server name:" msgstr "IMAP服务器名字:" -#: mod/settings.php:866 +#: mod/settings.php:856 msgid "IMAP port:" msgstr "IMAP服务器端口:" -#: mod/settings.php:867 +#: mod/settings.php:857 msgid "Security:" msgstr "安全:" -#: mod/settings.php:867 mod/settings.php:872 +#: mod/settings.php:857 mod/settings.php:862 msgid "None" msgstr "没有" -#: mod/settings.php:868 +#: mod/settings.php:858 msgid "Email login name:" msgstr "邮件登录名:" -#: mod/settings.php:869 +#: mod/settings.php:859 msgid "Email password:" msgstr "邮件密码:" -#: mod/settings.php:870 +#: mod/settings.php:860 msgid "Reply-to address:" msgstr "回答地址:" -#: mod/settings.php:871 +#: mod/settings.php:861 msgid "Send public posts to all email contacts:" msgstr "发送公开文章给所有的邮件联系人:" -#: mod/settings.php:872 +#: mod/settings.php:862 msgid "Action after import:" msgstr "进口后行动:" -#: mod/settings.php:872 src/Content/Nav.php:189 +#: mod/settings.php:862 src/Content/Nav.php:193 msgid "Mark as seen" msgstr "标注看过" -#: mod/settings.php:872 +#: mod/settings.php:862 msgid "Move to folder" msgstr "搬到文件夹" -#: mod/settings.php:873 +#: mod/settings.php:863 msgid "Move to folder:" msgstr "搬到文件夹:" -#: mod/settings.php:916 +#: mod/settings.php:906 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (不支持的)" -#: mod/settings.php:918 +#: mod/settings.php:908 #, php-format msgid "%s - (Experimental)" msgstr "%s - (实验性)" -#: mod/settings.php:961 +#: mod/settings.php:951 msgid "Display Settings" msgstr "表示设置" -#: mod/settings.php:967 mod/settings.php:991 +#: mod/settings.php:957 mod/settings.php:981 msgid "Display Theme:" msgstr "显示主题:" -#: mod/settings.php:968 +#: mod/settings.php:958 msgid "Mobile Theme:" msgstr "手机主题:" -#: mod/settings.php:969 +#: mod/settings.php:959 msgid "Suppress warning of insecure networks" msgstr "" -#: mod/settings.php:969 +#: mod/settings.php:959 msgid "" "Should the system suppress the warning that the current group contains " "members of networks that can't receive non public postings." msgstr "" -#: mod/settings.php:970 +#: mod/settings.php:960 msgid "Update browser every xx seconds" msgstr "更新游览器每XX秒" -#: mod/settings.php:970 +#: mod/settings.php:960 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "至少 10 秒。输入 -1 禁用。" -#: mod/settings.php:971 +#: mod/settings.php:961 msgid "Number of items to display per page:" msgstr "每页表示多少项目:" -#: mod/settings.php:971 mod/settings.php:972 +#: mod/settings.php:961 mod/settings.php:962 msgid "Maximum of 100 items" msgstr "最多100项目" -#: mod/settings.php:972 +#: mod/settings.php:962 msgid "Number of items to display per page when viewed from mobile device:" msgstr "用手机看一页展示多少项目:" -#: mod/settings.php:973 +#: mod/settings.php:963 msgid "Don't show emoticons" msgstr "不显示表情符号" -#: mod/settings.php:974 +#: mod/settings.php:964 msgid "Calendar" msgstr "日历" -#: mod/settings.php:975 +#: mod/settings.php:965 msgid "Beginning of week:" msgstr "一周的开始:" -#: mod/settings.php:976 +#: mod/settings.php:966 msgid "Don't show notices" msgstr "不显示提示" -#: mod/settings.php:977 +#: mod/settings.php:967 msgid "Infinite scroll" msgstr "无限的滚动" -#: mod/settings.php:978 +#: mod/settings.php:968 msgid "Automatic updates only at the top of the network page" msgstr "仅在返回到网页头部时自动更新" -#: mod/settings.php:978 +#: mod/settings.php:968 msgid "" "When disabled, the network page is updated all the time, which could be " "confusing while reading." msgstr "禁用后,网页将会一直更新,这可能会对阅读造成干扰。" -#: mod/settings.php:979 +#: mod/settings.php:969 msgid "Bandwith Saver Mode" msgstr "省流量模式" -#: mod/settings.php:979 +#: mod/settings.php:969 msgid "" "When enabled, embedded content is not displayed on automatic updates, they " "only show on page reload." msgstr "当启用时,嵌入的内容不会在自动更新时显示,它们只在页面重载时显示。" -#: mod/settings.php:980 +#: mod/settings.php:970 msgid "Smart Threading" msgstr "" -#: mod/settings.php:980 +#: mod/settings.php:970 msgid "" "When enabled, suppress extraneous thread indentation while keeping it where " "it matters. Only works if threading is available and enabled." msgstr "" -#: mod/settings.php:982 +#: mod/settings.php:972 msgid "General Theme Settings" msgstr "通用主题设置" -#: mod/settings.php:983 +#: mod/settings.php:973 msgid "Custom Theme Settings" msgstr "自定义主题设置" -#: mod/settings.php:984 +#: mod/settings.php:974 msgid "Content Settings" msgstr "内容设置" -#: mod/settings.php:985 view/theme/duepuntozero/config.php:73 +#: mod/settings.php:975 view/theme/duepuntozero/config.php:73 #: view/theme/frio/config.php:120 view/theme/quattro/config.php:75 #: view/theme/vier/config.php:121 msgid "Theme settings" msgstr "主题设置" -#: mod/settings.php:1004 +#: mod/settings.php:994 msgid "Unable to find your profile. Please contact your admin." msgstr "无法找到您的简介。请联系您的管理员。" -#: mod/settings.php:1046 +#: mod/settings.php:1033 msgid "Account Types" msgstr "账户类型" -#: mod/settings.php:1047 +#: mod/settings.php:1034 msgid "Personal Page Subtypes" msgstr "" -#: mod/settings.php:1048 +#: mod/settings.php:1035 msgid "Community Forum Subtypes" msgstr "" -#: mod/settings.php:1056 +#: mod/settings.php:1043 msgid "Account for a personal profile." msgstr "" -#: mod/settings.php:1060 +#: mod/settings.php:1047 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "" -#: mod/settings.php:1064 +#: mod/settings.php:1051 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: mod/settings.php:1068 +#: mod/settings.php:1055 msgid "Account for community discussions." msgstr "" -#: mod/settings.php:1072 +#: mod/settings.php:1059 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "" -#: mod/settings.php:1076 +#: mod/settings.php:1063 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: mod/settings.php:1080 +#: mod/settings.php:1067 msgid "Automatically approves all contact requests." msgstr "自动批准所有联系人请求。" -#: mod/settings.php:1084 +#: mod/settings.php:1071 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "" -#: mod/settings.php:1087 +#: mod/settings.php:1074 msgid "Private Forum [Experimental]" msgstr "隐私评坛[实验性的 ]" -#: mod/settings.php:1088 +#: mod/settings.php:1075 msgid "Requires manual approval of contact requests." msgstr "需要人工批准联系人请求。" -#: mod/settings.php:1099 +#: mod/settings.php:1086 msgid "OpenID:" msgstr "OpenID:" -#: mod/settings.php:1099 +#: mod/settings.php:1086 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(可选的) 允许这个 OpenID 登录这个账户。" -#: mod/settings.php:1107 +#: mod/settings.php:1094 msgid "Publish your default profile in your local site directory?" msgstr "出版您默认简介在您当地的网站目录?" -#: mod/settings.php:1107 +#: mod/settings.php:1094 #, php-format msgid "" "Your profile will be published in the global friendica directories (e.g. %s). Your profile will be visible in public." msgstr "" -#: mod/settings.php:1113 +#: mod/settings.php:1100 msgid "Publish your default profile in the global social directory?" msgstr "出版您默认简介在综合社会目录?" -#: mod/settings.php:1113 +#: mod/settings.php:1100 #, php-format msgid "" "Your profile will be published in this node's local " @@ -7272,305 +7044,289 @@ msgid "" " system settings." msgstr "" -#: mod/settings.php:1120 +#: mod/settings.php:1107 msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "在您的默认简介中向访问者隐藏您的联系人/朋友列表?" -#: mod/settings.php:1120 +#: mod/settings.php:1107 msgid "" "Your contact list won't be shown in your default profile page. You can " "decide to show your contact list separately for each additional profile you " "create" msgstr "您的联系人列表将不会在您的默认简介页面展示。您可以决定在您自建的各附加简介中分别展示您的联系人列表" -#: mod/settings.php:1124 +#: mod/settings.php:1111 msgid "Hide your profile details from anonymous viewers?" msgstr "对匿名访问者隐藏详细简介?" -#: mod/settings.php:1124 +#: mod/settings.php:1111 msgid "" "Anonymous visitors will only see your profile picture, your display name and" " the nickname you are using on your profile page. Disables posting public " "messages to Diaspora and other networks." msgstr "" -#: mod/settings.php:1128 +#: mod/settings.php:1115 msgid "Allow friends to post to your profile page?" msgstr "允许朋友们贴文章在您的简介页?" -#: mod/settings.php:1128 +#: mod/settings.php:1115 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "" -#: mod/settings.php:1132 +#: mod/settings.php:1119 msgid "Allow friends to tag your posts?" msgstr "允许朋友们标签您的文章?" -#: mod/settings.php:1132 +#: mod/settings.php:1119 msgid "Your contacts can add additional tags to your posts." msgstr "您的联系人可以为您的帖子添加额外的标签。" -#: mod/settings.php:1136 +#: mod/settings.php:1123 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "允许我们建议您潜力朋友给新成员?" -#: mod/settings.php:1136 +#: mod/settings.php:1123 msgid "" "If you like, Friendica may suggest new members to add you as a contact." msgstr "如果您愿意,Friendica 可能会建议新成员将您添加为联系人。" -#: mod/settings.php:1140 +#: mod/settings.php:1127 msgid "Permit unknown people to send you private mail?" msgstr "允许生人寄给您私人邮件?" -#: mod/settings.php:1140 +#: mod/settings.php:1127 msgid "" "Friendica network users may send you private messages even if they are not " "in your contact list." msgstr "Friendica 网络用户可能会向您发送私人信息,即使他们不在您的联系人列表中。" -#: mod/settings.php:1144 +#: mod/settings.php:1131 msgid "Profile is not published." msgstr "简介未发布。" -#: mod/settings.php:1150 +#: mod/settings.php:1137 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "你的身份地址是 '%s' 或者 '%s'." -#: mod/settings.php:1157 +#: mod/settings.php:1144 msgid "Automatically expire posts after this many days:" msgstr "在这数天后自动使文章过期:" -#: mod/settings.php:1157 +#: mod/settings.php:1144 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "如果为空,文章不会过期。过期的文章将被删除" -#: mod/settings.php:1158 +#: mod/settings.php:1145 msgid "Advanced expiration settings" msgstr "高级过期设置" -#: mod/settings.php:1159 +#: mod/settings.php:1146 msgid "Advanced Expiration" msgstr "先进的过期" -#: mod/settings.php:1160 +#: mod/settings.php:1147 msgid "Expire posts:" msgstr "把文章过期:" -#: mod/settings.php:1161 +#: mod/settings.php:1148 msgid "Expire personal notes:" msgstr "把私人便条过期:" -#: mod/settings.php:1162 +#: mod/settings.php:1149 msgid "Expire starred posts:" msgstr "把星的文章过期:" -#: mod/settings.php:1163 +#: mod/settings.php:1150 msgid "Expire photos:" msgstr "把照片过期:" -#: mod/settings.php:1164 +#: mod/settings.php:1151 msgid "Only expire posts by others:" msgstr "只别人的文章过期:" -#: mod/settings.php:1194 +#: mod/settings.php:1181 msgid "Account Settings" msgstr "帐户设置" -#: mod/settings.php:1202 +#: mod/settings.php:1189 msgid "Password Settings" msgstr "密码设置" -#: mod/settings.php:1204 +#: mod/settings.php:1191 msgid "Leave password fields blank unless changing" msgstr "留空密码字段,除非要修改" -#: mod/settings.php:1205 +#: mod/settings.php:1192 msgid "Current Password:" msgstr "当前密码:" -#: mod/settings.php:1205 mod/settings.php:1206 +#: mod/settings.php:1192 mod/settings.php:1193 msgid "Your current password to confirm the changes" msgstr "你的当前密码,来确认修改" -#: mod/settings.php:1206 +#: mod/settings.php:1193 msgid "Password:" msgstr "密码:" -#: mod/settings.php:1210 +#: mod/settings.php:1197 msgid "Basic Settings" msgstr "基础设置" -#: mod/settings.php:1211 src/Model/Profile.php:736 +#: mod/settings.php:1198 src/Model/Profile.php:736 msgid "Full Name:" msgstr "全名:" -#: mod/settings.php:1212 +#: mod/settings.php:1199 msgid "Email Address:" msgstr "电子邮件地址:" -#: mod/settings.php:1213 +#: mod/settings.php:1200 msgid "Your Timezone:" msgstr "你的时区:" -#: mod/settings.php:1214 +#: mod/settings.php:1201 msgid "Your Language:" msgstr "你的语言:" -#: mod/settings.php:1214 +#: mod/settings.php:1201 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "" -#: mod/settings.php:1215 +#: mod/settings.php:1202 msgid "Default Post Location:" msgstr "默认文章位置:" -#: mod/settings.php:1216 +#: mod/settings.php:1203 msgid "Use Browser Location:" msgstr "使用浏览器位置:" -#: mod/settings.php:1219 +#: mod/settings.php:1206 msgid "Security and Privacy Settings" msgstr "安全和隐私设置" -#: mod/settings.php:1221 +#: mod/settings.php:1208 msgid "Maximum Friend Requests/Day:" msgstr "每天最大朋友请求数:" -#: mod/settings.php:1221 mod/settings.php:1250 +#: mod/settings.php:1208 mod/settings.php:1237 msgid "(to prevent spam abuse)" msgstr "(用于防止垃圾信息滥用)" -#: mod/settings.php:1222 +#: mod/settings.php:1209 msgid "Default Post Permissions" msgstr "默认文章权限" -#: mod/settings.php:1223 +#: mod/settings.php:1210 msgid "(click to open/close)" msgstr "(点击来打开/关闭)" -#: mod/settings.php:1233 +#: mod/settings.php:1220 msgid "Default Private Post" msgstr "默认私人文章" -#: mod/settings.php:1234 +#: mod/settings.php:1221 msgid "Default Public Post" msgstr "默认公开文章" -#: mod/settings.php:1238 +#: mod/settings.php:1225 msgid "Default Permissions for New Posts" msgstr "新文章的默认权限" -#: mod/settings.php:1250 +#: mod/settings.php:1237 msgid "Maximum private messages per day from unknown people:" msgstr "每天来自未知的人的私信:" -#: mod/settings.php:1253 +#: mod/settings.php:1240 msgid "Notification Settings" msgstr "通知设置" -#: mod/settings.php:1254 -msgid "By default post a status message when:" -msgstr "默认地发现状通知如果:" - -#: mod/settings.php:1255 -msgid "accepting a friend request" -msgstr "接受朋友邀请" - -#: mod/settings.php:1256 -msgid "joining a forum/community" -msgstr "加入一个论坛/社区" - -#: mod/settings.php:1257 -msgid "making an interesting profile change" -msgstr "把简介有意思地变修改" - -#: mod/settings.php:1258 +#: mod/settings.php:1241 msgid "Send a notification email when:" msgstr "发一个消息要是:" -#: mod/settings.php:1259 +#: mod/settings.php:1242 msgid "You receive an introduction" msgstr "你收到一份介绍" -#: mod/settings.php:1260 +#: mod/settings.php:1243 msgid "Your introductions are confirmed" msgstr "你的介绍被确认了" -#: mod/settings.php:1261 +#: mod/settings.php:1244 msgid "Someone writes on your profile wall" msgstr "某人写在你的简历墙" -#: mod/settings.php:1262 +#: mod/settings.php:1245 msgid "Someone writes a followup comment" msgstr "某人写一个后续的评论" -#: mod/settings.php:1263 +#: mod/settings.php:1246 msgid "You receive a private message" msgstr "你收到一封私信" -#: mod/settings.php:1264 +#: mod/settings.php:1247 msgid "You receive a friend suggestion" msgstr "你受到一个朋友建议" -#: mod/settings.php:1265 +#: mod/settings.php:1248 msgid "You are tagged in a post" msgstr "你被在新闻标签" -#: mod/settings.php:1266 +#: mod/settings.php:1249 msgid "You are poked/prodded/etc. in a post" msgstr "您在文章被戳" -#: mod/settings.php:1268 +#: mod/settings.php:1251 msgid "Activate desktop notifications" msgstr "启用桌面通知" -#: mod/settings.php:1268 +#: mod/settings.php:1251 msgid "Show desktop popup on new notifications" msgstr "在有新的提示时显示桌面弹出窗口" -#: mod/settings.php:1270 +#: mod/settings.php:1253 msgid "Text-only notification emails" msgstr "纯文本通知邮件" -#: mod/settings.php:1272 +#: mod/settings.php:1255 msgid "Send text only notification emails, without the html part" msgstr "发送纯文本通知邮件,无 html 部分" -#: mod/settings.php:1274 +#: mod/settings.php:1257 msgid "Show detailled notifications" msgstr "显示详细通知" -#: mod/settings.php:1276 +#: mod/settings.php:1259 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "" -#: mod/settings.php:1278 +#: mod/settings.php:1261 msgid "Advanced Account/Page Type Settings" msgstr "专家账户/页种设置" -#: mod/settings.php:1279 +#: mod/settings.php:1262 msgid "Change the behaviour of this account for special situations" msgstr "把这个账户特别情况的时候行动变化" -#: mod/settings.php:1282 +#: mod/settings.php:1265 msgid "Relocate" msgstr "调动" -#: mod/settings.php:1283 +#: mod/settings.php:1266 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "如果您调动这个简介从别的服务器但有的熟人没收到您的更新,尝试按这个钮。" -#: mod/settings.php:1284 +#: mod/settings.php:1267 msgid "Resend relocate message to contacts" msgstr "把调动信息寄给熟人" @@ -7707,7 +7463,7 @@ msgid "Visitor" msgstr "访客" #: view/theme/frio/theme.php:256 src/Content/Nav.php:97 -#: src/Module/Login.php:311 +#: src/Module/Login.php:312 msgid "Logout" msgstr "注销" @@ -7716,7 +7472,7 @@ msgid "End this session" msgstr "结束此次会话" #: view/theme/frio/theme.php:259 src/Content/Nav.php:100 -#: src/Content/Nav.php:182 +#: src/Content/Nav.php:186 msgid "Your posts and conversations" msgstr "你的消息和交谈" @@ -7741,7 +7497,7 @@ msgstr "你的视频" msgid "Your events" msgstr "你的项目" -#: view/theme/frio/theme.php:266 src/Content/Nav.php:179 +#: view/theme/frio/theme.php:266 src/Content/Nav.php:183 msgid "Conversations from your friends" msgstr "来自你的朋友们的交谈" @@ -7750,15 +7506,15 @@ msgstr "来自你的朋友们的交谈" msgid "Events and Calendar" msgstr "事件和日历" -#: view/theme/frio/theme.php:268 src/Content/Nav.php:192 +#: view/theme/frio/theme.php:268 src/Content/Nav.php:196 msgid "Private mail" msgstr "私人的邮件" -#: view/theme/frio/theme.php:269 src/Content/Nav.php:203 +#: view/theme/frio/theme.php:269 src/Content/Nav.php:207 msgid "Account settings" msgstr "帐户设置" -#: view/theme/frio/theme.php:270 src/Content/Nav.php:209 +#: view/theme/frio/theme.php:270 src/Content/Nav.php:213 msgid "Manage/edit friends and contacts" msgstr "管理/编辑朋友和联系人" @@ -7936,11 +7692,11 @@ msgid "System" msgstr "系统" #: src/Core/NotificationsManager.php:192 src/Content/Nav.php:124 -#: src/Content/Nav.php:182 +#: src/Content/Nav.php:186 msgid "Home" msgstr "主页" -#: src/Core/NotificationsManager.php:199 src/Content/Nav.php:186 +#: src/Core/NotificationsManager.php:199 src/Content/Nav.php:190 msgid "Introductions" msgstr "介绍" @@ -7996,6 +7752,234 @@ msgstr "友谊/联络要求" msgid "New Follower" msgstr "新关注者" +#: src/Core/Install.php:157 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "没找到命令行PHP在网服务器PATH。" + +#: src/Core/Install.php:158 +msgid "" +"If you don't have a command line version of PHP installed on your server, " +"you will not be able to run the background processing. See 'Setup the worker'" +msgstr "" + +#: src/Core/Install.php:162 +msgid "PHP executable path" +msgstr "PHP可执行路径" + +#: src/Core/Install.php:162 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "输入全路线到php执行程序。您会留空白为继续安装。" + +#: src/Core/Install.php:167 +msgid "Command line PHP" +msgstr "命令行PHP" + +#: src/Core/Install.php:176 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "PHP执行程序不是命令行PHP執行檔(有可能是cgi-fgci版本)" + +#: src/Core/Install.php:177 +msgid "Found PHP version: " +msgstr "找到 PHP 版本:" + +#: src/Core/Install.php:179 +msgid "PHP cli binary" +msgstr "命令行PHP執行檔" + +#: src/Core/Install.php:189 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "您系统的命令行PHP没有能够「register_argc_argv」。" + +#: src/Core/Install.php:190 +msgid "This is required for message delivery to work." +msgstr "这必要为通信发布成功。" + +#: src/Core/Install.php:192 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: src/Core/Install.php:220 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "错误:这系统的「register_argc_argv」子程序不能产生加密钥匙" + +#: src/Core/Install.php:221 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "如果您用Windows,请看「http://www.php.net/manual/en/openssl.installation.php」。" + +#: src/Core/Install.php:223 +msgid "Generate encryption keys" +msgstr "产生加密钥匙" + +#: src/Core/Install.php:244 +msgid "libCurl PHP module" +msgstr "libCurl PHP模块" + +#: src/Core/Install.php:245 +msgid "GD graphics PHP module" +msgstr "GD显示PHP模块" + +#: src/Core/Install.php:246 +msgid "OpenSSL PHP module" +msgstr "OpenSSL PHP模块" + +#: src/Core/Install.php:247 +msgid "PDO or MySQLi PHP module" +msgstr "PDO 或者 MySQLi PHP 模块" + +#: src/Core/Install.php:248 +msgid "mb_string PHP module" +msgstr "mb_string PHP模块" + +#: src/Core/Install.php:249 +msgid "XML PHP module" +msgstr "XML PHP 模块" + +#: src/Core/Install.php:250 +msgid "iconv PHP module" +msgstr "iconv PHP 模块" + +#: src/Core/Install.php:251 +msgid "POSIX PHP module" +msgstr "POSIX PHP 模块" + +#: src/Core/Install.php:255 src/Core/Install.php:257 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite部件" + +#: src/Core/Install.php:255 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "错误:Apache服务器的mod-rewrite模块是必要的可却不安装的。" + +#: src/Core/Install.php:263 +msgid "Error: libCURL PHP module required but not installed." +msgstr "错误:libCurl PHP模块是必要的可却不安装的。" + +#: src/Core/Install.php:267 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "错误:GD显示PHP模块跟JPEG支持是必要的可却安装的。" + +#: src/Core/Install.php:271 +msgid "Error: openssl PHP module required but not installed." +msgstr "错误:openssl PHP模块是必要的可却不安装的。" + +#: src/Core/Install.php:275 +msgid "Error: PDO or MySQLi PHP module required but not installed." +msgstr "" + +#: src/Core/Install.php:279 +msgid "Error: The MySQL driver for PDO is not installed." +msgstr "错误:MySQL 的 PHP 数据对象 (PDO) 扩展驱动未安装。" + +#: src/Core/Install.php:283 +msgid "Error: mb_string PHP module required but not installed." +msgstr "错误:mbstring PHP模块必要可没安装的。" + +#: src/Core/Install.php:287 +msgid "Error: iconv PHP module required but not installed." +msgstr "错误:需要 iconv PHP 模块但它并没有被安装。" + +#: src/Core/Install.php:291 +msgid "Error: POSIX PHP module required but not installed." +msgstr "" + +#: src/Core/Install.php:301 +msgid "Error, XML PHP module required but not installed." +msgstr "部件错误,需要 XML PHP 模块但它并没有被安装。" + +#: src/Core/Install.php:320 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "网页安装器要创建一个叫 \".htconfig.php\" 的文件在你的 web 服务器的顶层目录下,但无法这么做。" + +#: src/Core/Install.php:321 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "这常常是一个权设置,因为网服务器可能不会写文件在文件夹-即使您会。" + +#: src/Core/Install.php:322 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "这个步骤头,我们给您正文要保存在叫.htconfig.php的文件在您Friendica主文件夹。" + +#: src/Core/Install.php:323 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "或者您会这个步骤不做还是实行手动的安装。请看INSTALL.txt文件为说明。" + +#: src/Core/Install.php:326 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php是可写的" + +#: src/Core/Install.php:344 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Friendica用Smarty3模板机车为建筑网页。Smarty3把模板编译成PHP为催建筑网页。" + +#: src/Core/Install.php:345 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/smarty3/ under the Friendica top level " +"folder." +msgstr "为了保存这些模板,网服务器要写权利于view/smarty3/目录在Friendica主目录下。" + +#: src/Core/Install.php:346 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "请保险您网服务器用户(比如www-data)有这个目录的写权利。" + +#: src/Core/Install.php:347 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/smarty3/ only--not the template files (.tpl) that it contains." +msgstr "注意:为了安全,您应该只给网服务器写权利于view/smarty3/-没有模板文件(.tpl)之下。" + +#: src/Core/Install.php:350 +msgid "view/smarty3 is writable" +msgstr "能写view/smarty3" + +#: src/Core/Install.php:375 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "在 .htaccess 中的 URL 重写不工作。请检查你的服务器配置。" + +#: src/Core/Install.php:377 +msgid "Error message from Curl when fetching" +msgstr "" + +#: src/Core/Install.php:381 +msgid "Url rewrite is working" +msgstr "URL改写发挥机能" + +#: src/Core/Install.php:408 +msgid "ImageMagick PHP extension is not installed" +msgstr "ImageMagick PHP 扩展没有安装" + +#: src/Core/Install.php:410 +msgid "ImageMagick PHP extension is installed" +msgstr "ImageMagick PHP 扩展已安装" + +#: src/Core/Install.php:412 +msgid "ImageMagick supports GIF" +msgstr "ImageMagick 支持 GIF" + #: src/Util/Temporal.php:147 src/Model/Profile.php:756 msgid "Birthday:" msgstr "生日:" @@ -8091,217 +8075,6 @@ msgstr "无效的源协议" msgid "Invalid link protocol" msgstr "无效的连接协议" -#: src/Content/Feature.php:79 -msgid "General Features" -msgstr "通用特性" - -#: src/Content/Feature.php:81 -msgid "Multiple Profiles" -msgstr "多简介" - -#: src/Content/Feature.php:81 -msgid "Ability to create multiple profiles" -msgstr "能穿凿多简介" - -#: src/Content/Feature.php:82 -msgid "Photo Location" -msgstr "照片地点" - -#: src/Content/Feature.php:82 -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:83 -msgid "Export Public Calendar" -msgstr "导出公共日历" - -#: src/Content/Feature.php:83 -msgid "Ability for visitors to download the public calendar" -msgstr "" - -#: src/Content/Feature.php:88 -msgid "Post Composition Features" -msgstr "文章编写特性" - -#: src/Content/Feature.php:89 -msgid "Post Preview" -msgstr "文章预览" - -#: src/Content/Feature.php:89 -msgid "Allow previewing posts and comments before publishing them" -msgstr "在发布前允许预览文章和评论" - -#: src/Content/Feature.php:90 -msgid "Auto-mention Forums" -msgstr "自动提示论坛" - -#: src/Content/Feature.php:90 -msgid "" -"Add/remove mention when a forum page is selected/deselected in ACL window." -msgstr "" - -#: src/Content/Feature.php:95 -msgid "Network Sidebar Widgets" -msgstr "网络工具栏小窗口" - -#: src/Content/Feature.php:96 -msgid "Search by Date" -msgstr "按日期搜索" - -#: src/Content/Feature.php:96 -msgid "Ability to select posts by date ranges" -msgstr "能按时期范围选择文章" - -#: src/Content/Feature.php:97 src/Content/Feature.php:127 -msgid "List Forums" -msgstr "列出各论坛" - -#: src/Content/Feature.php:97 -msgid "Enable widget to display the forums your are connected with" -msgstr "" - -#: src/Content/Feature.php:98 -msgid "Group Filter" -msgstr "组过滤器" - -#: src/Content/Feature.php:98 -msgid "Enable widget to display Network posts only from selected group" -msgstr "启用用于只显示从所选组发出的网络文章的小组件" - -#: src/Content/Feature.php:99 -msgid "Network Filter" -msgstr "网络滤器" - -#: src/Content/Feature.php:99 -msgid "Enable widget to display Network posts only from selected network" -msgstr "使光表示网络文章从选择的网络小窗口" - -#: src/Content/Feature.php:100 -msgid "Save search terms for re-use" -msgstr "保存搜索关键为再用" - -#: src/Content/Feature.php:105 -msgid "Network Tabs" -msgstr "网络分页" - -#: src/Content/Feature.php:106 -msgid "Network Personal Tab" -msgstr "网络私人分页" - -#: src/Content/Feature.php:106 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "启用只显示你参与了的网络文章的标签页" - -#: src/Content/Feature.php:107 -msgid "Network New Tab" -msgstr "网络新分页" - -#: src/Content/Feature.php:107 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "启用只显示新的网络文章(过去12小时)的标签页" - -#: src/Content/Feature.php:108 -msgid "Network Shared Links Tab" -msgstr "网络分享链接分页" - -#: src/Content/Feature.php:108 -msgid "Enable tab to display only Network posts with links in them" -msgstr "使表示光网络文章包括链接分页可用" - -#: src/Content/Feature.php:113 -msgid "Post/Comment Tools" -msgstr "文章/评论工具" - -#: src/Content/Feature.php:114 -msgid "Multiple Deletion" -msgstr "多删除" - -#: src/Content/Feature.php:114 -msgid "Select and delete multiple posts/comments at once" -msgstr "选择和删除多文章/评论一次" - -#: src/Content/Feature.php:115 -msgid "Edit Sent Posts" -msgstr "编辑发送的文章" - -#: src/Content/Feature.php:115 -msgid "Edit and correct posts and comments after sending" -msgstr "编辑或修改文章和评论发送后" - -#: src/Content/Feature.php:116 -msgid "Tagging" -msgstr "标签" - -#: src/Content/Feature.php:116 -msgid "Ability to tag existing posts" -msgstr "能把目前的文章标签" - -#: src/Content/Feature.php:117 -msgid "Post Categories" -msgstr "文章种类" - -#: src/Content/Feature.php:117 -msgid "Add categories to your posts" -msgstr "加入种类给您的文章" - -#: src/Content/Feature.php:118 src/Content/Widget.php:205 -msgid "Saved Folders" -msgstr "保存的文件夹" - -#: src/Content/Feature.php:118 -msgid "Ability to file posts under folders" -msgstr "能把文章归档在文件夹 " - -#: src/Content/Feature.php:119 -msgid "Dislike Posts" -msgstr "不喜欢文章" - -#: src/Content/Feature.php:119 -msgid "Ability to dislike posts/comments" -msgstr "能不喜欢文章/评论" - -#: src/Content/Feature.php:120 -msgid "Star Posts" -msgstr "加星的文章" - -#: src/Content/Feature.php:120 -msgid "Ability to mark special posts with a star indicator" -msgstr "能把优秀文章跟星标注" - -#: src/Content/Feature.php:121 -msgid "Mute Post Notifications" -msgstr "" - -#: src/Content/Feature.php:121 -msgid "Ability to mute notifications for a thread" -msgstr "" - -#: src/Content/Feature.php:126 -msgid "Advanced Profile Settings" -msgstr "" - -#: src/Content/Feature.php:127 -msgid "Show visitors public community forums at the Advanced Profile Page" -msgstr "" - -#: src/Content/Feature.php:128 -msgid "Tag Cloud" -msgstr "标签云" - -#: src/Content/Feature.php:128 -msgid "Provide a personal tag cloud on your profile page" -msgstr "在您的个人简介中提供个人标签云" - -#: src/Content/Feature.php:129 -msgid "Display Membership Date" -msgstr "" - -#: src/Content/Feature.php:129 -msgid "Display membership date in profile" -msgstr "" - #: src/Content/OEmbed.php:253 msgid "Embedding disabled" msgstr "嵌入已停用" @@ -8630,6 +8403,253 @@ msgstr "无所谓" msgid "Ask me" msgstr "问我" +#: src/Content/Widget.php:33 +msgid "Add New Contact" +msgstr "添加新的联系人" + +#: src/Content/Widget.php:34 +msgid "Enter address or web location" +msgstr "输入地址或网络位置" + +#: src/Content/Widget.php:35 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "比如:li@example.com, http://example.com/li" + +#: src/Content/Widget.php:53 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d邀请可用的" + +#: src/Content/Widget.php:164 +msgid "Networks" +msgstr "网络" + +#: src/Content/Widget.php:167 +msgid "All Networks" +msgstr "所有网络" + +#: src/Content/Widget.php:205 src/Content/Feature.php:118 +msgid "Saved Folders" +msgstr "保存的文件夹" + +#: src/Content/Widget.php:208 src/Content/Widget.php:248 +msgid "Everything" +msgstr "一切" + +#: src/Content/Widget.php:245 +msgid "Categories" +msgstr "种类" + +#: src/Content/Widget.php:312 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d 个共同的联系人" + +#: src/Content/Feature.php:79 +msgid "General Features" +msgstr "通用特性" + +#: src/Content/Feature.php:81 +msgid "Multiple Profiles" +msgstr "多简介" + +#: src/Content/Feature.php:81 +msgid "Ability to create multiple profiles" +msgstr "能穿凿多简介" + +#: src/Content/Feature.php:82 +msgid "Photo Location" +msgstr "照片地点" + +#: src/Content/Feature.php:82 +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:83 +msgid "Export Public Calendar" +msgstr "导出公共日历" + +#: src/Content/Feature.php:83 +msgid "Ability for visitors to download the public calendar" +msgstr "" + +#: src/Content/Feature.php:88 +msgid "Post Composition Features" +msgstr "文章编写特性" + +#: src/Content/Feature.php:89 +msgid "Post Preview" +msgstr "文章预览" + +#: src/Content/Feature.php:89 +msgid "Allow previewing posts and comments before publishing them" +msgstr "在发布前允许预览文章和评论" + +#: src/Content/Feature.php:90 +msgid "Auto-mention Forums" +msgstr "自动提示论坛" + +#: src/Content/Feature.php:90 +msgid "" +"Add/remove mention when a forum page is selected/deselected in ACL window." +msgstr "" + +#: src/Content/Feature.php:95 +msgid "Network Sidebar" +msgstr "" + +#: src/Content/Feature.php:96 +msgid "Ability to select posts by date ranges" +msgstr "能按时期范围选择文章" + +#: src/Content/Feature.php:97 src/Content/Feature.php:127 +msgid "List Forums" +msgstr "列出各论坛" + +#: src/Content/Feature.php:97 +msgid "Enable widget to display the forums your are connected with" +msgstr "" + +#: src/Content/Feature.php:98 +msgid "Group Filter" +msgstr "组过滤器" + +#: src/Content/Feature.php:98 +msgid "Enable widget to display Network posts only from selected group" +msgstr "启用用于只显示从所选组发出的网络文章的小组件" + +#: src/Content/Feature.php:99 +msgid "Network Filter" +msgstr "网络滤器" + +#: src/Content/Feature.php:99 +msgid "Enable widget to display Network posts only from selected network" +msgstr "使光表示网络文章从选择的网络小窗口" + +#: src/Content/Feature.php:100 +msgid "Save search terms for re-use" +msgstr "保存搜索关键为再用" + +#: src/Content/Feature.php:105 +msgid "Network Tabs" +msgstr "网络分页" + +#: src/Content/Feature.php:106 +msgid "Network Personal Tab" +msgstr "网络私人分页" + +#: src/Content/Feature.php:106 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "启用只显示你参与了的网络文章的标签页" + +#: src/Content/Feature.php:107 +msgid "Network New Tab" +msgstr "网络新分页" + +#: src/Content/Feature.php:107 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "启用只显示新的网络文章(过去12小时)的标签页" + +#: src/Content/Feature.php:108 +msgid "Network Shared Links Tab" +msgstr "网络分享链接分页" + +#: src/Content/Feature.php:108 +msgid "Enable tab to display only Network posts with links in them" +msgstr "使表示光网络文章包括链接分页可用" + +#: src/Content/Feature.php:113 +msgid "Post/Comment Tools" +msgstr "文章/评论工具" + +#: src/Content/Feature.php:114 +msgid "Multiple Deletion" +msgstr "多删除" + +#: src/Content/Feature.php:114 +msgid "Select and delete multiple posts/comments at once" +msgstr "选择和删除多文章/评论一次" + +#: src/Content/Feature.php:115 +msgid "Edit Sent Posts" +msgstr "编辑发送的文章" + +#: src/Content/Feature.php:115 +msgid "Edit and correct posts and comments after sending" +msgstr "编辑或修改文章和评论发送后" + +#: src/Content/Feature.php:116 +msgid "Tagging" +msgstr "标签" + +#: src/Content/Feature.php:116 +msgid "Ability to tag existing posts" +msgstr "能把目前的文章标签" + +#: src/Content/Feature.php:117 +msgid "Post Categories" +msgstr "文章种类" + +#: src/Content/Feature.php:117 +msgid "Add categories to your posts" +msgstr "加入种类给您的文章" + +#: src/Content/Feature.php:118 +msgid "Ability to file posts under folders" +msgstr "能把文章归档在文件夹 " + +#: src/Content/Feature.php:119 +msgid "Dislike Posts" +msgstr "不喜欢文章" + +#: src/Content/Feature.php:119 +msgid "Ability to dislike posts/comments" +msgstr "能不喜欢文章/评论" + +#: src/Content/Feature.php:120 +msgid "Star Posts" +msgstr "加星的文章" + +#: src/Content/Feature.php:120 +msgid "Ability to mark special posts with a star indicator" +msgstr "能把优秀文章跟星标注" + +#: src/Content/Feature.php:121 +msgid "Mute Post Notifications" +msgstr "" + +#: src/Content/Feature.php:121 +msgid "Ability to mute notifications for a thread" +msgstr "" + +#: src/Content/Feature.php:126 +msgid "Advanced Profile Settings" +msgstr "" + +#: src/Content/Feature.php:127 +msgid "Show visitors public community forums at the Advanced Profile Page" +msgstr "" + +#: src/Content/Feature.php:128 +msgid "Tag Cloud" +msgstr "标签云" + +#: src/Content/Feature.php:128 +msgid "Provide a personal tag cloud on your profile page" +msgstr "在您的个人简介中提供个人标签云" + +#: src/Content/Feature.php:129 +msgid "Display Membership Date" +msgstr "" + +#: src/Content/Feature.php:129 +msgid "Display membership date in profile" +msgstr "" + #: src/Content/Nav.php:53 msgid "Nothing new here" msgstr "这里没有什么新的" @@ -8694,102 +8714,66 @@ msgstr "人物名录" msgid "Information about this friendica instance" msgstr "资料关于这个Friendica服务器" -#: src/Content/Nav.php:180 +#: src/Content/Nav.php:178 +msgid "Terms of Service of this Friendica instance" +msgstr "" + +#: src/Content/Nav.php:184 msgid "Network Reset" msgstr "网络重设" -#: src/Content/Nav.php:180 +#: src/Content/Nav.php:184 msgid "Load Network page with no filters" msgstr "表示网络页无滤器" -#: src/Content/Nav.php:186 +#: src/Content/Nav.php:190 msgid "Friend Requests" msgstr "友谊邀请" -#: src/Content/Nav.php:188 +#: src/Content/Nav.php:192 msgid "See all notifications" msgstr "看所有的通知" -#: src/Content/Nav.php:189 +#: src/Content/Nav.php:193 msgid "Mark all system notifications seen" msgstr "记号各系统通知看过的" -#: src/Content/Nav.php:193 +#: src/Content/Nav.php:197 msgid "Inbox" msgstr "收件箱" -#: src/Content/Nav.php:194 +#: src/Content/Nav.php:198 msgid "Outbox" msgstr "发件箱" -#: src/Content/Nav.php:198 +#: src/Content/Nav.php:202 msgid "Manage" msgstr "管理" -#: src/Content/Nav.php:198 +#: src/Content/Nav.php:202 msgid "Manage other pages" msgstr "管理别的页" -#: src/Content/Nav.php:206 src/Model/Profile.php:368 +#: src/Content/Nav.php:210 src/Model/Profile.php:368 msgid "Profiles" msgstr "简介" -#: src/Content/Nav.php:206 +#: src/Content/Nav.php:210 msgid "Manage/Edit Profiles" msgstr "管理/编辑简介" -#: src/Content/Nav.php:214 +#: src/Content/Nav.php:218 msgid "Site setup and configuration" msgstr "网站开办和配置" -#: src/Content/Nav.php:217 +#: src/Content/Nav.php:221 msgid "Navigation" msgstr "导航" -#: src/Content/Nav.php:217 +#: src/Content/Nav.php:221 msgid "Site map" msgstr "网站地图" -#: src/Content/Widget.php:33 -msgid "Add New Contact" -msgstr "添加新的联系人" - -#: src/Content/Widget.php:34 -msgid "Enter address or web location" -msgstr "输入地址或网络位置" - -#: src/Content/Widget.php:35 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "比如:li@example.com, http://example.com/li" - -#: src/Content/Widget.php:53 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d邀请可用的" - -#: src/Content/Widget.php:164 -msgid "Networks" -msgstr "网络" - -#: src/Content/Widget.php:167 -msgid "All Networks" -msgstr "所有网络" - -#: src/Content/Widget.php:208 src/Content/Widget.php:248 -msgid "Everything" -msgstr "一切" - -#: src/Content/Widget.php:245 -msgid "Categories" -msgstr "种类" - -#: src/Content/Widget.php:312 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d 个共同的联系人" - #: src/Database/DBStructure.php:32 msgid "There are no tables on MyISAM." msgstr "未在 MyISAM 中发现表。" @@ -8824,8 +8808,9 @@ msgid "Errors encountered performing database changes: " msgstr "操作数据库更改的时候遇到了错误:" #: src/Database/DBStructure.php:210 -msgid ": Database update" -msgstr ": 数据库升级" +#, php-format +msgid "%s: Database update" +msgstr "" #: src/Database/DBStructure.php:460 #, php-format @@ -8929,246 +8914,6 @@ msgstr "创建新组" msgid "Edit groups" msgstr "编辑组" -#: src/Model/User.php:154 -msgid "Login failed" -msgstr "登录失败" - -#: src/Model/User.php:185 -msgid "Not enough information to authenticate" -msgstr "没有足够信息以认证" - -#: src/Model/User.php:346 -msgid "An invitation is required." -msgstr "需要邀请。" - -#: src/Model/User.php:350 -msgid "Invitation could not be verified." -msgstr "不能验证邀请。" - -#: src/Model/User.php:357 -msgid "Invalid OpenID url" -msgstr "无效的OpenID url" - -#: src/Model/User.php:370 src/Module/Login.php:100 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "我们用您输入的OpenID登录的时候碰到问题。请核实拼法是对的。" - -#: src/Model/User.php:370 src/Module/Login.php:100 -msgid "The error message was:" -msgstr "错误通知是:" - -#: src/Model/User.php:376 -msgid "Please enter the required information." -msgstr "请输入必要的信息。" - -#: src/Model/User.php:389 -msgid "Please use a shorter name." -msgstr "请用一个短一点的名字。" - -#: src/Model/User.php:392 -msgid "Name too short." -msgstr "名字太短。" - -#: src/Model/User.php:400 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "这看上去不是您的全姓名。" - -#: src/Model/User.php:405 -msgid "Your email domain is not among those allowed on this site." -msgstr "这网站允许的域名中没有您的" - -#: src/Model/User.php:409 -msgid "Not a valid email address." -msgstr "无效的邮件地址。" - -#: src/Model/User.php:413 src/Model/User.php:421 -msgid "Cannot use that email." -msgstr "无法使用此邮件地址。" - -#: src/Model/User.php:428 -msgid "Your nickname can only contain a-z, 0-9 and _." -msgstr "您的昵称只能由字母、数字和下划线组成。" - -#: src/Model/User.php:435 src/Model/User.php:491 -msgid "Nickname is already registered. Please choose another." -msgstr "此昵称已被注册。请选择新的昵称。" - -#: src/Model/User.php:445 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "严重错误:安全密钥生成失败。" - -#: src/Model/User.php:478 src/Model/User.php:482 -msgid "An error occurred during registration. Please try again." -msgstr "注册出现问题。请再次尝试。" - -#: src/Model/User.php:507 -msgid "An error occurred creating your default profile. Please try again." -msgstr "创建你的默认简介的时候出现了一个错误。请再试。" - -#: src/Model/User.php:514 -msgid "An error occurred creating your self contact. Please try again." -msgstr "" - -#: src/Model/User.php:523 -msgid "" -"An error occurred creating your default contact group. Please try again." -msgstr "" - -#: src/Model/User.php:597 -#, 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" -"\t\t" -msgstr "" - -#: src/Model/User.php:607 -#, php-format -msgid "Registration at %s" -msgstr "在 %s 的注册" - -#: src/Model/User.php:625 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t\t" -msgstr "\n\t\t\t亲爱的 %1$s,\n\t\t\t\t感谢您在 %2$s 注册。您的账户已被创建。\n\t\t" - -#: src/Model/User.php:629 -#, 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/Contact.php:657 -msgid "Drop Contact" -msgstr "删除联系人" - -#: src/Model/Contact.php:1060 -msgid "Organisation" -msgstr "组织" - -#: src/Model/Contact.php:1063 -msgid "News" -msgstr "新闻" - -#: src/Model/Contact.php:1066 -msgid "Forum" -msgstr "论坛" - -#: src/Model/Contact.php:1245 -msgid "Connect URL missing." -msgstr "连接URL失踪的。" - -#: src/Model/Contact.php:1254 -msgid "" -"The contact could not be added. Please check the relevant network " -"credentials in your Settings -> Social Networks page." -msgstr "" - -#: src/Model/Contact.php:1301 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "这网站没配置允许跟别的网络交流." - -#: src/Model/Contact.php:1302 src/Model/Contact.php:1316 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "没有兼容协议或者摘要找到了." - -#: src/Model/Contact.php:1314 -msgid "The profile address specified does not provide adequate information." -msgstr "输入的简介地址没有够消息。" - -#: src/Model/Contact.php:1319 -msgid "An author or name was not found." -msgstr "找不到作者或名。" - -#: src/Model/Contact.php:1322 -msgid "No browser URL could be matched to this address." -msgstr "这个地址没有符合什么游览器URL。" - -#: src/Model/Contact.php:1325 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "无法匹配一个@-风格的身份地址和一个已知的协议或电子邮件联系人。" - -#: src/Model/Contact.php:1326 -msgid "Use mailto: in front of address to force email check." -msgstr "输入mailto:地址前为要求电子邮件检查。" - -#: src/Model/Contact.php:1332 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "输入的简介地址属在这个网站使不可用的网络。" - -#: src/Model/Contact.php:1337 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "有限的简介。这人不会接受直达/私人通信从您。" - -#: src/Model/Contact.php:1388 -msgid "Unable to retrieve contact information." -msgstr "无法检索联系人信息。" - -#: src/Model/Contact.php:1605 src/Protocol/DFRN.php:1510 -#, php-format -msgid "%s's birthday" -msgstr "%s的生日" - -#: src/Model/Contact.php:1606 src/Protocol/DFRN.php:1511 -#, php-format -msgid "Happy Birthday %s" -msgstr "生日快乐%s" - -#: src/Model/Item.php:1776 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%1$s 正在参加 %2$s 的 %3$s" - -#: src/Model/Item.php:1781 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%1$s 不在参加 %2$s 的 %3$s" - -#: src/Model/Item.php:1786 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%1$s 可以参加 %2$s 的 %3$s" - #: src/Model/Profile.php:97 msgid "Requested account is not available." msgstr "要求的账户不可用。" @@ -9287,6 +9032,246 @@ msgstr "" msgid "Only You Can See This" msgstr "只有你可以看这个" +#: src/Model/User.php:154 +msgid "Login failed" +msgstr "登录失败" + +#: src/Model/User.php:185 +msgid "Not enough information to authenticate" +msgstr "没有足够信息以认证" + +#: src/Model/User.php:346 +msgid "An invitation is required." +msgstr "需要邀请。" + +#: src/Model/User.php:350 +msgid "Invitation could not be verified." +msgstr "不能验证邀请。" + +#: src/Model/User.php:357 +msgid "Invalid OpenID url" +msgstr "无效的OpenID url" + +#: src/Model/User.php:370 src/Module/Login.php:101 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "我们用您输入的OpenID登录的时候碰到问题。请核实拼法是对的。" + +#: src/Model/User.php:370 src/Module/Login.php:101 +msgid "The error message was:" +msgstr "错误通知是:" + +#: src/Model/User.php:376 +msgid "Please enter the required information." +msgstr "请输入必要的信息。" + +#: src/Model/User.php:389 +msgid "Please use a shorter name." +msgstr "请用一个短一点的名字。" + +#: src/Model/User.php:392 +msgid "Name too short." +msgstr "名字太短。" + +#: src/Model/User.php:400 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "这看上去不是您的全姓名。" + +#: src/Model/User.php:405 +msgid "Your email domain is not among those allowed on this site." +msgstr "这网站允许的域名中没有您的" + +#: src/Model/User.php:409 +msgid "Not a valid email address." +msgstr "无效的邮件地址。" + +#: src/Model/User.php:413 src/Model/User.php:421 +msgid "Cannot use that email." +msgstr "无法使用此邮件地址。" + +#: src/Model/User.php:428 +msgid "Your nickname can only contain a-z, 0-9 and _." +msgstr "您的昵称只能由字母、数字和下划线组成。" + +#: src/Model/User.php:435 src/Model/User.php:491 +msgid "Nickname is already registered. Please choose another." +msgstr "此昵称已被注册。请选择新的昵称。" + +#: src/Model/User.php:445 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "严重错误:安全密钥生成失败。" + +#: src/Model/User.php:478 src/Model/User.php:482 +msgid "An error occurred during registration. Please try again." +msgstr "注册出现问题。请再次尝试。" + +#: src/Model/User.php:507 +msgid "An error occurred creating your default profile. Please try again." +msgstr "创建你的默认简介的时候出现了一个错误。请再试。" + +#: src/Model/User.php:514 +msgid "An error occurred creating your self contact. Please try again." +msgstr "" + +#: src/Model/User.php:523 +msgid "" +"An error occurred creating your default contact group. Please try again." +msgstr "" + +#: src/Model/User.php:597 +#, 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" +"\t\t" +msgstr "" + +#: src/Model/User.php:607 +#, php-format +msgid "Registration at %s" +msgstr "在 %s 的注册" + +#: src/Model/User.php:625 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t\t" +msgstr "\n\t\t\t亲爱的 %1$s,\n\t\t\t\t感谢您在 %2$s 注册。您的账户已被创建。\n\t\t" + +#: src/Model/User.php:629 +#, 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/Contact.php:667 +msgid "Drop Contact" +msgstr "删除联系人" + +#: src/Model/Contact.php:1101 +msgid "Organisation" +msgstr "组织" + +#: src/Model/Contact.php:1104 +msgid "News" +msgstr "新闻" + +#: src/Model/Contact.php:1107 +msgid "Forum" +msgstr "论坛" + +#: src/Model/Contact.php:1286 +msgid "Connect URL missing." +msgstr "连接URL失踪的。" + +#: src/Model/Contact.php:1295 +msgid "" +"The contact could not be added. Please check the relevant network " +"credentials in your Settings -> Social Networks page." +msgstr "" + +#: src/Model/Contact.php:1342 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "这网站没配置允许跟别的网络交流." + +#: src/Model/Contact.php:1343 src/Model/Contact.php:1357 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "没有兼容协议或者摘要找到了." + +#: src/Model/Contact.php:1355 +msgid "The profile address specified does not provide adequate information." +msgstr "输入的简介地址没有够消息。" + +#: src/Model/Contact.php:1360 +msgid "An author or name was not found." +msgstr "找不到作者或名。" + +#: src/Model/Contact.php:1363 +msgid "No browser URL could be matched to this address." +msgstr "这个地址没有符合什么游览器URL。" + +#: src/Model/Contact.php:1366 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "无法匹配一个@-风格的身份地址和一个已知的协议或电子邮件联系人。" + +#: src/Model/Contact.php:1367 +msgid "Use mailto: in front of address to force email check." +msgstr "输入mailto:地址前为要求电子邮件检查。" + +#: src/Model/Contact.php:1373 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "输入的简介地址属在这个网站使不可用的网络。" + +#: src/Model/Contact.php:1378 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "有限的简介。这人不会接受直达/私人通信从您。" + +#: src/Model/Contact.php:1429 +msgid "Unable to retrieve contact information." +msgstr "无法检索联系人信息。" + +#: src/Model/Contact.php:1646 src/Protocol/DFRN.php:1513 +#, php-format +msgid "%s's birthday" +msgstr "%s的生日" + +#: src/Model/Contact.php:1647 src/Protocol/DFRN.php:1514 +#, php-format +msgid "Happy Birthday %s" +msgstr "生日快乐%s" + +#: src/Model/Item.php:1851 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%1$s 正在参加 %2$s 的 %3$s" + +#: src/Model/Item.php:1856 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%1$s 不在参加 %2$s 的 %3$s" + +#: src/Model/Item.php:1861 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%1$s 可以参加 %2$s 的 %3$s" + #: src/Protocol/OStatus.php:1799 #, php-format msgid "%s is now following %s." @@ -9305,63 +9290,59 @@ msgstr "%s 停止关注了 %s." msgid "stopped following" msgstr "取消关注" -#: src/Protocol/Diaspora.php:2670 +#: src/Protocol/Diaspora.php:2521 msgid "Sharing notification from Diaspora network" msgstr "分享通知从Diaspora网络" -#: src/Protocol/Diaspora.php:3762 +#: src/Protocol/Diaspora.php:3609 msgid "Attachments:" msgstr "附件:" -#: src/Worker/Delivery.php:407 +#: src/Worker/Delivery.php:415 msgid "(no subject)" msgstr "(无主题)" -#: src/Module/Login.php:282 -msgid "Create a New Account" -msgstr "创建新的账户" - -#: src/Module/Login.php:315 -msgid "Password: " -msgstr "密码:" - -#: src/Module/Login.php:316 -msgid "Remember me" -msgstr "记住我" - -#: src/Module/Login.php:319 -msgid "Or login using OpenID: " -msgstr "或者使用 OpenID 登录: " - -#: src/Module/Login.php:325 -msgid "Forgot your password?" -msgstr "忘记你的密码吗?" - -#: src/Module/Login.php:328 -msgid "Website Terms of Service" -msgstr "网站服务条款" - -#: src/Module/Login.php:329 -msgid "terms of service" -msgstr "服务条款" - -#: src/Module/Login.php:331 -msgid "Website Privacy Policy" -msgstr "网站隐私政策" - -#: src/Module/Login.php:332 -msgid "privacy policy" -msgstr "隐私政策" - #: src/Module/Logout.php:28 msgid "Logged out." msgstr "已注销。" -#: src/Module/Tos.php:51 -msgid "Privacy Statement" -msgstr "隐私声明" +#: src/Module/Login.php:283 +msgid "Create a New Account" +msgstr "创建新的账户" -#: src/Module/Tos.php:52 +#: src/Module/Login.php:316 +msgid "Password: " +msgstr "密码:" + +#: src/Module/Login.php:317 +msgid "Remember me" +msgstr "记住我" + +#: src/Module/Login.php:320 +msgid "Or login using OpenID: " +msgstr "或者使用 OpenID 登录: " + +#: src/Module/Login.php:326 +msgid "Forgot your password?" +msgstr "忘记你的密码吗?" + +#: src/Module/Login.php:329 +msgid "Website Terms of Service" +msgstr "网站服务条款" + +#: src/Module/Login.php:330 +msgid "terms of service" +msgstr "服务条款" + +#: src/Module/Login.php:332 +msgid "Website Privacy Policy" +msgstr "网站隐私政策" + +#: src/Module/Login.php:333 +msgid "privacy policy" +msgstr "隐私政策" + +#: src/Module/Tos.php:34 src/Module/Tos.php:74 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" @@ -9374,157 +9355,175 @@ msgid "" "settings, it is not necessary for communication." msgstr "" -#: src/Module/Tos.php:53 +#: src/Module/Tos.php:35 src/Module/Tos.php:75 msgid "" "This data is required for communication and is passed on to the nodes of the" -" communication partners. Users can enter additional private data that may be" -" transmitted to the communication partners accounts." +" 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:54 +#: src/Module/Tos.php:36 src/Module/Tos.php:76 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" " account settings. If the user wants " "to delete their account they can do so at %1$s/removeme. The deletion of the account will " -"be permanent." +"be permanent. Deletion of the data will also be requested from the nodes of " +"the communication partners." msgstr "" +#: src/Module/Tos.php:39 src/Module/Tos.php:73 +msgid "Privacy Statement" +msgstr "隐私声明" + #: src/Object/Post.php:128 msgid "This entry was edited" msgstr "这个条目被编辑了" -#: src/Object/Post.php:182 +#: src/Object/Post.php:187 +msgid "Remove from your stream" +msgstr "" + +#: src/Object/Post.php:200 msgid "save to folder" msgstr "保存在文件夹" -#: src/Object/Post.php:235 +#: src/Object/Post.php:243 msgid "I will attend" msgstr "我将会参加" -#: src/Object/Post.php:235 +#: src/Object/Post.php:243 msgid "I will not attend" msgstr "我将不会参加" -#: src/Object/Post.php:235 +#: src/Object/Post.php:243 msgid "I might attend" msgstr "我可能会参加" -#: src/Object/Post.php:263 +#: src/Object/Post.php:271 msgid "add star" msgstr "加星" -#: src/Object/Post.php:264 +#: src/Object/Post.php:272 msgid "remove star" msgstr "消星" -#: src/Object/Post.php:265 +#: src/Object/Post.php:273 msgid "toggle star status" msgstr "转变星现状" -#: src/Object/Post.php:268 +#: src/Object/Post.php:276 msgid "starred" msgstr "已标星" -#: src/Object/Post.php:274 +#: src/Object/Post.php:282 msgid "ignore thread" msgstr "忽视主题" -#: src/Object/Post.php:275 +#: src/Object/Post.php:283 msgid "unignore thread" msgstr "取消忽视主题" -#: src/Object/Post.php:276 +#: src/Object/Post.php:284 msgid "toggle ignore status" msgstr "切换忽视状态" -#: src/Object/Post.php:285 +#: src/Object/Post.php:293 msgid "add tag" msgstr "加标签" -#: src/Object/Post.php:296 +#: src/Object/Post.php:304 msgid "like" msgstr "喜欢" -#: src/Object/Post.php:297 +#: src/Object/Post.php:305 msgid "dislike" msgstr "不喜欢" -#: src/Object/Post.php:300 +#: src/Object/Post.php:308 msgid "Share this" msgstr "分享这个" -#: src/Object/Post.php:300 +#: src/Object/Post.php:308 msgid "share" msgstr "分享" -#: src/Object/Post.php:365 +#: src/Object/Post.php:373 msgid "to" msgstr "至" -#: src/Object/Post.php:366 +#: src/Object/Post.php:374 msgid "via" msgstr "经过" -#: src/Object/Post.php:367 +#: src/Object/Post.php:375 msgid "Wall-to-Wall" msgstr "从墙到墙" -#: src/Object/Post.php:368 +#: src/Object/Post.php:376 msgid "via Wall-To-Wall:" msgstr "通过从墙到墙" -#: src/Object/Post.php:427 +#: src/Object/Post.php:435 #, php-format msgid "%d comment" msgid_plural "%d comments" -msgstr[0] "%d评论" +msgstr[0] "%d 条评论" -#: src/Object/Post.php:797 +#: src/Object/Post.php:805 msgid "Bold" msgstr "粗体" -#: src/Object/Post.php:798 +#: src/Object/Post.php:806 msgid "Italic" msgstr "斜体" -#: src/Object/Post.php:799 +#: src/Object/Post.php:807 msgid "Underline" msgstr "下划线" -#: src/Object/Post.php:800 +#: src/Object/Post.php:808 msgid "Quote" msgstr "引语" -#: src/Object/Post.php:801 +#: src/Object/Post.php:809 msgid "Code" msgstr "源代码" -#: src/Object/Post.php:802 +#: src/Object/Post.php:810 msgid "Image" msgstr "图片" -#: src/Object/Post.php:803 +#: src/Object/Post.php:811 msgid "Link" msgstr "链接" -#: src/Object/Post.php:804 +#: src/Object/Post.php:812 msgid "Video" msgstr "录像" -#: src/App.php:511 +#: src/App.php:524 msgid "Delete this item?" msgstr "删除这个项目?" -#: src/App.php:513 +#: src/App.php:526 msgid "show fewer" msgstr "显示更小" -#: index.php:472 +#: src/App.php:1114 +msgid "No system theme config value set." +msgstr "" + +#: index.php:464 msgid "toggle mobile" msgstr "切换移动设备" +#: update.php:193 +#, php-format +msgid "%s: Updating author-id and owner-id in item and thread table. " +msgstr "" + #: boot.php:796 #, php-format msgid "Update %s failed. See error logs." diff --git a/view/lang/zh-cn/strings.php b/view/lang/zh-cn/strings.php index 3868fda99..77dfca427 100644 --- a/view/lang/zh-cn/strings.php +++ b/view/lang/zh-cn/strings.php @@ -6,21 +6,6 @@ function string_plural_select_zh_cn($n){ return 0;; }} ; -$a->strings["Item not found."] = "项目找不到。"; -$a->strings["Do you really want to delete this item?"] = "您真的想删除这个项目吗?"; -$a->strings["Yes"] = "是"; -$a->strings["Cancel"] = "取消"; -$a->strings["Permission denied."] = "权限不够。"; -$a->strings["Archives"] = "档案"; -$a->strings["show more"] = "看多"; -$a->strings["Daily posting limit of %d post reached. The post was rejected."] = [ - 0 => "达到每日 %d 发文限制。此文被拒绝发出。", -]; -$a->strings["Weekly posting limit of %d post reached. The post was rejected."] = [ - 0 => "达到每周 %d 发文限制。此文被拒绝发出。", -]; -$a->strings["Monthly posting limit of %d post reached. The post was rejected."] = "达到每月 %d 发文限制。此文被拒绝发出。"; -$a->strings["Profile Photos"] = "简介照片"; $a->strings["Friendica Notification"] = "Friendica 通知"; $a->strings["Thank You,"] = "谢谢,"; $a->strings["%s Administrator"] = "%s管理员"; @@ -84,6 +69,15 @@ $a->strings["Welcome "] = "欢迎"; $a->strings["Please upload a profile photo."] = "请上传一张简介照片"; $a->strings["Welcome back "] = "欢迎回来"; $a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "表格安全令牌不对。最可能因为表格开着太久(三个小时以上)提交前。"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "找不到DNS信息为数据库服务器「%s」"; +$a->strings["Daily posting limit of %d post reached. The post was rejected."] = [ + 0 => "达到每日 %d 发文限制。此文被拒绝发出。", +]; +$a->strings["Weekly posting limit of %d post reached. The post was rejected."] = [ + 0 => "达到每周 %d 发文限制。此文被拒绝发出。", +]; +$a->strings["Monthly posting limit of %d post reached. The post was rejected."] = "达到每月 %d 发文限制。此文被拒绝发出。"; +$a->strings["Profile Photos"] = "简介照片"; $a->strings["event"] = "事件"; $a->strings["status"] = "现状"; $a->strings["photo"] = "照片"; @@ -170,6 +164,7 @@ $a->strings["Permission settings"] = "权设置"; $a->strings["permissions"] = "权利"; $a->strings["Public post"] = "公开的消息"; $a->strings["Preview"] = "预览"; +$a->strings["Cancel"] = "取消"; $a->strings["Post to Groups"] = "发到组"; $a->strings["Post to Contacts"] = "发给联系人"; $a->strings["Private post"] = "私人文章"; @@ -188,7 +183,12 @@ $a->strings["Not Attending"] = [ $a->strings["Undecided"] = [ 0 => "未决定的", ]; -$a->strings["Cannot locate DNS info for database server '%s'"] = "找不到DNS信息为数据库服务器「%s」"; +$a->strings["Item not found."] = "项目找不到。"; +$a->strings["Do you really want to delete this item?"] = "您真的想删除这个项目吗?"; +$a->strings["Yes"] = "是"; +$a->strings["Permission denied."] = "权限不够。"; +$a->strings["Archives"] = "档案"; +$a->strings["show more"] = "显示更多"; $a->strings["newer"] = "更新"; $a->strings["older"] = "更旧"; $a->strings["first"] = "首先"; @@ -287,38 +287,12 @@ $a->strings["No contacts in common."] = "没有共同的联系人。"; $a->strings["Common Friends"] = "普通朋友们"; $a->strings["Credits"] = "贡献"; $a->strings["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!"] = "Friendica 是一个社区项目,如果没有许多人的努力她将无法实现。这里列出了那些为代码作出贡献或者参与本地化翻译的人们。感谢大家的努力!"; -$a->strings["Contact settings applied."] = "联系人设置已应用。"; -$a->strings["Contact update failed."] = "联系人更新失败。"; -$a->strings["Contact not found."] = "没有找到联系人。"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "警告:此为进阶,如果您输入不正确的信息,您也许无法与这位联系人的正常通讯。"; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "请立即用后退按钮如果您不确定怎么用这页"; -$a->strings["No mirroring"] = "没有复制"; -$a->strings["Mirror as forwarded posting"] = "复制为传达文章"; -$a->strings["Mirror as my own posting"] = "复制为我自己的文章"; -$a->strings["Return to contact editor"] = "返回到联系人编辑器"; -$a->strings["Refetch contact data"] = "重新获取联系人数据"; -$a->strings["Submit"] = "提交"; -$a->strings["Remote Self"] = "遥远的自身"; -$a->strings["Mirror postings from this contact"] = "把这个熟人的文章复制。"; -$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "表明这个熟人当遥远的自身。Friendica要把这个熟人的新的文章复制。"; -$a->strings["Name"] = "名字"; -$a->strings["Account Nickname"] = "帐户昵称"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname越过名/昵称"; -$a->strings["Account URL"] = "帐户URL"; -$a->strings["Friend Request URL"] = "朋友请求URL"; -$a->strings["Friend Confirm URL"] = "朋友确认URL"; -$a->strings["Notification Endpoint URL"] = "通知端URL"; -$a->strings["Poll/Feed URL"] = "喂URL"; -$a->strings["New photo from this URL"] = "新照片从这个URL"; $a->strings["Photos"] = "照片"; $a->strings["Contact Photos"] = "联系人照片"; $a->strings["Upload"] = "上传"; $a->strings["Files"] = "文件"; $a->strings["Not Found"] = "未发现"; $a->strings["No profile"] = "无简介"; -$a->strings["Help:"] = "帮助:"; -$a->strings["Help"] = "帮助"; -$a->strings["Page not found."] = "页发现。"; $a->strings["Welcome to %s"] = "%s欢迎你"; $a->strings["Remote privacy information not available."] = "摇隐私信息无效"; $a->strings["Visible to:"] = "可见给:"; @@ -378,119 +352,19 @@ $a->strings["You need to export your account from the old server and upload it h $a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "这个特性是实验性的。我们不能从 OStatus 网络 (GNU Social/Statusnet) 或者 Diaspora 导入联系人"; $a->strings["Account file"] = "账户文件"; $a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "为了导出你的账户,点击「设置→导出你的个人信息」和选择「导出账户」"; -$a->strings["%1\$s welcomes %2\$s"] = "%1\$s欢迎%2\$s"; $a->strings["No keywords to match. Please add keywords to your default profile."] = "没有符合的关键字。请在您的默认简介加关键字。"; $a->strings["is interested in:"] = "感兴趣对:"; $a->strings["Profile Match"] = "简介符合"; $a->strings["No matches"] = "没有结果"; -$a->strings["Invalid request identifier."] = "无效要求身份号。"; -$a->strings["Discard"] = "丢弃"; -$a->strings["Ignore"] = "忽视"; -$a->strings["Notifications"] = "通知"; -$a->strings["Network Notifications"] = "网络通知"; -$a->strings["System Notifications"] = "系统通知"; -$a->strings["Personal Notifications"] = "私人通知"; -$a->strings["Home Notifications"] = "主页通知"; -$a->strings["Show Ignored Requests"] = "显示被忽视的请求"; -$a->strings["Hide Ignored Requests"] = "隐藏被忽视的请求"; -$a->strings["Notification type: "] = "通知种类:"; -$a->strings["suggested by %s"] = "由%s建议的"; -$a->strings["Hide this contact from others"] = "对其他人隐藏这个联系人"; -$a->strings["Post a new friend activity"] = "发表一个新朋友活动"; -$a->strings["if applicable"] = "如果可以"; -$a->strings["Approve"] = "批准"; -$a->strings["Claims to be known to you: "] = "声称被您认识:"; -$a->strings["yes"] = "是"; -$a->strings["no"] = "否"; -$a->strings["Shall your connection be bidirectional or not?"] = "是否启用双向连接?"; -$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = ""; -$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = ""; -$a->strings["Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = ""; -$a->strings["Friend"] = "朋友"; -$a->strings["Sharer"] = "分享者"; -$a->strings["Subscriber"] = "订阅者"; -$a->strings["Location:"] = "位置:"; -$a->strings["About:"] = "关于:"; -$a->strings["Tags:"] = "标签:"; -$a->strings["Gender:"] = "性别:"; -$a->strings["Profile URL"] = "简介 URL"; -$a->strings["Network:"] = "网络"; -$a->strings["No introductions."] = "没有介绍。"; -$a->strings["Show unread"] = "显示未读"; -$a->strings["Show all"] = "显示全部"; -$a->strings["No more %s notifications."] = "没有更多的 %s 通知。"; -$a->strings["OpenID protocol error. No ID returned."] = "OpenID协议错误。没ID还。 "; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = "找不到账户和OpenID注册不允许。"; -$a->strings["Login failed."] = "登录失败。"; -$a->strings["Profile not found."] = "找不到简介。"; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "这会偶尔地发生熟人双方都要求和已经批准的时候。"; -$a->strings["Response from remote site was not understood."] = "遥网站的回答明白不了。"; -$a->strings["Unexpected response from remote site: "] = "居然回答从遥网站:"; -$a->strings["Confirmation completed successfully."] = "确认成功完成。"; -$a->strings["Temporary failure. Please wait and try again."] = "临时失败。请等一会,再试。"; -$a->strings["Introduction failed or was revoked."] = "介绍失败或被吊销。"; -$a->strings["Remote site reported: "] = "远程站点报告:"; -$a->strings["Unable to set contact photo."] = "无法设置联系人照片。"; -$a->strings["No user record found for '%s' "] = "找不到「%s」的用户记录"; -$a->strings["Our site encryption key is apparently messed up."] = "看起来我们的加密钥匙失灵了。"; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "空的URL供应,或URL解不了码。"; -$a->strings["Contact record was not found for you on our site."] = "无法在本站点为您找到联系人记录。"; -$a->strings["Site public key not available in contact record for URL %s."] = "没有网站公开钥匙在熟人记录在URL%s。"; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "身份证明由您的系统是在我们的重做。你再试应该运行。"; -$a->strings["Unable to set your contact credentials on our system."] = "不能创作您的熟人证件在我们的系统。"; -$a->strings["Unable to update your contact profile details on our system"] = "不能更新您的熟人简介消息在我们的系统"; -$a->strings["[Name Withheld]"] = "[名字拒给]"; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s加入%2\$s了"; $a->strings["Manage Identities and/or Pages"] = "管理身份或页"; $a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "交替不同同一人或社会/组页合用您的账户或给您「管理」批准"; $a->strings["Select an identity to manage: "] = "选择同一个人管理:"; +$a->strings["Submit"] = "提交"; $a->strings["Invalid request."] = "无效请求。"; $a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "不好意思,可能你上传的是PHP设置允许的大"; $a->strings["Or - did you try to upload an empty file?"] = "或者,你是不是上传空的文件?"; $a->strings["File exceeds size limit of %s"] = "文件超过了 %s 的大小限制"; $a->strings["File upload failed."] = "文件上传失败。"; -$a->strings["This introduction has already been accepted."] = "这个介绍已经接受了。"; -$a->strings["Profile location is not valid or does not contain profile information."] = "简介位置失效或不包含简介信息。"; -$a->strings["Warning: profile location has no identifiable owner name."] = "警告:简介位置没有可设别的主名。"; -$a->strings["Warning: profile location has no profile photo."] = "警告:简介位置没有简介图。"; -$a->strings["%d required parameter was not found at the given location"] = [ - 0 => "%d需要的参数没找到在输入的位置。", -]; -$a->strings["Introduction complete."] = "介绍完成的。"; -$a->strings["Unrecoverable protocol error."] = "不能恢复的协议错误"; -$a->strings["Profile unavailable."] = "简介无效"; -$a->strings["%s has received too many connection requests today."] = "%s今天已经受到了太多联络要求"; -$a->strings["Spam protection measures have been invoked."] = "垃圾保护措施被用了。"; -$a->strings["Friends are advised to please try again in 24 hours."] = "朋友们被建议请24小时后再试。"; -$a->strings["Invalid locator"] = "无效找到物"; -$a->strings["You have already introduced yourself here."] = "您已经自我介绍这儿。"; -$a->strings["Apparently you are already friends with %s."] = "看上去您已经是%s的朋友。"; -$a->strings["Invalid profile URL."] = "无效的简介URL。"; -$a->strings["Disallowed profile URL."] = "不允许的简介地址."; -$a->strings["Blocked domain"] = "被封禁的域名"; -$a->strings["Failed to update contact record."] = "更新联系人记录失败。"; -$a->strings["Your introduction has been sent."] = "您的介绍发布了。"; -$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "无法为您的网络完成远程订阅。请直接在您的系统上订阅。"; -$a->strings["Please login to confirm introduction."] = "请登录以确认介绍。"; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "当前登录的身份不正确。请登录到这个用户。"; -$a->strings["Confirm"] = "确认"; -$a->strings["Hide this contact"] = "隐藏这个联系人"; -$a->strings["Welcome home %s."] = "欢迎%s。"; -$a->strings["Please confirm your introduction/connection request to %s."] = "请确认您的介绍/联络要求给%s。"; -$a->strings["Public access denied."] = "拒绝公开访问"; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "请从以下支持的通信网络之一输入你的 “身份地址”:"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "如果您还不是自由社交网络用户中的一员, 请通过此链接查找公共 Friendica 站点并在今天加入我们吧 。"; -$a->strings["Friend/Connection Request"] = "朋友/连接请求"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"] = "例如:jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"; -$a->strings["Please answer the following:"] = "请回答下述的:"; -$a->strings["Does %s know you?"] = "%s是否认识你?"; -$a->strings["Add a personal note:"] = "添加一个个人便条:"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["GNU Social (Pleroma, Mastodon)"] = "GNU Social (Pleroma, Mastodon)"; -$a->strings["Diaspora (Socialhome, Hubzilla)"] = "Diaspora (Socialhome, Hubzilla)"; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - 请别用这个表格。而是在你的 Diaspora 搜索栏输入 %s."; -$a->strings["Your Identity Address:"] = "你的身份地址:"; -$a->strings["Submit Request"] = "提交要求"; $a->strings["- select -"] = "-选择-"; $a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; $a->strings["Time Conversion"] = "时间装换"; @@ -500,6 +374,7 @@ $a->strings["Current timezone: %s"] = "现在时区: %s"; $a->strings["Converted localtime: %s"] = "装换的当地时间:%s"; $a->strings["Please select your timezone:"] = "请选择你的时区:"; $a->strings["No more system notifications."] = "没别系统通知。"; +$a->strings["System Notifications"] = "系统通知"; $a->strings["{0} wants to be your friend"] = "{0}想成为您的朋友"; $a->strings["{0} sent you a message"] = "{0}发给您一个通信"; $a->strings["{0} requested registration"] = "{0}要求注册"; @@ -508,6 +383,7 @@ $a->strings["poke, prod or do other things to somebody"] = "把人家戳或别 $a->strings["Recipient"] = "接受者"; $a->strings["Choose what you wish to do to recipient"] = "选择您想把别人作"; $a->strings["Make this post private"] = "使这个文章私人"; +$a->strings["Public access denied."] = "拒绝公开访问"; $a->strings["Only logged in users are permitted to perform a probing."] = "只有已登录用户才被允许进行探测。"; $a->strings["Permission denied"] = "权限不够"; $a->strings["Invalid profile identifier."] = "无限的简介标识符。"; @@ -560,45 +436,10 @@ $a->strings["Item not found"] = "项目没找到"; $a->strings["Edit post"] = "编辑文章"; $a->strings["CC: email addresses"] = "抄送: 电子邮件地址"; $a->strings["Example: bob@example.com, mary@example.com"] = "比如: li@example.com, wang@example.com"; +$a->strings["Contact not found."] = "没有找到联系人。"; $a->strings["Friend suggestion sent."] = "朋友建议发送了。"; $a->strings["Suggest Friends"] = "推荐的朋友们"; $a->strings["Suggest a friend for %s"] = "给 %s 推荐朋友"; -$a->strings["Group created."] = "群组已创建。"; -$a->strings["Could not create group."] = "无法创建群组。"; -$a->strings["Group not found."] = "组找不到。"; -$a->strings["Group name changed."] = "组名变化了。"; -$a->strings["Save Group"] = "保存组"; -$a->strings["Create a group of contacts/friends."] = "创建一组联系人/朋友。"; -$a->strings["Group Name: "] = "组名:"; -$a->strings["Group removed."] = "组删除了。"; -$a->strings["Unable to remove group."] = "不能删除组。"; -$a->strings["Delete Group"] = "删除群组"; -$a->strings["Group Editor"] = "组编辑器"; -$a->strings["Edit Group Name"] = "编辑群组名称"; -$a->strings["Members"] = "成员"; -$a->strings["All Contacts"] = "所有联系人"; -$a->strings["Group is empty"] = "组没有成员"; -$a->strings["Remove Contact"] = "删除联系人"; -$a->strings["Add Contact"] = "添加联系人"; -$a->strings["New Message"] = "新的消息"; -$a->strings["Unable to locate contact information."] = "无法找到联系人信息。"; -$a->strings["Messages"] = "消息"; -$a->strings["Do you really want to delete this message?"] = "您真的想删除这个通知吗?"; -$a->strings["Message deleted."] = "消息删除了。"; -$a->strings["Conversation removed."] = "交流删除了。"; -$a->strings["No messages."] = "没有消息"; -$a->strings["Message not available."] = "通信不可用的"; -$a->strings["Delete message"] = "删除消息"; -$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; -$a->strings["Delete conversation"] = "删除交谈"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "没可用的安全交通。您可能会在发送人的简介页会回答。"; -$a->strings["Send Reply"] = "发回答"; -$a->strings["Unknown sender - %s"] = "生发送人-%s"; -$a->strings["You and %s"] = "您和%s"; -$a->strings["%s and You"] = "%s和您"; -$a->strings["%d message"] = [ - 0 => "%d通知", -]; $a->strings["Personal Notes"] = "私人便条"; $a->strings["Photo Albums"] = "相册"; $a->strings["Recent Photos"] = "最近的照片"; @@ -670,12 +511,14 @@ $a->strings["User not found"] = "找不到用户"; $a->strings["This calendar format is not supported"] = "这个日历格式不被支持"; $a->strings["No exportable data found"] = "找不到可导出的数据"; $a->strings["calendar"] = "日历"; +$a->strings["Network:"] = "网络"; $a->strings["%d contact edited."] = [ 0 => "%d 个联系人被编辑了。", ]; $a->strings["Could not access contact record."] = "无法访问联系人记录。"; $a->strings["Could not locate selected profile."] = "找不到选择的简介。"; $a->strings["Contact updated."] = "联系人更新了。"; +$a->strings["Failed to update contact record."] = "更新联系人记录失败。"; $a->strings["Contact has been blocked"] = "联系人已被屏蔽"; $a->strings["Contact has been unblocked"] = "联系人已被解除屏蔽"; $a->strings["Contact has been ignored"] = "联系人已被忽视"; @@ -718,21 +561,28 @@ $a->strings["Update now"] = "现在更新"; $a->strings["Unblock"] = "解除屏蔽"; $a->strings["Block"] = "屏蔽"; $a->strings["Unignore"] = "取消忽视"; +$a->strings["Ignore"] = "忽视"; $a->strings["Currently blocked"] = "现在被封禁的"; $a->strings["Currently ignored"] = "现在不理的"; $a->strings["Currently archived"] = "当前已存档"; $a->strings["Awaiting connection acknowledge"] = "等待连接确认"; +$a->strings["Hide this contact from others"] = "对其他人隐藏这个联系人"; $a->strings["Replies/likes to your public posts may still be visible"] = "回答/喜欢关您公开文章还可见的"; $a->strings["Notification for new posts"] = "新消息提示"; $a->strings["Send a notification of every new post of this contact"] = "发送这个联系人的每篇新文章的通知"; $a->strings["Blacklisted keywords"] = "黑名单关键词"; $a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "逗号分的关键词不应该翻译成主题标签,如果“取消息和关键词”选择的。"; +$a->strings["Profile URL"] = "简介 URL"; +$a->strings["Location:"] = "位置:"; $a->strings["XMPP:"] = "XMPP:"; +$a->strings["About:"] = "关于:"; +$a->strings["Tags:"] = "标签:"; $a->strings["Actions"] = ""; $a->strings["Status"] = "状态"; $a->strings["Contact Settings"] = "联系人设置"; $a->strings["Suggestions"] = "建议"; $a->strings["Suggest potential friends"] = "建议潜在朋友们"; +$a->strings["All Contacts"] = "所有联系人"; $a->strings["Show all contacts"] = "显示所有的联系人"; $a->strings["Unblocked"] = "未屏蔽的"; $a->strings["Only show unblocked contacts"] = "只显示没被屏蔽的联系人"; @@ -795,12 +645,6 @@ $a->strings["Failed to remove event"] = "删除事件失败"; $a->strings["Event removed"] = "事件已删除"; $a->strings["You must be logged in to use this module"] = "您必须登录才能使用此模块"; $a->strings["Source URL"] = "源链接"; -$a->strings["Unable to locate original post."] = "找不到当初的新闻"; -$a->strings["Empty post discarded."] = "空帖子被丢弃了。"; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "这个新闻是由%s,Friendica社会化网络成员之一,发给你。"; -$a->strings["You may visit them online at %s"] = "你可以网上拜访他在%s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "你不想受到这些新闻的话,请回答这个新闻给发者联系。"; -$a->strings["%s posted an update."] = "%s贴上一个新闻。"; $a->strings["Post successful."] = "评论发表了。"; $a->strings["Subscribing to OStatus contacts"] = "正在订阅 OStatus 联系人"; $a->strings["No contact provided."] = "未提供联系人。"; @@ -824,8 +668,11 @@ $a->strings["Done Editing"] = "编辑完成"; $a->strings["Image uploaded successfully."] = "照片成功地上传了。"; $a->strings["Contact wasn't found or can't be unfollowed."] = "找不到联系人或者不能关注联系人。"; $a->strings["Contact unfollowed"] = "取消关注了的联系人"; +$a->strings["Submit Request"] = "提交要求"; $a->strings["You aren't a friend of this contact."] = "你不是这个联系人的朋友。"; $a->strings["Unfollowing is currently not supported by your network."] = "取消关注现在不被你的网络支持。"; +$a->strings["Your Identity Address:"] = "你的身份地址:"; +$a->strings["Gender:"] = "性别:"; $a->strings["Status:"] = "现状:"; $a->strings["Homepage:"] = "主页:"; $a->strings["Global Directory"] = "综合目录"; @@ -840,6 +687,9 @@ $a->strings["You already added this contact."] = "您已添加此联系人。"; $a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora 支持没被启用。无法添加联系人。"; $a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus 支持没被启用。无法添加联系人。"; $a->strings["The network type couldn't be detected. Contact can't be added."] = "网络类型无法被检测。无法添加联系人。"; +$a->strings["Please answer the following:"] = "请回答下述的:"; +$a->strings["Does %s know you?"] = "%s是否认识你?"; +$a->strings["Add a personal note:"] = "添加一个个人便条:"; $a->strings["No valid account found."] = "找不到效的账户。"; $a->strings["Password reset request issued. Check your email."] = "重设密码要求发布了。核对您的收件箱。"; $a->strings["\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."] = ""; @@ -860,122 +710,177 @@ $a->strings["Your password may be changed from the Settings page after $a->strings["\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"] = ""; $a->strings["\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"] = ""; $a->strings["Your password has been changed at %s"] = "您密码被变化在%s"; -$a->strings["Profile deleted."] = "简介删除了。"; -$a->strings["Profile-"] = "简介-"; -$a->strings["New profile created."] = "新的简介已创建。"; -$a->strings["Profile unavailable to clone."] = "简介不可用为复制。"; -$a->strings["Profile Name is required."] = "必要简介名"; -$a->strings["Marital Status"] = "婚姻状况 "; -$a->strings["Romantic Partner"] = "情人"; -$a->strings["Work/Employment"] = "工作"; -$a->strings["Religion"] = "宗教"; -$a->strings["Political Views"] = "政治观念"; -$a->strings["Gender"] = "性别"; -$a->strings["Sexual Preference"] = "性取向"; -$a->strings["XMPP"] = "XMPP"; -$a->strings["Homepage"] = "主页"; -$a->strings["Interests"] = "兴趣"; -$a->strings["Address"] = "地址"; -$a->strings["Location"] = "位置"; -$a->strings["Profile updated."] = "简介更新了。"; -$a->strings[" and "] = "和"; -$a->strings["public profile"] = "公开简介"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s把%2\$s变化成“%3\$s”"; -$a->strings[" - Visit %1\$s's %2\$s"] = " - 看 %1\$s的%2\$s"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s有更新的%2\$s,修改%3\$s."; -$a->strings["Hide contacts and friends:"] = "隐藏联系人和朋友:"; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "藏起来发现您的熟人/朋友单不让这个简介看着看?"; -$a->strings["Show more profile fields:"] = "显示更多简介内容:"; -$a->strings["Profile Actions"] = ""; -$a->strings["Edit Profile Details"] = "剪辑简介消息"; -$a->strings["Change Profile Photo"] = "改变简介照片"; -$a->strings["View this profile"] = "看这个简介"; -$a->strings["Edit visibility"] = "修改能见度"; -$a->strings["Create a new profile using these settings"] = "使用这些设置创建一份新的简介"; -$a->strings["Clone this profile"] = "复制这个简介"; -$a->strings["Delete this profile"] = "删除这个简介"; -$a->strings["Basic information"] = "基本信息"; -$a->strings["Profile picture"] = "头像"; -$a->strings["Preferences"] = "偏好"; -$a->strings["Status information"] = "状态信息"; -$a->strings["Additional information"] = "更多信息"; +$a->strings["Source input"] = "源码输入"; +$a->strings["BBCode::toPlaintext"] = ""; +$a->strings["BBCode::convert (raw HTML)"] = ""; +$a->strings["BBCode::convert"] = ""; +$a->strings["BBCode::convert => HTML::toBBCode"] = ""; +$a->strings["BBCode::toMarkdown"] = ""; +$a->strings["BBCode::toMarkdown => Markdown::convert"] = ""; +$a->strings["BBCode::toMarkdown => Markdown::toBBCode"] = ""; +$a->strings["BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"] = ""; +$a->strings["Source input \\x28Diaspora format\\x29"] = ""; +$a->strings["Markdown::toBBCode"] = ""; +$a->strings["Raw HTML input"] = "原始 HTML 输入"; +$a->strings["HTML Input"] = "HTML 输入"; +$a->strings["HTML::toBBCode"] = ""; +$a->strings["HTML::toPlaintext"] = ""; +$a->strings["Source text"] = "源文本"; +$a->strings["BBCode"] = ""; +$a->strings["Markdown"] = "Markdown"; +$a->strings["HTML"] = "HTML"; +$a->strings["Community option not available."] = "社区选项不可用。"; +$a->strings["Not available."] = "不可用的"; +$a->strings["Local Community"] = "本地社区"; +$a->strings["Posts from local users on this server"] = ""; +$a->strings["Global Community"] = "全球社区"; +$a->strings["Posts from users of the whole federated network"] = ""; +$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = ""; +$a->strings["This is Friendica, version"] = "这是Friendica,版本"; +$a->strings["running at web location"] = "运作再网址"; +$a->strings["Please visit Friendi.ca to learn more about the Friendica project."] = "请浏览 Friendi.ca 以了解更多关于 Friendica 项目的信息。"; +$a->strings["Bug reports and issues: please visit"] = "Bug 及 issues 报告:请访问"; +$a->strings["the bugtracker at github"] = "在 github 上的错误追踪系统"; +$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = ""; +$a->strings["Installed addons/apps:"] = "已安装的插件/应用:"; +$a->strings["No installed addons/apps"] = "没有已安装的插件或应用"; +$a->strings["Read about the Terms of Service of this node."] = "阅读此节点的服务条款。"; +$a->strings["On this server the following remote servers are blocked."] = "在这个服务器上以下远程服务器被封禁了。"; +$a->strings["Blocked domain"] = "被封禁的域名"; +$a->strings["Reason for the block"] = "封禁原因"; +$a->strings["Total invitation limit exceeded."] = "邀请限超过了。"; +$a->strings["%s : Not a valid email address."] = "%s : 不是效的电子邮件地址."; +$a->strings["Please join us on Friendica"] = "请加入我们再Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "邀请限超过了。请联系您的网站管理员。"; +$a->strings["%s : Message delivery failed."] = "%s : 送消息失败了。"; +$a->strings["%d message sent."] = [ + 0 => "%d消息传送了。", +]; +$a->strings["You have no more invitations available"] = "您没有别的邀请"; +$a->strings["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."] = "参观%s看一单公开网站您会加入。Friendica成员在别的网站都会互相连接,再跟很多别的社会网络。"; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "为接受这个邀请,请再%s或什么别的Friendica网站注册。"; +$a->strings["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."] = "Friendica 站点互相连接来创建一个增强隐私的由他们的成员拥有并控制的社交网络。它们也能跟多传统的社交网络连接。看 %s 来获取一份你可以选择加入的 Friendica 站点。"; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "不好意思。这个系统目前没设置跟别的公开网站连接或邀请成员。"; +$a->strings["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."] = "各 Friendica 站点相互连接以创造出一个由其组成成员控制拥有的有强大隐私保护能力的大型社交网络。各站点同时也能够接入许多传统社交网络。"; +$a->strings["To accept this invitation, please visit and register at %s."] = "要接受这个邀请,请在 %s 访问并注册。"; +$a->strings["Send invitations"] = "发请柬"; +$a->strings["Enter email addresses, one per line:"] = "输入电子邮件地址,一行一个:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "在 Friendica,你被诚挚地邀请来加入我和其他亲密的朋友-并帮助我们创建更好的社会网络。"; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "您要输入这个邀请密码:\$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "您一注册,请页跟我连接,用我的简介在:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "欲了解更多关于 Friendica 项目的信息以及为什么我们认为这很重要,请访问 http://friendi.ca"; +$a->strings["add"] = "添加"; +$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = [ + 0 => "警告:这个组包含 %s 来自不允许非公开消息的网络的成员。", +]; +$a->strings["Messages in this group won't be send to these receivers."] = "这个组中的消息不会被发送至这些接收者。"; +$a->strings["No such group"] = "没有这个组"; +$a->strings["Group is empty"] = "组没有成员"; +$a->strings["Group: %s"] = "组:%s"; +$a->strings["Private messages to this person are at risk of public disclosure."] = "私人通信给这个人回被公开。"; +$a->strings["Invalid contact."] = "无效的联系人。"; +$a->strings["Commented Order"] = "评论时间顺序"; +$a->strings["Sort by Comment Date"] = "按评论日期顺序排列"; +$a->strings["Posted Order"] = "发布时间顺序"; +$a->strings["Sort by Post Date"] = "按发布日期顺序排列"; $a->strings["Personal"] = "私人"; -$a->strings["Relation"] = "关系"; -$a->strings["Miscellaneous"] = "形形色色"; -$a->strings["Your Gender:"] = "你的性:"; -$a->strings[" Marital Status:"] = "婚姻状况:"; -$a->strings["Sexual Preference:"] = "性取向:"; -$a->strings["Example: fishing photography software"] = "例如:钓鱼 照片 软件"; -$a->strings["Profile Name:"] = "简介名:"; -$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "这是你的公开的简介。
可能被所有的因特网用的看到。"; -$a->strings["Your Full Name:"] = "你的全名:"; -$a->strings["Title/Description:"] = "标题/描述:"; -$a->strings["Street Address:"] = "地址:"; -$a->strings["Locality/City:"] = "现场/城市:"; -$a->strings["Region/State:"] = "区域/省"; -$a->strings["Postal/Zip Code:"] = "邮政编码:"; -$a->strings["Country:"] = "国家:"; -$a->strings["Age: "] = "年纪:"; -$a->strings["Who: (if applicable)"] = "谁:(要是使用)"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "比如:limou,李某,limou@example。com"; -$a->strings["Since [date]:"] = "追溯[日期]:"; -$a->strings["Tell us about yourself..."] = "给我们自我介绍..."; -$a->strings["XMPP (Jabber) address:"] = "XMPP (Jabber) 地址:"; -$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "这个 XMPP 地址会被传播到你的联系人从而他们可以关注你。"; -$a->strings["Homepage URL:"] = "主页URL:"; -$a->strings["Hometown:"] = "故乡:"; -$a->strings["Political Views:"] = "政治观念:"; -$a->strings["Religious Views:"] = " 宗教信仰 :"; -$a->strings["Public Keywords:"] = "公开关键字 :"; -$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(用于建议可能的朋友们,会被别人看)"; -$a->strings["Private Keywords:"] = "私人关键字"; -$a->strings["(Used for searching profiles, never shown to others)"] = "(用于搜索简介,没有给别人看)"; -$a->strings["Likes:"] = "喜欢:"; -$a->strings["Dislikes:"] = "不喜欢:"; -$a->strings["Musical interests"] = "音乐兴趣"; -$a->strings["Books, literature"] = "书,文学"; -$a->strings["Television"] = "电视"; -$a->strings["Film/dance/culture/entertainment"] = "电影/跳舞/文化/娱乐"; -$a->strings["Hobbies/Interests"] = "爱好/兴趣"; -$a->strings["Love/romance"] = "爱情/浪漫"; -$a->strings["Work/employment"] = "工作"; -$a->strings["School/education"] = "学院/教育"; -$a->strings["Contact information and Social Networks"] = "熟人信息和社会化网络"; -$a->strings["Profile Image"] = "简介图像"; -$a->strings["visible to everybody"] = "给打假可见的"; -$a->strings["Edit/Manage Profiles"] = "编辑/管理简介"; -$a->strings["Change profile photo"] = "换简介照片"; -$a->strings["Create New Profile"] = "创建新的简介"; -$a->strings["Registration successful. Please check your email for further instructions."] = "注册成功了。请咨询说明再您的收件箱。"; -$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "发送邮件失败。你的账户消息是:
用户名:%s
密码: %s

。登录后能改密码。"; -$a->strings["Registration successful."] = "注册成功。"; -$a->strings["Your registration can not be processed."] = "处理不了您的注册。"; -$a->strings["Your registration is pending approval by the site owner."] = "您的注册等网页主的批准。"; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "您会(可选的)用OpenID填这个表格通过提供您的OpenID和点击「注册」。"; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "如果您没熟悉OpenID,请留空这个栏和填另些栏。"; -$a->strings["Your OpenID (optional): "] = "您的OpenID(可选的):"; -$a->strings["Include your profile in member directory?"] = "放您的简介再员目录?"; -$a->strings["Note for the admin"] = "给管理员的便条"; -$a->strings["Leave a message for the admin, why you want to join this node"] = "给管理员留条消息,为什么你想加入这个节点"; -$a->strings["Membership on this site is by invitation only."] = "会员身份在这个网站是光通过邀请。"; -$a->strings["Your invitation code: "] = "您的邀请码:"; -$a->strings["Registration"] = "注册"; -$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "你的全名 (比如张三,真名或看起来是真名):"; -$a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = "您的电子邮件地址:(初始信息将发送到这里,所以这必须是一个存在的地址。)"; -$a->strings["New Password:"] = "新密码:"; -$a->strings["Leave empty for an auto generated password."] = "留空以使用自动生成的密码。"; -$a->strings["Confirm:"] = "确认:"; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@%s'."] = ""; -$a->strings["Choose a nickname: "] = "选择昵称:"; -$a->strings["Register"] = "注册"; -$a->strings["Import your profile to this friendica instance"] = "进口您的简介到这个friendica服务器"; -$a->strings["Terms of Service"] = "服务条款"; -$a->strings["User deleted their account"] = ""; -$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = ""; -$a->strings["The user id is %d"] = "用户 id 为 %d"; -$a->strings["Remove My Account"] = "删除我的账户"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "这要完全删除您的账户。这一做过,就不能恢复。"; -$a->strings["Please enter your password for verification:"] = "请输入密码为确认:"; +$a->strings["Posts that mention or involve you"] = "提及你或你参与的文章"; +$a->strings["New"] = "新"; +$a->strings["Activity Stream - by date"] = "活动流-按日期"; +$a->strings["Shared Links"] = "共享的链接"; +$a->strings["Interesting Links"] = "有意思的超链接"; +$a->strings["Starred"] = "被星"; +$a->strings["Favourite Posts"] = "最喜欢的文章"; +$a->strings["Contact settings applied."] = "联系人设置已应用。"; +$a->strings["Contact update failed."] = "联系人更新失败。"; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "警告:此为进阶,如果您输入不正确的信息,您也许无法与这位联系人的正常通讯。"; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "请立即用后退按钮如果您不确定怎么用这页"; +$a->strings["No mirroring"] = "没有复制"; +$a->strings["Mirror as forwarded posting"] = "复制为传达文章"; +$a->strings["Mirror as my own posting"] = "复制为我自己的文章"; +$a->strings["Return to contact editor"] = "返回到联系人编辑器"; +$a->strings["Refetch contact data"] = "重新获取联系人数据"; +$a->strings["Remote Self"] = "遥远的自身"; +$a->strings["Mirror postings from this contact"] = "把这个熟人的文章复制。"; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "表明这个熟人当遥远的自身。Friendica要把这个熟人的新的文章复制。"; +$a->strings["Name"] = "名字"; +$a->strings["Account Nickname"] = "帐户昵称"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname越过名/昵称"; +$a->strings["Account URL"] = "帐户URL"; +$a->strings["Friend Request URL"] = "朋友请求URL"; +$a->strings["Friend Confirm URL"] = "朋友确认URL"; +$a->strings["Notification Endpoint URL"] = "通知端URL"; +$a->strings["Poll/Feed URL"] = "喂URL"; +$a->strings["New photo from this URL"] = "新照片从这个URL"; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s欢迎%2\$s"; +$a->strings["Help:"] = "帮助:"; +$a->strings["Help"] = "帮助"; +$a->strings["Page not found."] = "页发现。"; +$a->strings["Friendica Communications Server - Setup"] = "Friendica沟通服务器-安装"; +$a->strings["Could not connect to database."] = "解不了数据库。"; +$a->strings["Could not create table."] = "无法创建表格。"; +$a->strings["Your Friendica site database has been installed."] = "您Friendica网站数据库被安装了。"; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "您可能要手工地进口文件「database.sql」用phpmyadmin或mysql。"; +$a->strings["Please see the file \"INSTALL.txt\"."] = "请看文件「INSTALL.txt」"; +$a->strings["Database already in use."] = "数据库已经被使用。"; +$a->strings["System check"] = "系统检测"; +$a->strings["Check again"] = "再检测"; +$a->strings["Database connection"] = "数据库接通"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "为安装Friendica我们要知道怎么连接您的数据库。"; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "你有关于这些设置有问题的话,请给互联网托管服务或者网页管理联系。"; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "您下边指定的数据库应该已经存在。如果还没有,请创建后继续。"; +$a->strings["Database Server Name"] = "数据库服务器名"; +$a->strings["Database Login Name"] = "数据库登录名"; +$a->strings["Database Login Password"] = "数据库登录密码"; +$a->strings["For security reasons the password must not be empty"] = "由于安全的原因,密码不能为空"; +$a->strings["Database Name"] = "数据库名字"; +$a->strings["Site administrator email address"] = "网站行政人员邮件地址"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "您账户邮件地址必要符合这个为用网站处理仪表板"; +$a->strings["Please select a default timezone for your website"] = "请选择您网站的默认时区"; +$a->strings["Site settings"] = "网站设置"; +$a->strings["System Language:"] = "系统语言:"; +$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "为 Friendica 安装界面及邮件发送设置默认语言。"; +$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "数据库配置文件 \".htconfig.php\" 无法被写入。请在 web 服务器根目录下使用附上的文字创建一个配置文件。"; +$a->strings["

What next

"] = "

下步是什么

"; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = ""; +$a->strings["Go to your new Friendica node registration page 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."] = ""; +$a->strings["New Message"] = "新的消息"; +$a->strings["Unable to locate contact information."] = "无法找到联系人信息。"; +$a->strings["Messages"] = "消息"; +$a->strings["Do you really want to delete this message?"] = "您真的想删除这个通知吗?"; +$a->strings["Message deleted."] = "消息删除了。"; +$a->strings["Conversation removed."] = "交流删除了。"; +$a->strings["No messages."] = "没有消息"; +$a->strings["Message not available."] = "通信不可用的"; +$a->strings["Delete message"] = "删除消息"; +$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; +$a->strings["Delete conversation"] = "删除交谈"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "没可用的安全交通。您可能会在发送人的简介页会回答。"; +$a->strings["Send Reply"] = "发回答"; +$a->strings["Unknown sender - %s"] = "生发送人-%s"; +$a->strings["You and %s"] = "您和%s"; +$a->strings["%s and You"] = "%s和您"; +$a->strings["%d message"] = [ + 0 => "%d通知", +]; +$a->strings["Group created."] = "群组已创建。"; +$a->strings["Could not create group."] = "无法创建群组。"; +$a->strings["Group not found."] = "组找不到。"; +$a->strings["Group name changed."] = "组名变化了。"; +$a->strings["Save Group"] = "保存组"; +$a->strings["Create a group of contacts/friends."] = "创建一组联系人/朋友。"; +$a->strings["Group Name: "] = "组名:"; +$a->strings["Group removed."] = "组删除了。"; +$a->strings["Unable to remove group."] = "不能删除组。"; +$a->strings["Delete Group"] = "删除群组"; +$a->strings["Group Editor"] = "组编辑器"; +$a->strings["Edit Group Name"] = "编辑群组名称"; +$a->strings["Members"] = "成员"; +$a->strings["Remove contact from group"] = ""; +$a->strings["Add contact to group"] = ""; +$a->strings["OpenID protocol error. No ID returned."] = "OpenID协议错误。没ID还。 "; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "找不到账户和OpenID注册不允许。"; +$a->strings["Login failed."] = "登录失败。"; $a->strings["Theme settings updated."] = "主题设置更新了。"; $a->strings["Information"] = "资料"; $a->strings["Overview"] = "概览"; @@ -986,6 +891,7 @@ $a->strings["Users"] = "用户"; $a->strings["Addons"] = "插件"; $a->strings["Themes"] = "主题"; $a->strings["Additional features"] = "附加的特点"; +$a->strings["Terms of Service"] = "服务条款"; $a->strings["Database"] = "数据库"; $a->strings["DB updates"] = "数据库更新"; $a->strings["Inspect Queue"] = ""; @@ -1007,10 +913,10 @@ $a->strings["Display Terms of Service"] = "显示服务条款"; $a->strings["Enable the Terms of Service page. If this is enabled a link to the terms will be added to the registration form and the general information page."] = ""; $a->strings["Display Privacy Statement"] = "显示隐私说明"; $a->strings["Show some informations regarding the needed information to operate the node according e.g. to EU-GDPR."] = ""; +$a->strings["Privacy Statement Preview"] = ""; $a->strings["The Terms of Service"] = "服务条款"; $a->strings["Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below."] = ""; $a->strings["The blocked domain"] = "被封禁的域名"; -$a->strings["Reason for the block"] = "封禁原因"; $a->strings["The reason why you blocked this domain."] = "封禁这个域名的原因。"; $a->strings["Delete domain"] = "删除域名"; $a->strings["Check to delete this entry from the blocklist"] = "选中以从列表中删除此条目"; @@ -1041,6 +947,7 @@ $a->strings["No remote contact is blocked from this node."] = ""; $a->strings["Blocked Remote Contacts"] = ""; $a->strings["Block New Remote Contact"] = ""; $a->strings["Photo"] = "照片"; +$a->strings["Address"] = "地址"; $a->strings["%s total blocked contact"] = [ 0 => "", ]; @@ -1104,6 +1011,7 @@ $a->strings["Don't check"] = "请勿检查"; $a->strings["check the stable version"] = "检查稳定版"; $a->strings["check the development version"] = "检查开发版本"; $a->strings["Republish users to directory"] = ""; +$a->strings["Registration"] = "注册"; $a->strings["File upload"] = "文件上传"; $a->strings["Policies"] = "政策"; $a->strings["Auto Discovered Contact Directory"] = ""; @@ -1205,7 +1113,7 @@ $a->strings["Maximum system load before the frontend quits service - default 50. $a->strings["Minimal Memory"] = "最少内存"; $a->strings["Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated)."] = ""; $a->strings["Maximum table size for optimization"] = ""; -$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = ""; +$a->strings["Maximum table size (in MB) for the automatic optimization. Enter -1 to disable it."] = ""; $a->strings["Minimum level of fragmentation"] = ""; $a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = ""; $a->strings["Periodical check of global contacts"] = ""; @@ -1224,6 +1132,12 @@ $a->strings["Check upstream version"] = "检查上游版本"; $a->strings["Enables checking for new Friendica versions at github. If there is a new version, you will be informed in the admin panel overview."] = "启用在 github 上检查新的 Friendica 版本。如果发现新版本,您将在管理员概要面板得到通知。"; $a->strings["Suppress Tags"] = "压制标签"; $a->strings["Suppress showing a list of hashtags at the end of the posting."] = "不在文章末尾显示主题标签列表。"; +$a->strings["Clean database"] = ""; +$a->strings["Remove old remote items, orphaned database records and old content from some other helper tables."] = ""; +$a->strings["Lifespan of remote items"] = ""; +$a->strings["When the database cleanup is enabled, this defines the days after which remote items will be deleted. Own items, and marked or filed items are always kept. 0 disables this behaviour."] = ""; +$a->strings["Lifespan of unclaimed items"] = ""; +$a->strings["When the database cleanup is enabled, this defines the days after which unclaimed remote items (mostly content from the relay) will be deleted. Default value is 90 days. Defaults to the general lifespan value of remote items if set to 0."] = ""; $a->strings["Path to item cache"] = "路线到项目缓存"; $a->strings["The item caches buffers generated bbcode and external images."] = ""; $a->strings["Cache duration in seconds"] = "缓存时间秒"; @@ -1310,6 +1224,7 @@ $a->strings["User waiting for permanent deletion"] = "用户等待长久删除"; $a->strings["Request date"] = "要求日期"; $a->strings["No registrations."] = "没有注册。"; $a->strings["Note from the user"] = ""; +$a->strings["Approve"] = "批准"; $a->strings["Deny"] = "否定"; $a->strings["Site admin"] = "网站管理员"; $a->strings["Account expired"] = "帐户过期了"; @@ -1352,165 +1267,200 @@ $a->strings["Off"] = "关"; $a->strings["On"] = "开"; $a->strings["Lock feature %s"] = "锁定特性 %s"; $a->strings["Manage Additional Features"] = "管理附加特性"; -$a->strings["Source input"] = "源码输入"; -$a->strings["BBCode::toPlaintext"] = ""; -$a->strings["BBCode::convert (raw HTML)"] = ""; -$a->strings["BBCode::convert"] = ""; -$a->strings["BBCode::convert => HTML::toBBCode"] = ""; -$a->strings["BBCode::toMarkdown"] = ""; -$a->strings["BBCode::toMarkdown => Markdown::convert"] = ""; -$a->strings["BBCode::toMarkdown => Markdown::toBBCode"] = ""; -$a->strings["BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"] = ""; -$a->strings["Source input \\x28Diaspora format\\x29"] = ""; -$a->strings["Markdown::toBBCode"] = ""; -$a->strings["Raw HTML input"] = "原始 HTML 输入"; -$a->strings["HTML Input"] = "HTML 输入"; -$a->strings["HTML::toBBCode"] = ""; -$a->strings["HTML::toPlaintext"] = ""; -$a->strings["Source text"] = "源文本"; -$a->strings["BBCode"] = ""; -$a->strings["Markdown"] = "Markdown"; -$a->strings["HTML"] = "HTML"; -$a->strings["Community option not available."] = "社区选项不可用。"; -$a->strings["Not available."] = "不可用的"; -$a->strings["Local Community"] = "本地社区"; -$a->strings["Posts from local users on this server"] = ""; -$a->strings["Global Community"] = "全球社区"; -$a->strings["Posts from users of the whole federated network"] = ""; -$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = ""; -$a->strings["This is Friendica, version"] = "这是Friendica,版本"; -$a->strings["running at web location"] = "运作再网址"; -$a->strings["Please visit Friendi.ca to learn more about the Friendica project."] = "请浏览 Friendi.ca 以了解更多关于 Friendica 项目的信息。"; -$a->strings["Bug reports and issues: please visit"] = "Bug 及 issues 报告:请访问"; -$a->strings["the bugtracker at github"] = "在 github 上的错误追踪系统"; -$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = ""; -$a->strings["Installed addons/apps:"] = "已安装的插件/应用:"; -$a->strings["No installed addons/apps"] = "没有已安装的插件或应用"; -$a->strings["Read about the Terms of Service of this node."] = "阅读此节点的服务条款。"; -$a->strings["On this server the following remote servers are blocked."] = "在这个服务器上以下远程服务器被封禁了。"; -$a->strings["Friendica Communications Server - Setup"] = "Friendica沟通服务器-安装"; -$a->strings["Could not connect to database."] = "解不了数据库。"; -$a->strings["Could not create table."] = "无法创建表格。"; -$a->strings["Your Friendica site database has been installed."] = "您Friendica网站数据库被安装了。"; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "您可能要手工地进口文件「database.sql」用phpmyadmin或mysql。"; -$a->strings["Please see the file \"INSTALL.txt\"."] = "请看文件「INSTALL.txt」"; -$a->strings["Database already in use."] = "数据库已经被使用。"; -$a->strings["System check"] = "系统检测"; -$a->strings["Check again"] = "再检测"; -$a->strings["Database connection"] = "数据库接通"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "为安装Friendica我们要知道怎么连接您的数据库。"; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "你有关于这些设置有问题的话,请给互联网托管服务或者网页管理联系。"; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "您下边指定的数据库应该已经存在。如果还没有,请创建后继续。"; -$a->strings["Database Server Name"] = "数据库服务器名"; -$a->strings["Database Login Name"] = "数据库登录名"; -$a->strings["Database Login Password"] = "数据库登录密码"; -$a->strings["For security reasons the password must not be empty"] = "由于安全的原因,密码不能为空"; -$a->strings["Database Name"] = "数据库名字"; -$a->strings["Site administrator email address"] = "网站行政人员邮件地址"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "您账户邮件地址必要符合这个为用网站处理仪表板"; -$a->strings["Please select a default timezone for your website"] = "请选择您网站的默认时区"; -$a->strings["Site settings"] = "网站设置"; -$a->strings["System Language:"] = "系统语言:"; -$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "为 Friendica 安装界面及邮件发送设置默认语言。"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "没找到命令行PHP在网服务器PATH。"; -$a->strings["If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See 'Setup the worker'"] = ""; -$a->strings["PHP executable path"] = "PHP可执行路径"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "输入全路线到php执行程序。您会留空白为继续安装。"; -$a->strings["Command line PHP"] = "命令行PHP"; -$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "PHP执行程序不是命令行PHP執行檔(有可能是cgi-fgci版本)"; -$a->strings["Found PHP version: "] = "找到 PHP 版本:"; -$a->strings["PHP cli binary"] = "命令行PHP執行檔"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "您系统的命令行PHP没有能够「register_argc_argv」。"; -$a->strings["This is required for message delivery to work."] = "这必要为通信发布成功。"; -$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "错误:这系统的「register_argc_argv」子程序不能产生加密钥匙"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "如果您用Windows,请看「http://www.php.net/manual/en/openssl.installation.php」。"; -$a->strings["Generate encryption keys"] = "产生加密钥匙"; -$a->strings["libCurl PHP module"] = "libCurl PHP模块"; -$a->strings["GD graphics PHP module"] = "GD显示PHP模块"; -$a->strings["OpenSSL PHP module"] = "OpenSSL PHP模块"; -$a->strings["PDO or MySQLi PHP module"] = "PDO 或者 MySQLi PHP 模块"; -$a->strings["mb_string PHP module"] = "mb_string PHP模块"; -$a->strings["XML PHP module"] = "XML PHP 模块"; -$a->strings["iconv PHP module"] = "iconv PHP 模块"; -$a->strings["POSIX PHP module"] = "POSIX PHP 模块"; -$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite部件"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "错误:Apache服务器的mod-rewrite模块是必要的可却不安装的。"; -$a->strings["Error: libCURL PHP module required but not installed."] = "错误:libCurl PHP模块是必要的可却不安装的。"; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "错误:GD显示PHP模块跟JPEG支持是必要的可却安装的。"; -$a->strings["Error: openssl PHP module required but not installed."] = "错误:openssl PHP模块是必要的可却不安装的。"; -$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = ""; -$a->strings["Error: The MySQL driver for PDO is not installed."] = "错误:MySQL 的 PHP 数据对象 (PDO) 扩展驱动未安装。"; -$a->strings["Error: mb_string PHP module required but not installed."] = "错误:mbstring PHP模块必要可没安装的。"; -$a->strings["Error: iconv PHP module required but not installed."] = "错误:需要 iconv PHP 模块但它并没有被安装。"; -$a->strings["Error: POSIX PHP module required but not installed."] = ""; -$a->strings["Error, XML PHP module required but not installed."] = "部件错误,需要 XML PHP 模块但它并没有被安装。"; -$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "网页安装器要创建一个叫 \".htconfig.php\" 的文件在你的 web 服务器的顶层目录下,但无法这么做。"; -$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "这常常是一个权设置,因为网服务器可能不会写文件在文件夹-即使您会。"; -$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "这个步骤头,我们给您正文要保存在叫.htconfig.php的文件在您Friendica主文件夹。"; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "或者您会这个步骤不做还是实行手动的安装。请看INSTALL.txt文件为说明。"; -$a->strings[".htconfig.php is writable"] = ".htconfig.php是可写的"; -$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica用Smarty3模板机车为建筑网页。Smarty3把模板编译成PHP为催建筑网页。"; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "为了保存这些模板,网服务器要写权利于view/smarty3/目录在Friendica主目录下。"; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "请保险您网服务器用户(比如www-data)有这个目录的写权利。"; -$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "注意:为了安全,您应该只给网服务器写权利于view/smarty3/-没有模板文件(.tpl)之下。"; -$a->strings["view/smarty3 is writable"] = "能写view/smarty3"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "在 .htaccess 中的 URL 重写不工作。请检查你的服务器配置。"; -$a->strings["Error message from Curl when fetching"] = ""; -$a->strings["Url rewrite is working"] = "URL改写发挥机能"; -$a->strings["ImageMagick PHP extension is not installed"] = "ImageMagick PHP 扩展没有安装"; -$a->strings["ImageMagick PHP extension is installed"] = "ImageMagick PHP 扩展已安装"; -$a->strings["ImageMagick supports GIF"] = "ImageMagick 支持 GIF"; -$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "数据库配置文件 \".htconfig.php\" 无法被写入。请在 web 服务器根目录下使用附上的文字创建一个配置文件。"; -$a->strings["

What next

"] = "

下步是什么

"; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = ""; -$a->strings["Go to your new Friendica node registration page 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."] = ""; -$a->strings["Total invitation limit exceeded."] = "邀请限超过了。"; -$a->strings["%s : Not a valid email address."] = "%s : 不是效的电子邮件地址."; -$a->strings["Please join us on Friendica"] = "请加入我们再Friendica"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "邀请限超过了。请联系您的网站管理员。"; -$a->strings["%s : Message delivery failed."] = "%s : 送消息失败了。"; -$a->strings["%d message sent."] = [ - 0 => "%d消息传送了。", +$a->strings["Profile not found."] = "找不到简介。"; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "这会偶尔地发生熟人双方都要求和已经批准的时候。"; +$a->strings["Response from remote site was not understood."] = "遥网站的回答明白不了。"; +$a->strings["Unexpected response from remote site: "] = "居然回答从遥网站:"; +$a->strings["Confirmation completed successfully."] = "确认成功完成。"; +$a->strings["Temporary failure. Please wait and try again."] = "临时失败。请等一会,再试。"; +$a->strings["Introduction failed or was revoked."] = "介绍失败或被吊销。"; +$a->strings["Remote site reported: "] = "远程站点报告:"; +$a->strings["Unable to set contact photo."] = "无法设置联系人照片。"; +$a->strings["No user record found for '%s' "] = "找不到「%s」的用户记录"; +$a->strings["Our site encryption key is apparently messed up."] = "看起来我们的加密钥匙失灵了。"; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "空的URL供应,或URL解不了码。"; +$a->strings["Contact record was not found for you on our site."] = "无法在本站点为您找到联系人记录。"; +$a->strings["Site public key not available in contact record for URL %s."] = "没有网站公开钥匙在熟人记录在URL%s。"; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "身份证明由您的系统是在我们的重做。你再试应该运行。"; +$a->strings["Unable to set your contact credentials on our system."] = "不能创作您的熟人证件在我们的系统。"; +$a->strings["Unable to update your contact profile details on our system"] = "不能更新您的熟人简介消息在我们的系统"; +$a->strings["[Name Withheld]"] = "[名字拒给]"; +$a->strings["This introduction has already been accepted."] = "这个介绍已经接受了。"; +$a->strings["Profile location is not valid or does not contain profile information."] = "简介位置失效或不包含简介信息。"; +$a->strings["Warning: profile location has no identifiable owner name."] = "警告:简介位置没有可设别的主名。"; +$a->strings["Warning: profile location has no profile photo."] = "警告:简介位置没有简介图。"; +$a->strings["%d required parameter was not found at the given location"] = [ + 0 => "%d需要的参数没找到在输入的位置。", ]; -$a->strings["You have no more invitations available"] = "您没有别的邀请"; -$a->strings["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."] = "参观%s看一单公开网站您会加入。Friendica成员在别的网站都会互相连接,再跟很多别的社会网络。"; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "为接受这个邀请,请再%s或什么别的Friendica网站注册。"; -$a->strings["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."] = "Friendica 站点互相连接来创建一个增强隐私的由他们的成员拥有并控制的社交网络。它们也能跟多传统的社交网络连接。看 %s 来获取一份你可以选择加入的 Friendica 站点。"; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "不好意思。这个系统目前没设置跟别的公开网站连接或邀请成员。"; -$a->strings["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."] = "各 Friendica 站点相互连接以创造出一个由其组成成员控制拥有的有强大隐私保护能力的大型社交网络。各站点同时也能够接入许多传统社交网络。"; -$a->strings["To accept this invitation, please visit and register at %s."] = "要接受这个邀请,请在 %s 访问并注册。"; -$a->strings["Send invitations"] = "发请柬"; -$a->strings["Enter email addresses, one per line:"] = "输入电子邮件地址,一行一个:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "在 Friendica,你被诚挚地邀请来加入我和其他亲密的朋友-并帮助我们创建更好的社会网络。"; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "您要输入这个邀请密码:\$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "您一注册,请页跟我连接,用我的简介在:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "欲了解更多关于 Friendica 项目的信息以及为什么我们认为这很重要,请访问 http://friendi.ca"; -$a->strings["add"] = "添加"; -$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = [ - 0 => "警告:这个组包含 %s 来自不允许非公开消息的网络的成员。", -]; -$a->strings["Messages in this group won't be send to these receivers."] = "这个组中的消息不会被发送至这些接收者。"; -$a->strings["No such group"] = "没有这个组"; -$a->strings["Group: %s"] = "组:%s"; -$a->strings["Private messages to this person are at risk of public disclosure."] = "私人通信给这个人回被公开。"; -$a->strings["Invalid contact."] = "无效的联系人。"; -$a->strings["Commented Order"] = "评论时间顺序"; -$a->strings["Sort by Comment Date"] = "按评论日期顺序排列"; -$a->strings["Posted Order"] = "发布时间顺序"; -$a->strings["Sort by Post Date"] = "按发布日期顺序排列"; -$a->strings["Posts that mention or involve you"] = "提及你或你参与的文章"; -$a->strings["New"] = "新"; -$a->strings["Activity Stream - by date"] = "活动流-按日期"; -$a->strings["Shared Links"] = "共享的链接"; -$a->strings["Interesting Links"] = "有意思的超链接"; -$a->strings["Starred"] = "被星"; -$a->strings["Favourite Posts"] = "最喜欢的文章"; +$a->strings["Introduction complete."] = "介绍完成的。"; +$a->strings["Unrecoverable protocol error."] = "不能恢复的协议错误"; +$a->strings["Profile unavailable."] = "简介无效"; +$a->strings["%s has received too many connection requests today."] = "%s今天已经受到了太多联络要求"; +$a->strings["Spam protection measures have been invoked."] = "垃圾保护措施被用了。"; +$a->strings["Friends are advised to please try again in 24 hours."] = "朋友们被建议请24小时后再试。"; +$a->strings["Invalid locator"] = "无效找到物"; +$a->strings["You have already introduced yourself here."] = "您已经自我介绍这儿。"; +$a->strings["Apparently you are already friends with %s."] = "看上去您已经是%s的朋友。"; +$a->strings["Invalid profile URL."] = "无效的简介URL。"; +$a->strings["Disallowed profile URL."] = "不允许的简介地址."; +$a->strings["Your introduction has been sent."] = "您的介绍发布了。"; +$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "无法为您的网络完成远程订阅。请直接在您的系统上订阅。"; +$a->strings["Please login to confirm introduction."] = "请登录以确认介绍。"; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "当前登录的身份不正确。请登录到这个用户。"; +$a->strings["Confirm"] = "确认"; +$a->strings["Hide this contact"] = "隐藏这个联系人"; +$a->strings["Welcome home %s."] = "欢迎%s。"; +$a->strings["Please confirm your introduction/connection request to %s."] = "请确认您的介绍/联络要求给%s。"; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "请从以下支持的通信网络之一输入你的 “身份地址”:"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "如果您还不是自由社交网络用户中的一员, 请通过此链接查找公共 Friendica 站点并在今天加入我们吧 。"; +$a->strings["Friend/Connection Request"] = "朋友/连接请求"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"] = "例如:jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["GNU Social (Pleroma, Mastodon)"] = "GNU Social (Pleroma, Mastodon)"; +$a->strings["Diaspora (Socialhome, Hubzilla)"] = "Diaspora (Socialhome, Hubzilla)"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - 请别用这个表格。而是在你的 Diaspora 搜索栏输入 %s."; +$a->strings["Unable to locate original post."] = "找不到当初的新闻"; +$a->strings["Empty post discarded."] = "空帖子被丢弃了。"; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "这个新闻是由%s,Friendica社会化网络成员之一,发给你。"; +$a->strings["You may visit them online at %s"] = "你可以网上拜访他在%s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "你不想受到这些新闻的话,请回答这个新闻给发者联系。"; +$a->strings["%s posted an update."] = "%s贴上一个新闻。"; +$a->strings["Invalid request identifier."] = "无效要求身份号。"; +$a->strings["Discard"] = "丢弃"; +$a->strings["Notifications"] = "通知"; +$a->strings["Network Notifications"] = "网络通知"; +$a->strings["Personal Notifications"] = "私人通知"; +$a->strings["Home Notifications"] = "主页通知"; +$a->strings["Show Ignored Requests"] = "显示被忽视的请求"; +$a->strings["Hide Ignored Requests"] = "隐藏被忽视的请求"; +$a->strings["Notification type: "] = "通知种类:"; +$a->strings["suggested by %s"] = "由%s建议的"; +$a->strings["Claims to be known to you: "] = "声称被您认识:"; +$a->strings["yes"] = "是"; +$a->strings["no"] = "否"; +$a->strings["Shall your connection be bidirectional or not?"] = "是否启用双向连接?"; +$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = ""; +$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = ""; +$a->strings["Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = ""; +$a->strings["Friend"] = "朋友"; +$a->strings["Sharer"] = "分享者"; +$a->strings["Subscriber"] = "订阅者"; +$a->strings["No introductions."] = "没有介绍。"; +$a->strings["Show unread"] = "显示未读"; +$a->strings["Show all"] = "显示全部"; +$a->strings["No more %s notifications."] = "没有更多的 %s 通知。"; $a->strings["Requested profile is not available."] = "要求的简介联系不上的。"; +$a->strings["%s's timeline"] = "%s 的时间线"; $a->strings["%s's posts"] = "%s的帖子"; $a->strings["%s's comments"] = "%s 的评论"; -$a->strings["%s's timeline"] = "%s 的时间线"; $a->strings["Tips for New Members"] = "新人建议"; +$a->strings["Profile deleted."] = "简介删除了。"; +$a->strings["Profile-"] = "简介-"; +$a->strings["New profile created."] = "新的简介已创建。"; +$a->strings["Profile unavailable to clone."] = "简介不可用为复制。"; +$a->strings["Profile Name is required."] = "必要简介名"; +$a->strings["Marital Status"] = "婚姻状况 "; +$a->strings["Romantic Partner"] = "情人"; +$a->strings["Work/Employment"] = "工作"; +$a->strings["Religion"] = "宗教"; +$a->strings["Political Views"] = "政治观念"; +$a->strings["Gender"] = "性别"; +$a->strings["Sexual Preference"] = "性取向"; +$a->strings["XMPP"] = "XMPP"; +$a->strings["Homepage"] = "主页"; +$a->strings["Interests"] = "兴趣"; +$a->strings["Location"] = "位置"; +$a->strings["Profile updated."] = "简介更新了。"; +$a->strings["Hide contacts and friends:"] = "隐藏联系人和朋友:"; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "藏起来发现您的熟人/朋友单不让这个简介看着看?"; +$a->strings["Show more profile fields:"] = "显示更多简介内容:"; +$a->strings["Profile Actions"] = ""; +$a->strings["Edit Profile Details"] = "剪辑简介消息"; +$a->strings["Change Profile Photo"] = "改变简介照片"; +$a->strings["View this profile"] = "看这个简介"; +$a->strings["Edit visibility"] = "修改能见度"; +$a->strings["Create a new profile using these settings"] = "使用这些设置创建一份新的简介"; +$a->strings["Clone this profile"] = "复制这个简介"; +$a->strings["Delete this profile"] = "删除这个简介"; +$a->strings["Basic information"] = "基本信息"; +$a->strings["Profile picture"] = "头像"; +$a->strings["Preferences"] = "偏好"; +$a->strings["Status information"] = "状态信息"; +$a->strings["Additional information"] = "更多信息"; +$a->strings["Relation"] = "关系"; +$a->strings["Miscellaneous"] = "形形色色"; +$a->strings["Your Gender:"] = "你的性:"; +$a->strings[" Marital Status:"] = "婚姻状况:"; +$a->strings["Sexual Preference:"] = "性取向:"; +$a->strings["Example: fishing photography software"] = "例如:钓鱼 照片 软件"; +$a->strings["Profile Name:"] = "简介名:"; +$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "这是你的公开的简介。
可能被所有的因特网用的看到。"; +$a->strings["Your Full Name:"] = "你的全名:"; +$a->strings["Title/Description:"] = "标题/描述:"; +$a->strings["Street Address:"] = "地址:"; +$a->strings["Locality/City:"] = "现场/城市:"; +$a->strings["Region/State:"] = "区域/省"; +$a->strings["Postal/Zip Code:"] = "邮政编码:"; +$a->strings["Country:"] = "国家:"; +$a->strings["Age: "] = "年纪:"; +$a->strings["Who: (if applicable)"] = "谁:(要是使用)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "比如:limou,李某,limou@example。com"; +$a->strings["Since [date]:"] = "追溯[日期]:"; +$a->strings["Tell us about yourself..."] = "给我们自我介绍..."; +$a->strings["XMPP (Jabber) address:"] = "XMPP (Jabber) 地址:"; +$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "这个 XMPP 地址会被传播到你的联系人从而他们可以关注你。"; +$a->strings["Homepage URL:"] = "主页URL:"; +$a->strings["Hometown:"] = "故乡:"; +$a->strings["Political Views:"] = "政治观念:"; +$a->strings["Religious Views:"] = " 宗教信仰 :"; +$a->strings["Public Keywords:"] = "公开关键字 :"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(用于建议可能的朋友们,会被别人看)"; +$a->strings["Private Keywords:"] = "私人关键字"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(用于搜索简介,没有给别人看)"; +$a->strings["Likes:"] = "喜欢:"; +$a->strings["Dislikes:"] = "不喜欢:"; +$a->strings["Musical interests"] = "音乐兴趣"; +$a->strings["Books, literature"] = "书,文学"; +$a->strings["Television"] = "电视"; +$a->strings["Film/dance/culture/entertainment"] = "电影/跳舞/文化/娱乐"; +$a->strings["Hobbies/Interests"] = "爱好/兴趣"; +$a->strings["Love/romance"] = "爱情/浪漫"; +$a->strings["Work/employment"] = "工作"; +$a->strings["School/education"] = "学院/教育"; +$a->strings["Contact information and Social Networks"] = "熟人信息和社会化网络"; +$a->strings["Profile Image"] = "简介图像"; +$a->strings["visible to everybody"] = "给打假可见的"; +$a->strings["Edit/Manage Profiles"] = "编辑/管理简介"; +$a->strings["Change profile photo"] = "换简介照片"; +$a->strings["Create New Profile"] = "创建新的简介"; +$a->strings["Registration successful. Please check your email for further instructions."] = "注册成功了。请咨询说明再您的收件箱。"; +$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "发送邮件失败。你的账户消息是:
用户名:%s
密码: %s

。登录后能改密码。"; +$a->strings["Registration successful."] = "注册成功。"; +$a->strings["Your registration can not be processed."] = "处理不了您的注册。"; +$a->strings["Your registration is pending approval by the site owner."] = "您的注册等网页主的批准。"; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "您会(可选的)用OpenID填这个表格通过提供您的OpenID和点击「注册」。"; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "如果您没熟悉OpenID,请留空这个栏和填另些栏。"; +$a->strings["Your OpenID (optional): "] = "您的OpenID(可选的):"; +$a->strings["Include your profile in member directory?"] = "放您的简介再员目录?"; +$a->strings["Note for the admin"] = "给管理员的便条"; +$a->strings["Leave a message for the admin, why you want to join this node"] = "给管理员留条消息,为什么你想加入这个节点"; +$a->strings["Membership on this site is by invitation only."] = "会员身份在这个网站是光通过邀请。"; +$a->strings["Your invitation code: "] = "您的邀请码:"; +$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "你的全名 (比如张三,真名或看起来是真名):"; +$a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = "您的电子邮件地址:(初始信息将发送到这里,所以这必须是一个存在的地址。)"; +$a->strings["New Password:"] = "新密码:"; +$a->strings["Leave empty for an auto generated password."] = "留空以使用自动生成的密码。"; +$a->strings["Confirm:"] = "确认:"; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@%s'."] = ""; +$a->strings["Choose a nickname: "] = "选择昵称:"; +$a->strings["Register"] = "注册"; +$a->strings["Import your profile to this friendica instance"] = "进口您的简介到这个friendica服务器"; +$a->strings["User deleted their account"] = ""; +$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = ""; +$a->strings["The user id is %d"] = "用户 id 为 %d"; +$a->strings["Remove My Account"] = "删除我的账户"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "这要完全删除您的账户。这一做过,就不能恢复。"; +$a->strings["Please enter your password for verification:"] = "请输入密码为确认:"; $a->strings["Account"] = "帐户"; $a->strings["Display"] = "显示"; $a->strings["Social Networks"] = "社会化网络"; @@ -1524,7 +1474,7 @@ $a->strings["Features updated"] = "特点更新了"; $a->strings["Relocate message has been send to your contacts"] = "调动消息已发送给您的联系人"; $a->strings["Passwords do not match. Password unchanged."] = "密码不匹配。密码没改变。"; $a->strings["Empty passwords are not allowed. Password unchanged."] = "空的密码禁止。密码没未改变的。"; -$a->strings["The new password has been exposed in a public data dump, please choose another."] = ""; +$a->strings["The new password has been exposed in a public data dump, please choose another."] = "新密码已暴露在公共数据转储中,请务必另选密码。"; $a->strings["Wrong password."] = "密码不正确。"; $a->strings["Password changed."] = "密码变化了。"; $a->strings["Password update failed. Please try again."] = "密码更新失败了。请再试。"; @@ -1676,10 +1626,6 @@ $a->strings["Default Public Post"] = "默认公开文章"; $a->strings["Default Permissions for New Posts"] = "新文章的默认权限"; $a->strings["Maximum private messages per day from unknown people:"] = "每天来自未知的人的私信:"; $a->strings["Notification Settings"] = "通知设置"; -$a->strings["By default post a status message when:"] = "默认地发现状通知如果:"; -$a->strings["accepting a friend request"] = "接受朋友邀请"; -$a->strings["joining a forum/community"] = "加入一个论坛/社区"; -$a->strings["making an interesting profile change"] = "把简介有意思地变修改"; $a->strings["Send a notification email when:"] = "发一个消息要是:"; $a->strings["You receive an introduction"] = "你收到一份介绍"; $a->strings["Your introductions are confirmed"] = "你的介绍被确认了"; @@ -1802,6 +1748,55 @@ $a->strings["%s is now friends with %s"] = "%s成为%s的朋友"; $a->strings["Friend Suggestion"] = "朋友建议"; $a->strings["Friend/Connect Request"] = "友谊/联络要求"; $a->strings["New Follower"] = "新关注者"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "没找到命令行PHP在网服务器PATH。"; +$a->strings["If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See 'Setup the worker'"] = ""; +$a->strings["PHP executable path"] = "PHP可执行路径"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "输入全路线到php执行程序。您会留空白为继续安装。"; +$a->strings["Command line PHP"] = "命令行PHP"; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "PHP执行程序不是命令行PHP執行檔(有可能是cgi-fgci版本)"; +$a->strings["Found PHP version: "] = "找到 PHP 版本:"; +$a->strings["PHP cli binary"] = "命令行PHP執行檔"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "您系统的命令行PHP没有能够「register_argc_argv」。"; +$a->strings["This is required for message delivery to work."] = "这必要为通信发布成功。"; +$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "错误:这系统的「register_argc_argv」子程序不能产生加密钥匙"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "如果您用Windows,请看「http://www.php.net/manual/en/openssl.installation.php」。"; +$a->strings["Generate encryption keys"] = "产生加密钥匙"; +$a->strings["libCurl PHP module"] = "libCurl PHP模块"; +$a->strings["GD graphics PHP module"] = "GD显示PHP模块"; +$a->strings["OpenSSL PHP module"] = "OpenSSL PHP模块"; +$a->strings["PDO or MySQLi PHP module"] = "PDO 或者 MySQLi PHP 模块"; +$a->strings["mb_string PHP module"] = "mb_string PHP模块"; +$a->strings["XML PHP module"] = "XML PHP 模块"; +$a->strings["iconv PHP module"] = "iconv PHP 模块"; +$a->strings["POSIX PHP module"] = "POSIX PHP 模块"; +$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite部件"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "错误:Apache服务器的mod-rewrite模块是必要的可却不安装的。"; +$a->strings["Error: libCURL PHP module required but not installed."] = "错误:libCurl PHP模块是必要的可却不安装的。"; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "错误:GD显示PHP模块跟JPEG支持是必要的可却安装的。"; +$a->strings["Error: openssl PHP module required but not installed."] = "错误:openssl PHP模块是必要的可却不安装的。"; +$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = ""; +$a->strings["Error: The MySQL driver for PDO is not installed."] = "错误:MySQL 的 PHP 数据对象 (PDO) 扩展驱动未安装。"; +$a->strings["Error: mb_string PHP module required but not installed."] = "错误:mbstring PHP模块必要可没安装的。"; +$a->strings["Error: iconv PHP module required but not installed."] = "错误:需要 iconv PHP 模块但它并没有被安装。"; +$a->strings["Error: POSIX PHP module required but not installed."] = ""; +$a->strings["Error, XML PHP module required but not installed."] = "部件错误,需要 XML PHP 模块但它并没有被安装。"; +$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "网页安装器要创建一个叫 \".htconfig.php\" 的文件在你的 web 服务器的顶层目录下,但无法这么做。"; +$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "这常常是一个权设置,因为网服务器可能不会写文件在文件夹-即使您会。"; +$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "这个步骤头,我们给您正文要保存在叫.htconfig.php的文件在您Friendica主文件夹。"; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "或者您会这个步骤不做还是实行手动的安装。请看INSTALL.txt文件为说明。"; +$a->strings[".htconfig.php is writable"] = ".htconfig.php是可写的"; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica用Smarty3模板机车为建筑网页。Smarty3把模板编译成PHP为催建筑网页。"; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "为了保存这些模板,网服务器要写权利于view/smarty3/目录在Friendica主目录下。"; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "请保险您网服务器用户(比如www-data)有这个目录的写权利。"; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "注意:为了安全,您应该只给网服务器写权利于view/smarty3/-没有模板文件(.tpl)之下。"; +$a->strings["view/smarty3 is writable"] = "能写view/smarty3"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "在 .htaccess 中的 URL 重写不工作。请检查你的服务器配置。"; +$a->strings["Error message from Curl when fetching"] = ""; +$a->strings["Url rewrite is working"] = "URL改写发挥机能"; +$a->strings["ImageMagick PHP extension is not installed"] = "ImageMagick PHP 扩展没有安装"; +$a->strings["ImageMagick PHP extension is installed"] = "ImageMagick PHP 扩展已安装"; +$a->strings["ImageMagick supports GIF"] = "ImageMagick 支持 GIF"; $a->strings["Birthday:"] = "生日:"; $a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD 或 MM-DD"; $a->strings["never"] = "从未"; @@ -1825,58 +1820,6 @@ $a->strings["$1 wrote:"] = "$1写:"; $a->strings["Encrypted content"] = "加密的内容"; $a->strings["Invalid source protocol"] = "无效的源协议"; $a->strings["Invalid link protocol"] = "无效的连接协议"; -$a->strings["General Features"] = "通用特性"; -$a->strings["Multiple Profiles"] = "多简介"; -$a->strings["Ability to create multiple profiles"] = "能穿凿多简介"; -$a->strings["Photo Location"] = "照片地点"; -$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = ""; -$a->strings["Export Public Calendar"] = "导出公共日历"; -$a->strings["Ability for visitors to download the public calendar"] = ""; -$a->strings["Post Composition Features"] = "文章编写特性"; -$a->strings["Post Preview"] = "文章预览"; -$a->strings["Allow previewing posts and comments before publishing them"] = "在发布前允许预览文章和评论"; -$a->strings["Auto-mention Forums"] = "自动提示论坛"; -$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = ""; -$a->strings["Network Sidebar Widgets"] = "网络工具栏小窗口"; -$a->strings["Search by Date"] = "按日期搜索"; -$a->strings["Ability to select posts by date ranges"] = "能按时期范围选择文章"; -$a->strings["List Forums"] = "列出各论坛"; -$a->strings["Enable widget to display the forums your are connected with"] = ""; -$a->strings["Group Filter"] = "组过滤器"; -$a->strings["Enable widget to display Network posts only from selected group"] = "启用用于只显示从所选组发出的网络文章的小组件"; -$a->strings["Network Filter"] = "网络滤器"; -$a->strings["Enable widget to display Network posts only from selected network"] = "使光表示网络文章从选择的网络小窗口"; -$a->strings["Save search terms for re-use"] = "保存搜索关键为再用"; -$a->strings["Network Tabs"] = "网络分页"; -$a->strings["Network Personal Tab"] = "网络私人分页"; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "启用只显示你参与了的网络文章的标签页"; -$a->strings["Network New Tab"] = "网络新分页"; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "启用只显示新的网络文章(过去12小时)的标签页"; -$a->strings["Network Shared Links Tab"] = "网络分享链接分页"; -$a->strings["Enable tab to display only Network posts with links in them"] = "使表示光网络文章包括链接分页可用"; -$a->strings["Post/Comment Tools"] = "文章/评论工具"; -$a->strings["Multiple Deletion"] = "多删除"; -$a->strings["Select and delete multiple posts/comments at once"] = "选择和删除多文章/评论一次"; -$a->strings["Edit Sent Posts"] = "编辑发送的文章"; -$a->strings["Edit and correct posts and comments after sending"] = "编辑或修改文章和评论发送后"; -$a->strings["Tagging"] = "标签"; -$a->strings["Ability to tag existing posts"] = "能把目前的文章标签"; -$a->strings["Post Categories"] = "文章种类"; -$a->strings["Add categories to your posts"] = "加入种类给您的文章"; -$a->strings["Saved Folders"] = "保存的文件夹"; -$a->strings["Ability to file posts under folders"] = "能把文章归档在文件夹 "; -$a->strings["Dislike Posts"] = "不喜欢文章"; -$a->strings["Ability to dislike posts/comments"] = "能不喜欢文章/评论"; -$a->strings["Star Posts"] = "加星的文章"; -$a->strings["Ability to mark special posts with a star indicator"] = "能把优秀文章跟星标注"; -$a->strings["Mute Post Notifications"] = ""; -$a->strings["Ability to mute notifications for a thread"] = ""; -$a->strings["Advanced Profile Settings"] = ""; -$a->strings["Show visitors public community forums at the Advanced Profile Page"] = ""; -$a->strings["Tag Cloud"] = "标签云"; -$a->strings["Provide a personal tag cloud on your profile page"] = "在您的个人简介中提供个人标签云"; -$a->strings["Display Membership Date"] = ""; -$a->strings["Display membership date in profile"] = ""; $a->strings["Embedding disabled"] = "嵌入已停用"; $a->strings["Embedded content"] = "嵌入内容"; $a->strings["Export"] = "导出"; @@ -1959,6 +1902,70 @@ $a->strings["Uncertain"] = "不确定"; $a->strings["It's complicated"] = "是复杂"; $a->strings["Don't care"] = "无所谓"; $a->strings["Ask me"] = "问我"; +$a->strings["Add New Contact"] = "添加新的联系人"; +$a->strings["Enter address or web location"] = "输入地址或网络位置"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "比如:li@example.com, http://example.com/li"; +$a->strings["%d invitation available"] = [ + 0 => "%d邀请可用的", +]; +$a->strings["Networks"] = "网络"; +$a->strings["All Networks"] = "所有网络"; +$a->strings["Saved Folders"] = "保存的文件夹"; +$a->strings["Everything"] = "一切"; +$a->strings["Categories"] = "种类"; +$a->strings["%d contact in common"] = [ + 0 => "%d 个共同的联系人", +]; +$a->strings["General Features"] = "通用特性"; +$a->strings["Multiple Profiles"] = "多简介"; +$a->strings["Ability to create multiple profiles"] = "能穿凿多简介"; +$a->strings["Photo Location"] = "照片地点"; +$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = ""; +$a->strings["Export Public Calendar"] = "导出公共日历"; +$a->strings["Ability for visitors to download the public calendar"] = ""; +$a->strings["Post Composition Features"] = "文章编写特性"; +$a->strings["Post Preview"] = "文章预览"; +$a->strings["Allow previewing posts and comments before publishing them"] = "在发布前允许预览文章和评论"; +$a->strings["Auto-mention Forums"] = "自动提示论坛"; +$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = ""; +$a->strings["Network Sidebar"] = ""; +$a->strings["Ability to select posts by date ranges"] = "能按时期范围选择文章"; +$a->strings["List Forums"] = "列出各论坛"; +$a->strings["Enable widget to display the forums your are connected with"] = ""; +$a->strings["Group Filter"] = "组过滤器"; +$a->strings["Enable widget to display Network posts only from selected group"] = "启用用于只显示从所选组发出的网络文章的小组件"; +$a->strings["Network Filter"] = "网络滤器"; +$a->strings["Enable widget to display Network posts only from selected network"] = "使光表示网络文章从选择的网络小窗口"; +$a->strings["Save search terms for re-use"] = "保存搜索关键为再用"; +$a->strings["Network Tabs"] = "网络分页"; +$a->strings["Network Personal Tab"] = "网络私人分页"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "启用只显示你参与了的网络文章的标签页"; +$a->strings["Network New Tab"] = "网络新分页"; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "启用只显示新的网络文章(过去12小时)的标签页"; +$a->strings["Network Shared Links Tab"] = "网络分享链接分页"; +$a->strings["Enable tab to display only Network posts with links in them"] = "使表示光网络文章包括链接分页可用"; +$a->strings["Post/Comment Tools"] = "文章/评论工具"; +$a->strings["Multiple Deletion"] = "多删除"; +$a->strings["Select and delete multiple posts/comments at once"] = "选择和删除多文章/评论一次"; +$a->strings["Edit Sent Posts"] = "编辑发送的文章"; +$a->strings["Edit and correct posts and comments after sending"] = "编辑或修改文章和评论发送后"; +$a->strings["Tagging"] = "标签"; +$a->strings["Ability to tag existing posts"] = "能把目前的文章标签"; +$a->strings["Post Categories"] = "文章种类"; +$a->strings["Add categories to your posts"] = "加入种类给您的文章"; +$a->strings["Ability to file posts under folders"] = "能把文章归档在文件夹 "; +$a->strings["Dislike Posts"] = "不喜欢文章"; +$a->strings["Ability to dislike posts/comments"] = "能不喜欢文章/评论"; +$a->strings["Star Posts"] = "加星的文章"; +$a->strings["Ability to mark special posts with a star indicator"] = "能把优秀文章跟星标注"; +$a->strings["Mute Post Notifications"] = ""; +$a->strings["Ability to mute notifications for a thread"] = ""; +$a->strings["Advanced Profile Settings"] = ""; +$a->strings["Show visitors public community forums at the Advanced Profile Page"] = ""; +$a->strings["Tag Cloud"] = "标签云"; +$a->strings["Provide a personal tag cloud on your profile page"] = "在您的个人简介中提供个人标签云"; +$a->strings["Display Membership Date"] = ""; +$a->strings["Display membership date in profile"] = ""; $a->strings["Nothing new here"] = "这里没有什么新的"; $a->strings["Clear notifications"] = "清理出通知"; $a->strings["Personal notes"] = "私人的便条"; @@ -1975,6 +1982,7 @@ $a->strings["Conversations on this and other servers"] = ""; $a->strings["Directory"] = "名录"; $a->strings["People directory"] = "人物名录"; $a->strings["Information about this friendica instance"] = "资料关于这个Friendica服务器"; +$a->strings["Terms of Service of this Friendica instance"] = ""; $a->strings["Network Reset"] = "网络重设"; $a->strings["Load Network page with no filters"] = "表示网络页无滤器"; $a->strings["Friend Requests"] = "友谊邀请"; @@ -1989,25 +1997,12 @@ $a->strings["Manage/Edit Profiles"] = "管理/编辑简介"; $a->strings["Site setup and configuration"] = "网站开办和配置"; $a->strings["Navigation"] = "导航"; $a->strings["Site map"] = "网站地图"; -$a->strings["Add New Contact"] = "添加新的联系人"; -$a->strings["Enter address or web location"] = "输入地址或网络位置"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "比如:li@example.com, http://example.com/li"; -$a->strings["%d invitation available"] = [ - 0 => "%d邀请可用的", -]; -$a->strings["Networks"] = "网络"; -$a->strings["All Networks"] = "所有网络"; -$a->strings["Everything"] = "一切"; -$a->strings["Categories"] = "种类"; -$a->strings["%d contact in common"] = [ - 0 => "%d 个共同的联系人", -]; $a->strings["There are no tables on MyISAM."] = "未在 MyISAM 中发现表。"; $a->strings["\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."] = ""; $a->strings["The error message is\n[pre]%s[/pre]"] = "错误消息是\n[pre]%s[/pre]"; $a->strings["\nError %d occurred during database update:\n%s\n"] = "\n在数据库更新的时候发生了错误 %d\n%s\n"; $a->strings["Errors encountered performing database changes: "] = "操作数据库更改的时候遇到了错误:"; -$a->strings[": Database update"] = ": 数据库升级"; +$a->strings["%s: Database update"] = ""; $a->strings["%s: updating %s table."] = "%s: 正在更新 %s 表。"; $a->strings["[no subject]"] = "[无题目]"; $a->strings["Starts:"] = "开始:"; @@ -2032,6 +2027,35 @@ $a->strings["Edit group"] = "编辑组"; $a->strings["Contacts not in any group"] = "不在任何组的联系人"; $a->strings["Create a new group"] = "创建新组"; $a->strings["Edit groups"] = "编辑组"; +$a->strings["Requested account is not available."] = "要求的账户不可用。"; +$a->strings["Edit profile"] = "修改简介"; +$a->strings["Atom feed"] = "Atom 源"; +$a->strings["Manage/edit profiles"] = "管理/修改简介"; +$a->strings["g A l F d"] = "g A l d F"; +$a->strings["F d"] = "F d"; +$a->strings["[today]"] = "[今天]"; +$a->strings["Birthday Reminders"] = "提醒生日"; +$a->strings["Birthdays this week:"] = "这周的生日:"; +$a->strings["[No description]"] = "[无描述]"; +$a->strings["Event Reminders"] = "事件提醒"; +$a->strings["Events this week:"] = "这周的事件:"; +$a->strings["Member since:"] = ""; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$a->strings["Age:"] = "年龄:"; +$a->strings["for %1\$d %2\$s"] = "为%1\$d %2\$s"; +$a->strings["Religion:"] = "宗教:"; +$a->strings["Hobbies/Interests:"] = "爱好/兴趣"; +$a->strings["Contact information and Social Networks:"] = "联系人消息和社交网络:"; +$a->strings["Musical interests:"] = "音乐兴趣:"; +$a->strings["Books, literature:"] = "书,文学"; +$a->strings["Television:"] = "电视:"; +$a->strings["Film/dance/culture/entertainment:"] = "电影/跳舞/文化/娱乐:"; +$a->strings["Love/Romance:"] = "爱情/浪漫"; +$a->strings["Work/employment:"] = "工作"; +$a->strings["School/education:"] = "学院/教育"; +$a->strings["Forums:"] = ""; +$a->strings["Only You Can See This"] = "只有你可以看这个"; $a->strings["Login failed"] = "登录失败"; $a->strings["Not enough information to authenticate"] = "没有足够信息以认证"; $a->strings["An invitation is required."] = "需要邀请。"; @@ -2078,35 +2102,6 @@ $a->strings["Happy Birthday %s"] = "生日快乐%s"; $a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s 正在参加 %2\$s 的 %3\$s"; $a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s 不在参加 %2\$s 的 %3\$s"; $a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s 可以参加 %2\$s 的 %3\$s"; -$a->strings["Requested account is not available."] = "要求的账户不可用。"; -$a->strings["Edit profile"] = "修改简介"; -$a->strings["Atom feed"] = "Atom 源"; -$a->strings["Manage/edit profiles"] = "管理/修改简介"; -$a->strings["g A l F d"] = "g A l d F"; -$a->strings["F d"] = "F d"; -$a->strings["[today]"] = "[今天]"; -$a->strings["Birthday Reminders"] = "提醒生日"; -$a->strings["Birthdays this week:"] = "这周的生日:"; -$a->strings["[No description]"] = "[无描述]"; -$a->strings["Event Reminders"] = "事件提醒"; -$a->strings["Events this week:"] = "这周的事件:"; -$a->strings["Member since:"] = ""; -$a->strings["j F, Y"] = "j F, Y"; -$a->strings["j F"] = "j F"; -$a->strings["Age:"] = "年龄:"; -$a->strings["for %1\$d %2\$s"] = "为%1\$d %2\$s"; -$a->strings["Religion:"] = "宗教:"; -$a->strings["Hobbies/Interests:"] = "爱好/兴趣"; -$a->strings["Contact information and Social Networks:"] = "联系人消息和社交网络:"; -$a->strings["Musical interests:"] = "音乐兴趣:"; -$a->strings["Books, literature:"] = "书,文学"; -$a->strings["Television:"] = "电视:"; -$a->strings["Film/dance/culture/entertainment:"] = "电影/跳舞/文化/娱乐:"; -$a->strings["Love/Romance:"] = "爱情/浪漫"; -$a->strings["Work/employment:"] = "工作"; -$a->strings["School/education:"] = "学院/教育"; -$a->strings["Forums:"] = ""; -$a->strings["Only You Can See This"] = "只有你可以看这个"; $a->strings["%s is now following %s."] = "%s 正在关注 %s."; $a->strings["following"] = "关注"; $a->strings["%s stopped following %s."] = "%s 停止关注了 %s."; @@ -2114,6 +2109,7 @@ $a->strings["stopped following"] = "取消关注"; $a->strings["Sharing notification from Diaspora network"] = "分享通知从Diaspora网络"; $a->strings["Attachments:"] = "附件:"; $a->strings["(no subject)"] = "(无主题)"; +$a->strings["Logged out."] = "已注销。"; $a->strings["Create a New Account"] = "创建新的账户"; $a->strings["Password: "] = "密码:"; $a->strings["Remember me"] = "记住我"; @@ -2123,12 +2119,12 @@ $a->strings["Website Terms of Service"] = "网站服务条款"; $a->strings["terms of service"] = "服务条款"; $a->strings["Website Privacy Policy"] = "网站隐私政策"; $a->strings["privacy policy"] = "隐私政策"; -$a->strings["Logged out."] = "已注销。"; -$a->strings["Privacy Statement"] = "隐私声明"; $a->strings["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."] = ""; -$a->strings["This data is required for communication and is passed on to the nodes of the communication partners. Users can enter additional private data that may be transmitted to the communication partners accounts."] = ""; -$a->strings["At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1\$s/removeme. The deletion of the account will be permanent."] = ""; +$a->strings["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."] = ""; +$a->strings["At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1\$s/removeme. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners."] = ""; +$a->strings["Privacy Statement"] = "隐私声明"; $a->strings["This entry was edited"] = "这个条目被编辑了"; +$a->strings["Remove from your stream"] = ""; $a->strings["save to folder"] = "保存在文件夹"; $a->strings["I will attend"] = "我将会参加"; $a->strings["I will not attend"] = "我将不会参加"; @@ -2150,7 +2146,7 @@ $a->strings["via"] = "经过"; $a->strings["Wall-to-Wall"] = "从墙到墙"; $a->strings["via Wall-To-Wall:"] = "通过从墙到墙"; $a->strings["%d comment"] = [ - 0 => "%d评论", + 0 => "%d 条评论", ]; $a->strings["Bold"] = "粗体"; $a->strings["Italic"] = "斜体"; @@ -2162,5 +2158,7 @@ $a->strings["Link"] = "链接"; $a->strings["Video"] = "录像"; $a->strings["Delete this item?"] = "删除这个项目?"; $a->strings["show fewer"] = "显示更小"; +$a->strings["No system theme config value set."] = ""; $a->strings["toggle mobile"] = "切换移动设备"; +$a->strings["%s: Updating author-id and owner-id in item and thread table. "] = ""; $a->strings["Update %s failed. See error logs."] = "更新 %s 失败。查看错误日志。"; diff --git a/view/templates/htconfig.tpl b/view/templates/htconfig.tpl index 1325a6177..dc2d4bcda 100644 --- a/view/templates/htconfig.tpl +++ b/view/templates/htconfig.tpl @@ -19,16 +19,21 @@ $db_data = '{{$dbdata}}'; // Use environment variables for mysql if they are set beforehand if (!empty(getenv('MYSQL_HOST')) - && !empty(getenv('MYSQL_PORT')) - && !empty(getenv('MYSQL_USERNAME')) - && !empty(getenv('MYSQL_PASSWORD')) - && !empty(getenv('MYSQL_DATABASE'))) { + && !empty(getenv('MYSQL_PORT')) + && (!empty(getenv('MYSQL_USERNAME')) || !empty(getenv('MYSQL_USER'))) + && !empty(getenv('MYSQL_PASSWORD')) + && !empty(getenv('MYSQL_DATABASE'))) { $db_host = getenv('MYSQL_HOST') . ':' . getenv('MYSQL_PORT'); - $db_user = getenv('MYSQL_USERNAME'); + if (!empty(getenv('MYSQL_USERNAME'))) { + $db_user = getenv('MYSQL_USERNAME'); + } elseif (!empty(getenv('MYSQL_USER'))) { + $db_user = getenv('MYSQL_USER'); + } $db_pass = getenv('MYSQL_PASSWORD'); $db_data = getenv('MYSQL_DATABASE'); } + // Set the database connection charset to full Unicode (utf8mb4). // Changing this value will likely corrupt the special characters. // You have been warned. diff --git a/view/theme/frost-mobile/TODO b/view/theme/frost-mobile/TODO deleted file mode 100644 index 735f6bdc3..000000000 --- a/view/theme/frost-mobile/TODO +++ /dev/null @@ -1,31 +0,0 @@ -Photo album display? - -- The "lock" icon for private items - - change it to black? - - when clicked, the popup window displays poorly - -- Edit photo page: bottom buttons are off-center in Dolphin Mini - -- BB code buttons for status updates - -- Get "add contact" back on contacts page - -- Allow creating a new private message - -- Admin: access to more pages than summary? - -- Find a way to show embedded videos at the normal size for tablets that can handle it - -- Need to find a way to deal with freakin annoying elements that don't respect screen width limits. - Specifically, need to find a way to keep them from forcing a horizontal scroll bar to show up and - making the rest of the body text overflow the item's borders that is screen-width sensitive (it's - annoying to have a 300px truncated code block on a 1024px wide screen). At least the following cause problems: - - code blocks - - blockquote blocks - - #reallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallylongtags - -- Needs to be faster! - - Reduce DOM elements (~2400 for 10 items, ~8400 for 40 items) - - -- Sometimes, when "Permission denied", wrong login page is shown diff --git a/view/theme/frost-mobile/border.jpg b/view/theme/frost-mobile/border.jpg deleted file mode 100644 index 034a1cb63..000000000 Binary files a/view/theme/frost-mobile/border.jpg and /dev/null differ diff --git a/view/theme/frost-mobile/editicons.png b/view/theme/frost-mobile/editicons.png deleted file mode 100644 index 171a40876..000000000 Binary files a/view/theme/frost-mobile/editicons.png and /dev/null differ diff --git a/view/theme/frost-mobile/file.gif b/view/theme/frost-mobile/file.gif deleted file mode 100644 index 7885b998d..000000000 Binary files a/view/theme/frost-mobile/file.gif and /dev/null differ diff --git a/view/theme/frost-mobile/friendica-16.png b/view/theme/frost-mobile/friendica-16.png deleted file mode 100644 index 1a742ecdc..000000000 Binary files a/view/theme/frost-mobile/friendica-16.png and /dev/null differ diff --git a/view/theme/frost-mobile/head.jpg b/view/theme/frost-mobile/head.jpg deleted file mode 100644 index 6210b76be..000000000 Binary files a/view/theme/frost-mobile/head.jpg and /dev/null differ diff --git a/view/theme/frost-mobile/images/approve-blue.png b/view/theme/frost-mobile/images/approve-blue.png deleted file mode 100644 index a13668a50..000000000 Binary files a/view/theme/frost-mobile/images/approve-blue.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/approve.png b/view/theme/frost-mobile/images/approve.png deleted file mode 100644 index 473c646e5..000000000 Binary files a/view/theme/frost-mobile/images/approve.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/arrow-left.png b/view/theme/frost-mobile/images/arrow-left.png deleted file mode 100644 index a312cfa71..000000000 Binary files a/view/theme/frost-mobile/images/arrow-left.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/arrow-right.png b/view/theme/frost-mobile/images/arrow-right.png deleted file mode 100644 index 2be9bd746..000000000 Binary files a/view/theme/frost-mobile/images/arrow-right.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/boldB-serif.png b/view/theme/frost-mobile/images/boldB-serif.png deleted file mode 100644 index 78ce59a54..000000000 Binary files a/view/theme/frost-mobile/images/boldB-serif.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/camera.png b/view/theme/frost-mobile/images/camera.png deleted file mode 100644 index aa5935b7c..000000000 Binary files a/view/theme/frost-mobile/images/camera.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/code.png b/view/theme/frost-mobile/images/code.png deleted file mode 100644 index d490cea9d..000000000 Binary files a/view/theme/frost-mobile/images/code.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/contacts.png b/view/theme/frost-mobile/images/contacts.png deleted file mode 100644 index e870470d0..000000000 Binary files a/view/theme/frost-mobile/images/contacts.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/disapprove-blue.png b/view/theme/frost-mobile/images/disapprove-blue.png deleted file mode 100644 index ebbc7e4e6..000000000 Binary files a/view/theme/frost-mobile/images/disapprove-blue.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/disapprove.png b/view/theme/frost-mobile/images/disapprove.png deleted file mode 100644 index fa58d020e..000000000 Binary files a/view/theme/frost-mobile/images/disapprove.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/drop-blue.png b/view/theme/frost-mobile/images/drop-blue.png deleted file mode 100644 index a8b6c53c9..000000000 Binary files a/view/theme/frost-mobile/images/drop-blue.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/drop-darkred.png b/view/theme/frost-mobile/images/drop-darkred.png deleted file mode 100644 index 9657d1138..000000000 Binary files a/view/theme/frost-mobile/images/drop-darkred.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/drop-red.png b/view/theme/frost-mobile/images/drop-red.png deleted file mode 100644 index 91b0260ce..000000000 Binary files a/view/theme/frost-mobile/images/drop-red.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/drop.png b/view/theme/frost-mobile/images/drop.png deleted file mode 100644 index af38adf5e..000000000 Binary files a/view/theme/frost-mobile/images/drop.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/event-attend.png b/view/theme/frost-mobile/images/event-attend.png deleted file mode 100644 index f555fbb4a..000000000 Binary files a/view/theme/frost-mobile/images/event-attend.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/event-dontattend.png b/view/theme/frost-mobile/images/event-dontattend.png deleted file mode 100644 index 2dd0c731e..000000000 Binary files a/view/theme/frost-mobile/images/event-dontattend.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/event-maybeattend.png b/view/theme/frost-mobile/images/event-maybeattend.png deleted file mode 100644 index 16daa3208..000000000 Binary files a/view/theme/frost-mobile/images/event-maybeattend.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/folder-blue.png b/view/theme/frost-mobile/images/folder-blue.png deleted file mode 100644 index 6af9bbec0..000000000 Binary files a/view/theme/frost-mobile/images/folder-blue.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/folder.png b/view/theme/frost-mobile/images/folder.png deleted file mode 100644 index 86dd21029..000000000 Binary files a/view/theme/frost-mobile/images/folder.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/globe.png b/view/theme/frost-mobile/images/globe.png deleted file mode 100644 index f84632bff..000000000 Binary files a/view/theme/frost-mobile/images/globe.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/italicI-serif.png b/view/theme/frost-mobile/images/italicI-serif.png deleted file mode 100644 index 86fa40f9c..000000000 Binary files a/view/theme/frost-mobile/images/italicI-serif.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/link.png b/view/theme/frost-mobile/images/link.png deleted file mode 100644 index 7c5c8ed6b..000000000 Binary files a/view/theme/frost-mobile/images/link.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/lock.png b/view/theme/frost-mobile/images/lock.png deleted file mode 100644 index b8b8cd20e..000000000 Binary files a/view/theme/frost-mobile/images/lock.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/menu.png b/view/theme/frost-mobile/images/menu.png deleted file mode 100644 index 44d5285fe..000000000 Binary files a/view/theme/frost-mobile/images/menu.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/message.png b/view/theme/frost-mobile/images/message.png deleted file mode 100644 index 8f735aed0..000000000 Binary files a/view/theme/frost-mobile/images/message.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/network.png b/view/theme/frost-mobile/images/network.png deleted file mode 100644 index 943e3252f..000000000 Binary files a/view/theme/frost-mobile/images/network.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/noglobe.png b/view/theme/frost-mobile/images/noglobe.png deleted file mode 100644 index b5aceb6d5..000000000 Binary files a/view/theme/frost-mobile/images/noglobe.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/notifications.png b/view/theme/frost-mobile/images/notifications.png deleted file mode 100644 index 27bacc672..000000000 Binary files a/view/theme/frost-mobile/images/notifications.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/LICENSE b/view/theme/frost-mobile/images/oxygen/LICENSE deleted file mode 100644 index 65c5ca88a..000000000 --- a/view/theme/frost-mobile/images/oxygen/LICENSE +++ /dev/null @@ -1,165 +0,0 @@ - GNU LESSER GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - - This version of the GNU Lesser General Public License incorporates -the terms and conditions of version 3 of the GNU General Public -License, supplemented by the additional permissions listed below. - - 0. Additional Definitions. - - As used herein, "this License" refers to version 3 of the GNU Lesser -General Public License, and the "GNU GPL" refers to version 3 of the GNU -General Public License. - - "The Library" refers to a covered work governed by this License, -other than an Application or a Combined Work as defined below. - - An "Application" is any work that makes use of an interface provided -by the Library, but which is not otherwise based on the Library. -Defining a subclass of a class defined by the Library is deemed a mode -of using an interface provided by the Library. - - A "Combined Work" is a work produced by combining or linking an -Application with the Library. The particular version of the Library -with which the Combined Work was made is also called the "Linked -Version". - - The "Minimal Corresponding Source" for a Combined Work means the -Corresponding Source for the Combined Work, excluding any source code -for portions of the Combined Work that, considered in isolation, are -based on the Application, and not on the Linked Version. - - The "Corresponding Application Code" for a Combined Work means the -object code and/or source code for the Application, including any data -and utility programs needed for reproducing the Combined Work from the -Application, but excluding the System Libraries of the Combined Work. - - 1. Exception to Section 3 of the GNU GPL. - - You may convey a covered work under sections 3 and 4 of this License -without being bound by section 3 of the GNU GPL. - - 2. Conveying Modified Versions. - - If you modify a copy of the Library, and, in your modifications, a -facility refers to a function or data to be supplied by an Application -that uses the facility (other than as an argument passed when the -facility is invoked), then you may convey a copy of the modified -version: - - a) under this License, provided that you make a good faith effort to - ensure that, in the event an Application does not supply the - function or data, the facility still operates, and performs - whatever part of its purpose remains meaningful, or - - b) under the GNU GPL, with none of the additional permissions of - this License applicable to that copy. - - 3. Object Code Incorporating Material from Library Header Files. - - The object code form of an Application may incorporate material from -a header file that is part of the Library. You may convey such object -code under terms of your choice, provided that, if the incorporated -material is not limited to numerical parameters, data structure -layouts and accessors, or small macros, inline functions and templates -(ten or fewer lines in length), you do both of the following: - - a) Give prominent notice with each copy of the object code that the - Library is used in it and that the Library and its use are - covered by this License. - - b) Accompany the object code with a copy of the GNU GPL and this license - document. - - 4. Combined Works. - - You may convey a Combined Work under terms of your choice that, -taken together, effectively do not restrict modification of the -portions of the Library contained in the Combined Work and reverse -engineering for debugging such modifications, if you also do each of -the following: - - a) Give prominent notice with each copy of the Combined Work that - the Library is used in it and that the Library and its use are - covered by this License. - - b) Accompany the Combined Work with a copy of the GNU GPL and this license - document. - - c) For a Combined Work that displays copyright notices during - execution, include the copyright notice for the Library among - these notices, as well as a reference directing the user to the - copies of the GNU GPL and this license document. - - d) Do one of the following: - - 0) Convey the Minimal Corresponding Source under the terms of this - License, and the Corresponding Application Code in a form - suitable for, and under terms that permit, the user to - recombine or relink the Application with a modified version of - the Linked Version to produce a modified Combined Work, in the - manner specified by section 6 of the GNU GPL for conveying - Corresponding Source. - - 1) Use a suitable shared library mechanism for linking with the - Library. A suitable mechanism is one that (a) uses at run time - a copy of the Library already present on the user's computer - system, and (b) will operate properly with a modified version - of the Library that is interface-compatible with the Linked - Version. - - e) Provide Installation Information, but only if you would otherwise - be required to provide such information under section 6 of the - GNU GPL, and only to the extent that such information is - necessary to install and execute a modified version of the - Combined Work produced by recombining or relinking the - Application with a modified version of the Linked Version. (If - you use option 4d0, the Installation Information must accompany - the Minimal Corresponding Source and Corresponding Application - Code. If you use option 4d1, you must provide the Installation - Information in the manner specified by section 6 of the GNU GPL - for conveying Corresponding Source.) - - 5. Combined Libraries. - - You may place library facilities that are a work based on the -Library side by side in a single library together with other library -facilities that are not Applications and are not covered by this -License, and convey such a combined library under terms of your -choice, if you do both of the following: - - a) Accompany the combined library with a copy of the same work based - on the Library, uncombined with any other library facilities, - conveyed under the terms of this License. - - b) Give prominent notice with the combined library that part of it - is a work based on the Library, and explaining where to find the - accompanying uncombined form of the same work. - - 6. Revised Versions of the GNU Lesser General Public License. - - The Free Software Foundation may publish revised and/or new versions -of the GNU Lesser General Public License from time to time. Such new -versions will be similar in spirit to the present version, but may -differ in detail to address new problems or concerns. - - Each version is given a distinguishing version number. If the -Library as you received it specifies that a certain numbered version -of the GNU Lesser General Public License "or any later version" -applies to it, you have the option of following the terms and -conditions either of that published version or of any later version -published by the Free Software Foundation. If the Library as you -received it does not specify a version number of the GNU Lesser -General Public License, you may choose any version of the GNU Lesser -General Public License ever published by the Free Software Foundation. - - If the Library as you received it specifies that a proxy can decide -whether future versions of the GNU Lesser General Public License shall -apply, that proxy's public statement of acceptance of any version is -permanent authorization for you to choose that version for the -Library. diff --git a/view/theme/frost-mobile/images/oxygen/application-msword.png b/view/theme/frost-mobile/images/oxygen/application-msword.png deleted file mode 100644 index aa5aaf31a..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/application-msword.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/application-pdf.png b/view/theme/frost-mobile/images/oxygen/application-pdf.png deleted file mode 100644 index bc954ff64..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/application-pdf.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/application-vnd.ms-excel.png b/view/theme/frost-mobile/images/oxygen/application-vnd.ms-excel.png deleted file mode 100644 index aa0d99597..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/application-vnd.ms-excel.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/application-vnd.ms-powerpoint.png b/view/theme/frost-mobile/images/oxygen/application-vnd.ms-powerpoint.png deleted file mode 100644 index 022b5152e..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/application-vnd.ms-powerpoint.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/application-vnd.oasis.opendocument.presentation.png b/view/theme/frost-mobile/images/oxygen/application-vnd.oasis.opendocument.presentation.png deleted file mode 100644 index cb573b5c7..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/application-vnd.oasis.opendocument.presentation.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/application-vnd.oasis.opendocument.spreadsheet.png b/view/theme/frost-mobile/images/oxygen/application-vnd.oasis.opendocument.spreadsheet.png deleted file mode 100644 index 6b8030edd..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/application-vnd.oasis.opendocument.spreadsheet.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/application-vnd.oasis.opendocument.text.png b/view/theme/frost-mobile/images/oxygen/application-vnd.oasis.opendocument.text.png deleted file mode 100644 index 1adb56e25..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/application-vnd.oasis.opendocument.text.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/application-x-bzip-compressed-tar.png b/view/theme/frost-mobile/images/oxygen/application-x-bzip-compressed-tar.png deleted file mode 100644 index d7dd1d1fb..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/application-x-bzip-compressed-tar.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/application-x-compressed-tar.png b/view/theme/frost-mobile/images/oxygen/application-x-compressed-tar.png deleted file mode 100644 index adda68505..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/application-x-compressed-tar.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/application-x-deb.png b/view/theme/frost-mobile/images/oxygen/application-x-deb.png deleted file mode 100644 index 1832d3b73..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/application-x-deb.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/application-x-font-otf.png b/view/theme/frost-mobile/images/oxygen/application-x-font-otf.png deleted file mode 100644 index 68fb5dd01..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/application-x-font-otf.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/application-x-font-ttf.png b/view/theme/frost-mobile/images/oxygen/application-x-font-ttf.png deleted file mode 100644 index 93b92fb26..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/application-x-font-ttf.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/application-x-java-archive.png b/view/theme/frost-mobile/images/oxygen/application-x-java-archive.png deleted file mode 100644 index 4883b2d7a..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/application-x-java-archive.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/application-x-lzma-compressed-tar.png b/view/theme/frost-mobile/images/oxygen/application-x-lzma-compressed-tar.png deleted file mode 100644 index 6092aedd3..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/application-x-lzma-compressed-tar.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/application-x-php.png b/view/theme/frost-mobile/images/oxygen/application-x-php.png deleted file mode 100644 index f133c87a2..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/application-x-php.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/application-x-rar.png b/view/theme/frost-mobile/images/oxygen/application-x-rar.png deleted file mode 100644 index a9b1b12a6..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/application-x-rar.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/application-x-rpm.png b/view/theme/frost-mobile/images/oxygen/application-x-rpm.png deleted file mode 100644 index 43149f17e..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/application-x-rpm.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/application-x-ruby.png b/view/theme/frost-mobile/images/oxygen/application-x-ruby.png deleted file mode 100644 index e640ead73..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/application-x-ruby.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/application-x-shellscript.png b/view/theme/frost-mobile/images/oxygen/application-x-shellscript.png deleted file mode 100644 index 11e27543f..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/application-x-shellscript.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/application-x-shockwave-flash.png b/view/theme/frost-mobile/images/oxygen/application-x-shockwave-flash.png deleted file mode 100644 index ea9ca59ee..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/application-x-shockwave-flash.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/application-x-tar.png b/view/theme/frost-mobile/images/oxygen/application-x-tar.png deleted file mode 100644 index 4b7d023f7..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/application-x-tar.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/application-xml.png b/view/theme/frost-mobile/images/oxygen/application-xml.png deleted file mode 100644 index 58d32e438..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/application-xml.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/application-zip.png b/view/theme/frost-mobile/images/oxygen/application-zip.png deleted file mode 100644 index 9d349a89a..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/application-zip.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/audio-aac.png b/view/theme/frost-mobile/images/oxygen/audio-aac.png deleted file mode 100644 index a2d5177d9..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/audio-aac.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/audio-mp4.png b/view/theme/frost-mobile/images/oxygen/audio-mp4.png deleted file mode 100644 index ae5fd740f..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/audio-mp4.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/audio-mpeg.png b/view/theme/frost-mobile/images/oxygen/audio-mpeg.png deleted file mode 100644 index 5fe3a2359..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/audio-mpeg.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/audio-x-flac.png b/view/theme/frost-mobile/images/oxygen/audio-x-flac.png deleted file mode 100644 index f2f11e863..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/audio-x-flac.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/audio-x-generic.png b/view/theme/frost-mobile/images/oxygen/audio-x-generic.png deleted file mode 100644 index fe7b05277..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/audio-x-generic.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/audio-x-mp2.png b/view/theme/frost-mobile/images/oxygen/audio-x-mp2.png deleted file mode 100644 index 5ac790992..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/audio-x-mp2.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/audio-x-ms-wma.png b/view/theme/frost-mobile/images/oxygen/audio-x-ms-wma.png deleted file mode 100644 index 86cb3e51c..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/audio-x-ms-wma.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/audio-x-vorbis+ogg.png b/view/theme/frost-mobile/images/oxygen/audio-x-vorbis+ogg.png deleted file mode 100644 index 5ac790992..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/audio-x-vorbis+ogg.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/audio-x-wav.png b/view/theme/frost-mobile/images/oxygen/audio-x-wav.png deleted file mode 100644 index 101f8fe5b..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/audio-x-wav.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/image-x-generic.png b/view/theme/frost-mobile/images/oxygen/image-x-generic.png deleted file mode 100644 index d1d4e256c..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/image-x-generic.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/text-css.png b/view/theme/frost-mobile/images/oxygen/text-css.png deleted file mode 100644 index 119aec52c..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/text-css.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/text-html.png b/view/theme/frost-mobile/images/oxygen/text-html.png deleted file mode 100644 index 34768bfbe..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/text-html.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/text-x-generic-2.png b/view/theme/frost-mobile/images/oxygen/text-x-generic-2.png deleted file mode 100644 index 70be9bfc3..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/text-x-generic-2.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/text-x-tex.png b/view/theme/frost-mobile/images/oxygen/text-x-tex.png deleted file mode 100644 index 23d8bf7ca..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/text-x-tex.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/unknown.png b/view/theme/frost-mobile/images/oxygen/unknown.png deleted file mode 100644 index eb1758ae1..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/unknown.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/oxygen/video-x-generic.png b/view/theme/frost-mobile/images/oxygen/video-x-generic.png deleted file mode 100644 index 81fe23e7e..000000000 Binary files a/view/theme/frost-mobile/images/oxygen/video-x-generic.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/paperclip.png b/view/theme/frost-mobile/images/paperclip.png deleted file mode 100644 index 3a2ee2696..000000000 Binary files a/view/theme/frost-mobile/images/paperclip.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/pencil-blue.png b/view/theme/frost-mobile/images/pencil-blue.png deleted file mode 100644 index f51ddd4fe..000000000 Binary files a/view/theme/frost-mobile/images/pencil-blue.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/pencil.png b/view/theme/frost-mobile/images/pencil.png deleted file mode 100644 index 8078d3083..000000000 Binary files a/view/theme/frost-mobile/images/pencil.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/quote.png b/view/theme/frost-mobile/images/quote.png deleted file mode 100644 index 93127c5e7..000000000 Binary files a/view/theme/frost-mobile/images/quote.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/recycle-blue.png b/view/theme/frost-mobile/images/recycle-blue.png deleted file mode 100644 index 4129f05cd..000000000 Binary files a/view/theme/frost-mobile/images/recycle-blue.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/recycle.png b/view/theme/frost-mobile/images/recycle.png deleted file mode 100644 index e5d8e1181..000000000 Binary files a/view/theme/frost-mobile/images/recycle.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/remote-link-blue.png b/view/theme/frost-mobile/images/remote-link-blue.png deleted file mode 100644 index de8d21db6..000000000 Binary files a/view/theme/frost-mobile/images/remote-link-blue.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/remote-link.png b/view/theme/frost-mobile/images/remote-link.png deleted file mode 100644 index 1f657411a..000000000 Binary files a/view/theme/frost-mobile/images/remote-link.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/star-blue.png b/view/theme/frost-mobile/images/star-blue.png deleted file mode 100644 index f8783fcda..000000000 Binary files a/view/theme/frost-mobile/images/star-blue.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/star-yellow.png b/view/theme/frost-mobile/images/star-yellow.png deleted file mode 100644 index cc2b884b2..000000000 Binary files a/view/theme/frost-mobile/images/star-yellow.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/star.png b/view/theme/frost-mobile/images/star.png deleted file mode 100644 index f8a61a497..000000000 Binary files a/view/theme/frost-mobile/images/star.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/tag-blue.png b/view/theme/frost-mobile/images/tag-blue.png deleted file mode 100644 index 6e5cec80e..000000000 Binary files a/view/theme/frost-mobile/images/tag-blue.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/tag.png b/view/theme/frost-mobile/images/tag.png deleted file mode 100644 index 9c644b823..000000000 Binary files a/view/theme/frost-mobile/images/tag.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/underlineU-serif.png b/view/theme/frost-mobile/images/underlineU-serif.png deleted file mode 100644 index 745ca2cd6..000000000 Binary files a/view/theme/frost-mobile/images/underlineU-serif.png and /dev/null differ diff --git a/view/theme/frost-mobile/images/unlock.png b/view/theme/frost-mobile/images/unlock.png deleted file mode 100644 index 81d9740e8..000000000 Binary files a/view/theme/frost-mobile/images/unlock.png and /dev/null differ diff --git a/view/theme/frost-mobile/js/acl.js b/view/theme/frost-mobile/js/acl.js deleted file mode 100644 index 4ce8b869c..000000000 --- a/view/theme/frost-mobile/js/acl.js +++ /dev/null @@ -1,262 +0,0 @@ -function ACL(backend_url, preset){ - that = this; - - that.url = backend_url; - - that.kp_timer = null; - - if (preset==undefined) preset = []; - that.allow_cid = (preset[0] || []); - that.allow_gid = (preset[1] || []); - that.deny_cid = (preset[2] || []); - that.deny_gid = (preset[3] || []); - that.group_uids = []; - that.nw = 2; //items per row. should be calulated from #acl-list.width - - that.list_content = $("#acl-list-content"); - that.item_tpl = unescape($(".acl-list-item[rel=acl-template]").html()); - that.showall = $("#acl-showall"); - - if (preset.length==0) that.showall.addClass("selected"); - - /*events*/ - that.showall.click(that.on_showall); - $(document).on("click", ".acl-button-show", that.on_button_show); - $(document).on("click", ".acl-button-hide", that.on_button_hide); - $("#acl-search").keypress(that.on_search); - $("#acl-wrapper").parents("form").submit(that.on_submit); - - /* startup! */ - that.get(0,100); -} - -ACL.prototype.on_submit = function(){ - aclfileds = $("#acl-fields").html(""); - $(that.allow_gid).each(function(i,v){ - aclfileds.append(""); - }); - $(that.allow_cid).each(function(i,v){ - aclfileds.append(""); - }); - $(that.deny_gid).each(function(i,v){ - aclfileds.append(""); - }); - $(that.deny_cid).each(function(i,v){ - aclfileds.append(""); - }); -} - -ACL.prototype.search = function(){ - var srcstr = $("#acl-search").val(); - that.list_content.html(""); - that.get(0,100, srcstr); -} - -ACL.prototype.on_search = function(event){ - if (that.kp_timer) clearTimeout(that.kp_timer); - that.kp_timer = setTimeout( that.search, 1000); -} - -ACL.prototype.on_showall = function(event){ - event.preventDefault() - event.stopPropagation(); - - if (that.showall.hasClass("selected")){ - return false; - } - that.showall.addClass("selected"); - - that.allow_cid = []; - that.allow_gid = []; - that.deny_cid = []; - that.deny_gid = []; - - that.update_view(); - - return false; -} - -ACL.prototype.on_button_show = function(event){ - event.preventDefault() - event.stopImmediatePropagation() - event.stopPropagation(); - - /*that.showall.removeClass("selected"); - $(this).siblings(".acl-button-hide").removeClass("selected"); - $(this).toggleClass("selected");*/ - - that.set_allow($(this).parent().attr('id')); - - return false; -} -ACL.prototype.on_button_hide = function(event){ - event.preventDefault() - event.stopImmediatePropagation() - event.stopPropagation(); - - /*that.showall.removeClass("selected"); - $(this).siblings(".acl-button-show").removeClass("selected"); - $(this).toggleClass("selected");*/ - - that.set_deny($(this).parent().attr('id')); - - return false; -} - -ACL.prototype.set_allow = function(itemid){ - type = itemid[0]; - id = parseInt(itemid.substr(1)); - switch(type){ - case "g": - if (that.allow_gid.indexOf(id)<0){ - that.allow_gid.push(id) - }else { - that.allow_gid.remove(id); - } - if (that.deny_gid.indexOf(id)>=0) that.deny_gid.remove(id); - break; - case "c": - if (that.allow_cid.indexOf(id)<0){ - that.allow_cid.push(id) - } else { - that.allow_cid.remove(id); - } - if (that.deny_cid.indexOf(id)>=0) that.deny_cid.remove(id); - break; - } - that.update_view(); -} - -ACL.prototype.set_deny = function(itemid){ - type = itemid[0]; - id = parseInt(itemid.substr(1)); - switch(type){ - case "g": - if (that.deny_gid.indexOf(id)<0){ - that.deny_gid.push(id) - } else { - that.deny_gid.remove(id); - } - if (that.allow_gid.indexOf(id)>=0) that.allow_gid.remove(id); - break; - case "c": - if (that.deny_cid.indexOf(id)<0){ - that.deny_cid.push(id) - } else { - that.deny_cid.remove(id); - } - if (that.allow_cid.indexOf(id)>=0) that.allow_cid.remove(id); - break; - } - that.update_view(); -} - -ACL.prototype.update_view = function(){ - if (that.allow_gid.length==0 && that.allow_cid.length==0 && - that.deny_gid.length==0 && that.deny_cid.length==0){ - that.showall.addClass("selected"); - /* jot acl */ - $('#jot-perms-icon').removeClass('lock').addClass('unlock'); - $('#jot-public').show(); - $('.profile-jot-net input').attr('disabled', false); - if(typeof editor != 'undefined' && editor != false) { - $('#profile-jot-desc').html(window.isPublic); - } - - } else { - that.showall.removeClass("selected"); - /* jot acl */ - $('#jot-perms-icon').removeClass('unlock').addClass('lock'); - $('#jot-public').hide(); - $('.profile-jot-net input').attr('disabled', 'disabled'); - $('#profile-jot-desc').html(' '); - } - $("#acl-list-content .acl-list-item").each(function(){ - $(this).removeClass("groupshow grouphide"); - }); - - $("#acl-list-content .acl-list-item").each(function(){ - itemid = $(this).attr('id'); - type = itemid[0]; - id = parseInt(itemid.substr(1)); - - btshow = $(this).children(".acl-button-show").removeClass("selected"); - bthide = $(this).children(".acl-button-hide").removeClass("selected"); - - switch(type){ - case "g": - var uclass = ""; - if (that.allow_gid.indexOf(id)>=0){ - btshow.addClass("selected"); - bthide.removeClass("selected"); - uclass="groupshow"; - } - if (that.deny_gid.indexOf(id)>=0){ - btshow.removeClass("selected"); - bthide.addClass("selected"); - uclass="grouphide"; - } - - $(that.group_uids[id]).each(function(i,v) { - if(uclass == "grouphide") - $("#c"+v).removeClass("groupshow"); - if(uclass != "") { - var cls = $("#c"+v).attr('class'); - if( cls == undefined) - return true; - var hiding = cls.indexOf('grouphide'); - if(hiding == -1) - $("#c"+v).addClass(uclass); - } - }); - - break; - case "c": - if (that.allow_cid.indexOf(id)>=0){ - btshow.addClass("selected"); - bthide.removeClass("selected"); - } - if (that.deny_cid.indexOf(id)>=0){ - btshow.removeClass("selected"); - bthide.addClass("selected"); - } - } - - }); - -} - - -ACL.prototype.get = function(start,count, search){ - var postdata = { - start:start, - count:count, - search:search, - } - - $.ajax({ - type:'POST', - url: that.url, - data: postdata, - dataType: 'json', - success:that.populate - }); -} - -ACL.prototype.populate = function(data){ -/* var height = Math.ceil(data.tot / that.nw) * 42; - that.list_content.height(height);*/ - $(data.items).each(function(){ - html = "
"+that.item_tpl+"
"; - html = html.format( this.photo, this.name, this.type, this.id, '', this.network, this.link ); - if (this.uids!=undefined) that.group_uids[this.id] = this.uids; - //console.log(html); - that.list_content.append(html); - }); - $(".acl-list-item img[data-src]", that.list_content).each(function(i, el){ - // Add src attribute for images with a data-src attribute - $(el).attr('src', $(el).data("src")); - }); - that.update_view(); -} - diff --git a/view/theme/frost-mobile/js/acl.min.js b/view/theme/frost-mobile/js/acl.min.js deleted file mode 100644 index 01e90b020..000000000 --- a/view/theme/frost-mobile/js/acl.min.js +++ /dev/null @@ -1 +0,0 @@ -function ACL(backend_url,preset){that=this;that.url=backend_url;that.kp_timer=null;if(preset==undefined)preset=[];that.allow_cid=preset[0]||[];that.allow_gid=preset[1]||[];that.deny_cid=preset[2]||[];that.deny_gid=preset[3]||[];that.group_uids=[];that.nw=2;that.list_content=$("#acl-list-content");that.item_tpl=unescape($(".acl-list-item[rel=acl-template]").html());that.showall=$("#acl-showall");if(preset.length==0)that.showall.addClass("selected");that.showall.click(that.on_showall);$(".acl-button-show").live("click",that.on_button_show);$(".acl-button-hide").live("click",that.on_button_hide);$("#acl-search").keypress(that.on_search);$("#acl-wrapper").parents("form").submit(that.on_submit);that.get(0,100)}ACL.prototype.on_submit=function(){aclfileds=$("#acl-fields").html("");$(that.allow_gid).each(function(i,v){aclfileds.append("")});$(that.allow_cid).each(function(i,v){aclfileds.append("")});$(that.deny_gid).each(function(i,v){aclfileds.append("")});$(that.deny_cid).each(function(i,v){aclfileds.append("")})};ACL.prototype.search=function(){var srcstr=$("#acl-search").val();that.list_content.html("");that.get(0,100,srcstr)};ACL.prototype.on_search=function(event){if(that.kp_timer)clearTimeout(that.kp_timer);that.kp_timer=setTimeout(that.search,1e3)};ACL.prototype.on_showall=function(event){event.preventDefault();event.stopPropagation();if(that.showall.hasClass("selected")){return false}that.showall.addClass("selected");that.allow_cid=[];that.allow_gid=[];that.deny_cid=[];that.deny_gid=[];that.update_view();return false};ACL.prototype.on_button_show=function(event){event.preventDefault();event.stopImmediatePropagation();event.stopPropagation();that.set_allow($(this).parent().attr("id"));return false};ACL.prototype.on_button_hide=function(event){event.preventDefault();event.stopImmediatePropagation();event.stopPropagation();that.set_deny($(this).parent().attr("id"));return false};ACL.prototype.set_allow=function(itemid){type=itemid[0];id=parseInt(itemid.substr(1));switch(type){case"g":if(that.allow_gid.indexOf(id)<0){that.allow_gid.push(id)}else{that.allow_gid.remove(id)}if(that.deny_gid.indexOf(id)>=0)that.deny_gid.remove(id);break;case"c":if(that.allow_cid.indexOf(id)<0){that.allow_cid.push(id)}else{that.allow_cid.remove(id)}if(that.deny_cid.indexOf(id)>=0)that.deny_cid.remove(id);break}that.update_view()};ACL.prototype.set_deny=function(itemid){type=itemid[0];id=parseInt(itemid.substr(1));switch(type){case"g":if(that.deny_gid.indexOf(id)<0){that.deny_gid.push(id)}else{that.deny_gid.remove(id)}if(that.allow_gid.indexOf(id)>=0)that.allow_gid.remove(id);break;case"c":if(that.deny_cid.indexOf(id)<0){that.deny_cid.push(id)}else{that.deny_cid.remove(id)}if(that.allow_cid.indexOf(id)>=0)that.allow_cid.remove(id);break}that.update_view()};ACL.prototype.update_view=function(){if(that.allow_gid.length==0&&that.allow_cid.length==0&&that.deny_gid.length==0&&that.deny_cid.length==0){that.showall.addClass("selected");$("#jot-perms-icon").removeClass("lock").addClass("unlock");$("#jot-public").show();$(".profile-jot-net input").attr("disabled",false);if(typeof editor!="undefined"&&editor!=false){$("#profile-jot-desc").html(window.isPublic)}}else{that.showall.removeClass("selected");$("#jot-perms-icon").removeClass("unlock").addClass("lock");$("#jot-public").hide();$(".profile-jot-net input").attr("disabled","disabled");$("#profile-jot-desc").html(" ")}$("#acl-list-content .acl-list-item").each(function(){$(this).removeClass("groupshow grouphide")});$("#acl-list-content .acl-list-item").each(function(){itemid=$(this).attr("id");type=itemid[0];id=parseInt(itemid.substr(1));btshow=$(this).children(".acl-button-show").removeClass("selected");bthide=$(this).children(".acl-button-hide").removeClass("selected");switch(type){case"g":var uclass="";if(that.allow_gid.indexOf(id)>=0){btshow.addClass("selected");bthide.removeClass("selected");uclass="groupshow"}if(that.deny_gid.indexOf(id)>=0){btshow.removeClass("selected");bthide.addClass("selected");uclass="grouphide"}$(that.group_uids[id]).each(function(i,v){if(uclass=="grouphide")$("#c"+v).removeClass("groupshow");if(uclass!=""){var cls=$("#c"+v).attr("class");if(cls==undefined)return true;var hiding=cls.indexOf("grouphide");if(hiding==-1)$("#c"+v).addClass(uclass)}});break;case"c":if(that.allow_cid.indexOf(id)>=0){btshow.addClass("selected");bthide.removeClass("selected")}if(that.deny_cid.indexOf(id)>=0){btshow.removeClass("selected");bthide.addClass("selected")}}})};ACL.prototype.get=function(start,count,search){var postdata={start:start,count:count,search:search};$.ajax({type:"POST",url:that.url,data:postdata,dataType:"json",success:that.populate})};ACL.prototype.populate=function(data){$(data.items).each(function(){html="
"+that.item_tpl+"
";html=html.format(this.photo,this.name,this.type,this.id,"",this.network,this.link);if(this.uids!=undefined)that.group_uids[this.id]=this.uids;that.list_content.append(html)});$(".acl-list-item img[data-src]",that.list_content).each(function(i,el){$(el).attr("src",$(el).data("src"))});that.update_view()}; \ No newline at end of file diff --git a/view/theme/frost-mobile/js/main.js b/view/theme/frost-mobile/js/main.js deleted file mode 100644 index 5a884192e..000000000 --- a/view/theme/frost-mobile/js/main.js +++ /dev/null @@ -1,659 +0,0 @@ - - function openClose(listID) { -/* if(document.getElementById(theID).style.display == "block") { - document.getElementById(theID).style.display = "none" - } - else { - document.getElementById(theID).style.display = "block" - }*/ - listID = "#" + listID.replace(/:/g, "\\:"); - listID = listID.replace(/\./g, "\\."); - listID = listID.replace(/@/g, "\\@"); - - if($(listID).is(":visible")) { - $(listID).hide(); - $(listID+"-wrapper").show(); - } - else { - $(listID).show(); - $(listID+"-wrapper").hide(); - } - } - - function openMenu(theID) { - document.getElementById(theID).style.display = "block" - } - - function closeMenu(theID) { - document.getElementById(theID).style.display = "none" - } - - - - var src = null; - var prev = null; - var livetime = null; - var stopped = false; - var totStopped = false; - var timer = null; - var pr = 0; - var liking = 0; - var in_progress = false; - var langSelect = false; - var commentBusy = false; - var last_popup_menu = null; - var last_popup_button = null; - - $(function() { - $.ajaxSetup({cache: false}); - - /* setup onoff widgets */ - $(".onoff input").each(function(){ - val = $(this).val(); - id = $(this).attr("id"); - $("#"+id+"_onoff ."+ (val==0?"on":"off")).addClass("hidden"); - - }); - $(".onoff > a").click(function(event){ - event.preventDefault(); - var input = $(this).siblings("input"); - var val = 1-input.val(); - var id = input.attr("id"); - $("#"+id+"_onoff ."+ (val==0?"on":"off")).addClass("hidden"); - $("#"+id+"_onoff ."+ (val==1?"on":"off")).removeClass("hidden"); - input.val(val); - }); - - /* popup menus */ - function close_last_popup_menu(e) { - - if( last_popup_menu ) { - if( '#' + last_popup_menu.attr('id') !== $(e.target).attr('rel')) { - last_popup_menu.hide(); - if (last_popup_menu.attr('id') == "nav-notifications-menu" ) $('.main-container').show(); - last_popup_button.removeClass("selected"); - last_popup_menu = null; - last_popup_button = null; - } - } - } - $('img[rel^=#]').click(function(e){ - - close_last_popup_menu(e); - menu = $( $(this).attr('rel') ); - e.preventDefault(); - e.stopPropagation(); - - if (menu.attr('popup')=="false") return false; - -// $(this).parent().toggleClass("selected"); -// menu.toggle(); - - if (menu.css("display") == "none") { - $(this).parent().addClass("selected"); - menu.show(); - if (menu.attr('id') == "nav-notifications-menu" ) $('.main-container').hide(); - last_popup_menu = menu; - last_popup_button = $(this).parent(); - } else { - $(this).parent().removeClass("selected"); - menu.hide(); - if (menu.attr('id') == "nav-notifications-menu" ) $('.main-container').show(); - last_popup_menu = null; - last_popup_button = null; - } - return false; - }); - $('html').click(function(e) { - close_last_popup_menu(e); - }); - - // fancyboxes - /*$("a.popupbox").colorbox({ - 'inline' : true, - 'transition' : 'none' - });*/ - - - /* notifications template */ - var notifications_tpl= unescape($("#nav-notifications-template[rel=template]").html()); - var notifications_all = unescape($('
').append( $("#nav-notifications-see-all").clone() ).html()); //outerHtml hack - var notifications_mark = unescape($('
').append( $("#nav-notifications-mark-all").clone() ).html()); //outerHtml hack - var notifications_empty = unescape($("#nav-notifications-menu").html()); - - /* nav update event */ - $('nav').bind('nav-update', function(e,data){; - var invalid = $(data).find('invalid').text(); - if(invalid == 1) { window.location.href=window.location.href } - - var net = $(data).find('net').text(); - if(net == 0) { net = ''; $('#net-update').removeClass('show') } else { $('#net-update').addClass('show') } - $('#net-update').html(net); - - var home = $(data).find('home').text(); - if(home == 0) { home = ''; $('#home-update').removeClass('show') } else { $('#home-update').addClass('show') } - $('#home-update').html(home); - - var intro = $(data).find('intro').text(); - if(intro == 0) { intro = ''; $('#intro-update').removeClass('show') } else { $('#intro-update').addClass('show') } - $('#intro-update').html(intro); - - var mail = $(data).find('mail').text(); - if(mail == 0) { mail = ''; $('#mail-update').removeClass('show') } else { $('#mail-update').addClass('show') } - $('#mail-update').html(mail); - - var intro = $(data).find('intro').text(); - if(intro == 0) { intro = ''; $('#intro-update-li').removeClass('show') } else { $('#intro-update-li').addClass('show') } - $('#intro-update-li').html(intro); - - var mail = $(data).find('mail').text(); - if(mail == 0) { mail = ''; $('#mail-update-li').removeClass('show') } else { $('#mail-update-li').addClass('show') } - $('#mail-update-li').html(mail); - - var eNotif = $(data).find('notif') - - if (eNotif.children("note").length==0){ - $("#nav-notifications-menu").html(notifications_empty); - } else { - nnm = $("#nav-notifications-menu"); - nnm.html(notifications_all + notifications_mark); - //nnm.attr('popup','true'); - eNotif.children("note").each(function(){ - e = $(this); - text = e.text().format(""+e.attr('name')+""); - html = notifications_tpl.format(e.attr('href'),e.attr('photo'), text, e.attr('date'), e.attr('seen')); - nnm.append(html); - }); - - $("img[data-src]", nnm).each(function(i, el){ - // Add src attribute for images with a data-src attribute - // However, don't bother if the data-src attribute is empty, because - // an empty "src" tag for an image will cause some browsers - // to prefetch the root page of the Friendica hub, which will - // unnecessarily load an entire profile/ or network/ page - if($(el).data("src") != '') $(el).attr('src', $(el).data("src")); - }); - } - notif = eNotif.attr('count'); - if (notif>0){ - $("#nav-notifications-linkmenu").addClass("on"); - } else { - $("#nav-notifications-linkmenu").removeClass("on"); - } - if(notif == 0) { notif = ''; $('#notify-update').removeClass('show') } else { $('#notify-update').addClass('show') } - $('#notify-update').html(notif); - - var eSysmsg = $(data).find('sysmsgs'); - eSysmsg.children("notice").each(function(){ - text = $(this).text(); - $.jGrowl(text, { sticky: false, theme: 'notice', life: 1000 }); - }); - eSysmsg.children("info").each(function(){ - text = $(this).text(); - $.jGrowl(text, { sticky: false, theme: 'info', life: 1000 }); - }); - - }); - - - NavUpdate(); - // Allow folks to stop the ajax page updates with the pause/break key -/* $(document).keydown(function(event) { - if(event.keyCode == '8') { - var target = event.target || event.srcElement; - if (!/input|textarea/i.test(target.nodeName)) { - return false; - } - } - if(event.keyCode == '19' || (event.ctrlKey && event.which == '32')) { - event.preventDefault(); - if(stopped == false) { - stopped = true; - if (event.ctrlKey) { - totStopped = true; - } - $('#pause').html('pause'); - } else { - unpause(); - } - } else { - if (!totStopped) { - unpause(); - } - } - });*/ - - - }); - - function NavUpdate() { - - if(! stopped) { - var pingCmd = 'ping' + ((localUser != 0) ? '?f=&uid=' + localUser : ''); - $.get(pingCmd,function(data) { - $(data).find('result').each(function() { - // send nav-update event - $('nav').trigger('nav-update', this); - - - // start live update - - - - if($('#live-network').length) { src = 'network'; liveUpdate(); } - if($('#live-profile').length) { src = 'profile'; liveUpdate(); } - if($('#live-community').length) { src = 'community'; liveUpdate(); } - if($('#live-notes').length) { src = 'notes'; liveUpdate(); } - if($('#live-display').length) { src = 'display'; liveUpdate(); } - /*if($('#live-display').length) { - if(liking) { - liking = 0; - window.location.href=window.location.href - } - }*/ - if($('#live-photos').length) { - if(liking) { - liking = 0; - window.location.href=window.location.href - } - } - - - - - }); - }) ; - } - timer = setTimeout(NavUpdate,updateInterval); - } - - function liveUpdate() { - if((src == null) || (stopped) || (typeof profile_uid == 'undefined') || (! profile_uid)) { $('.like-rotator').hide(); return; } - if(($('.comment-edit-text-full').length) || (in_progress)) { - if(livetime) { - clearTimeout(livetime); - } - livetime = setTimeout(liveUpdate, 5000); - return; - } - if(livetime != null) - livetime = null; - - prev = 'live-' + src; - - in_progress = true; - var udargs = ((netargs.length) ? '/' + netargs : ''); - var update_url = 'update_' + src + udargs + '&p=' + profile_uid + '&page=' + profile_page; - - $.get(update_url,function(data) { - in_progress = false; - // $('.collapsed-comments',data).each(function() { - // var ident = $(this).attr('id'); - // var is_hidden = $('#' + ident).is(':hidden'); - // if($('#' + ident).length) { - // $('#' + ident).replaceWith($(this)); - // if(is_hidden) - // $('#' + ident).hide(); - // } - //}); - - // add a new thread - - $('.toplevel_item',data).each(function() { - var ident = $(this).attr('id'); - - if($('#' + ident).length == 0 && profile_page == 1) { - $('img',this).each(function() { - $(this).attr('src',$(this).attr('dst')); - }); - $('#' + prev).after($(this)); - } - else { - // Find out if the hidden comments are open, so we can keep it that way - // if a new comment has been posted - var id = $('.hide-comments-total', this).attr('id'); - if(typeof id != 'undefined') { - id = id.split('-')[3]; - var commentsOpen = $("#collapsed-comments-" + id).is(":visible"); - } - - $('img',this).each(function() { - $(this).attr('src',$(this).attr('dst')); - }); - //vScroll = $(document).scrollTop(); - $('html').height($('html').height()); - $('#' + ident).replaceWith($(this)); - - if(typeof id != 'undefined') { - if(commentsOpen) showHideComments(id); - } - $('html').height('auto'); - //$(document).scrollTop(vScroll); - } - prev = ident; - }); - - - collapseHeight(); - - // reset vars for inserting individual items - - /*prev = 'live-' + src; - - $('.wall-item-outside-wrapper',data).each(function() { - var ident = $(this).attr('id'); - - if($('#' + ident).length == 0 && prev != 'live-' + src) { - $('img',this).each(function() { - $(this).attr('src',$(this).attr('dst')); - }); - $('#' + prev).after($(this)); - } - else { - $('#' + ident + ' ' + '.wall-item-ago').replaceWith($(this).find('.wall-item-ago')); - if($('#' + ident + ' ' + '.comment-edit-text-empty').length) - $('#' + ident + ' ' + '.wall-item-comment-wrapper').replaceWith($(this).find('.wall-item-comment-wrapper')); - $('#' + ident + ' ' + '.hide-comments-total').replaceWith($(this).find('.hide-comments-total')); - $('#' + ident + ' ' + '.wall-item-like').replaceWith($(this).find('.wall-item-like')); - $('#' + ident + ' ' + '.wall-item-dislike').replaceWith($(this).find('.wall-item-dislike')); - $('#' + ident + ' ' + '.my-comment-photo').each(function() { - $(this).attr('src',$(this).attr('dst')); - }); - } - prev = ident; - });*/ - - $('.like-rotator').hide(); - if(commentBusy) { - commentBusy = false; - $('body').css('cursor', 'auto'); - } - /* autocomplete @nicknames */ - $(".comment-edit-form textarea").editor_autocomplete(baseurl+"/acl"); - - // setup videos, since VideoJS won't take care of any loaded via AJAX - if(typeof videojs != 'undefined') videojs.autoSetup(); - }); - } - - function collapseHeight(elems) { - var elemName = '.wall-item-body:not(.divmore)'; - if(typeof elems != 'undefined') { - elemName = elems + ' ' + elemName; - } - $(elemName).each(function() { - $('html').height($('html').height()); - $(this).readmore({maxheight:350 , moreLink:'+ Show more', lessLink:'+ Show less'}); - $(this).addClass('divmore'); - $('html').height('auto'); - }); - } - -/* function imgbright(node) { - $(node).removeClass("drophide").addClass("drop"); - } - - function imgdull(node) { - $(node).removeClass("drop").addClass("drophide"); - }*/ - - // Since our ajax calls are asynchronous, we will give a few - // seconds for the first ajax call (setting like/dislike), then - // run the updater to pick up any changes and display on the page. - // The updater will turn any rotators off when it's done. - // This function will have returned long before any of these - // events have completed and therefore there won't be any - // visible feedback that anything changed without all this - // trickery. This still could cause confusion if the "like" ajax call - // is delayed and NavUpdate runs before it completes. - - function dolike(ident,verb) { - unpause(); - $('#like-rotator-' + ident.toString()).show(); - $.get('like/' + ident.toString() + '?verb=' + verb, NavUpdate ); -// if(timer) clearTimeout(timer); -// timer = setTimeout(NavUpdate,3000); - liking = 1; - } - - function dostar(ident) { - ident = ident.toString(); - //$('#like-rotator-' + ident).show(); - $.get('starred/' + ident, function(data) { - if(data.match(/1/)) { - $('#starred-' + ident).addClass('starred'); - $('#starred-' + ident).removeClass('unstarred'); - $('#star-' + ident).addClass('hidden'); - $('#unstar-' + ident).removeClass('hidden'); - } - else { - $('#starred-' + ident).addClass('unstarred'); - $('#starred-' + ident).removeClass('starred'); - $('#star-' + ident).removeClass('hidden'); - $('#unstar-' + ident).addClass('hidden'); - } - //$('#like-rotator-' + ident).hide(); - }); - } - - function getPosition(e) { - var cursor = {x:0, y:0}; - if ( e.pageX || e.pageY ) { - cursor.x = e.pageX; - cursor.y = e.pageY; - } - else { - if( e.clientX || e.clientY ) { - cursor.x = e.clientX + (document.documentElement.scrollLeft || document.body.scrollLeft) - document.documentElement.clientLeft; - cursor.y = e.clientY + (document.documentElement.scrollTop || document.body.scrollTop) - document.documentElement.clientTop; - } - else { - if( e.x || e.y ) { - cursor.x = e.x; - cursor.y = e.y; - } - } - } - return cursor; - } - - var lockvisible = false; - - function lockview(event,id) { - event = event || window.event; - cursor = getPosition(event); - if(lockvisible) { - lockviewhide(); - } - else { - lockvisible = true; - $.get('lockview/' + id, function(data) { - $('#panel').html(data); - $('#panel').css({ 'left': 10 , 'top': cursor.y + 20}); - $('#panel').show(); - }); - } - } - - function lockviewhide() { - lockvisible = false; - $('#panel').hide(); - } - - function post_comment(id) { - unpause(); - commentBusy = true; - $('body').css('cursor', 'wait'); - $("#comment-preview-inp-" + id).val("0"); - $.post( - "item", - $("#comment-edit-form-" + id).serialize(), - function(data) { - if(data.success) { - $("#comment-edit-wrapper-" + id).hide(); - $("#comment-edit-text-" + id).val(''); - var tarea = document.getElementById("comment-edit-text-" + id); - if(tarea) - commentClose(tarea,id); - if(timer) clearTimeout(timer); - timer = setTimeout(NavUpdate,10); - } - if(data.reload) { - window.location.href=data.reload; - } - }, - "json" - ); - return false; - } - - - function preview_comment(id) { - $("#comment-preview-inp-" + id).val("1"); - $("#comment-edit-preview-" + id).show(); - $.post( - "item", - $("#comment-edit-form-" + id).serialize(), - function(data) { - if(data.preview) { - - $("#comment-edit-preview-" + id).html(data.preview); - $("#comment-edit-preview-" + id + " a").click(function() { return false; }); - } - }, - "json" - ); - return true; - } - - - function showHideComments(id) { - if( $("#collapsed-comments-" + id).is(":visible")) { - $("#collapsed-comments-" + id).hide(); - $("#hide-comments-" + id).html(window.showMore); - } - else { - $("#collapsed-comments-" + id).show(); - $("#hide-comments-" + id).html(window.showFewer); - collapseHeight("#collapsed-comments-" + id); - } - } - - - function preview_post() { - $("#jot-preview").val("1"); - $("#jot-preview-content").show(); - $.post( - "item", - $("#profile-jot-form").serialize(), - function(data) { - if(data.preview) { - $("#jot-preview-content").html(data.preview); - $("#jot-preview-content" + " a").click(function() { return false; }); - } - }, - "json" - ); - $("#jot-preview").val("0"); - return true; - } - - - function unpause() { - // unpause auto reloads if they are currently stopped - totStopped = false; - stopped = false; - $('#pause').html(''); - } - - - function bin2hex(s){ - // Converts the binary representation of data to hex - // - // version: 812.316 - // discuss at: http://phpjs.org/functions/bin2hex - // + original by: Kevin van Zonneveld (http://kevin.vanzonneveld.net) - // + bugfixed by: Onno Marsman - // + bugfixed by: Linuxworld - // * example 1: bin2hex('Kev'); - // * returns 1: '4b6576' - // * example 2: bin2hex(String.fromCharCode(0x00)); - // * returns 2: '00' - var v,i, f = 0, a = []; - s += ''; - f = s.length; - - for (i = 0; i' + data.desc + '
' + data.version + '
' + data.credits + '
'); - }); - -} diff --git a/view/theme/frost-mobile/js/readmore.js b/view/theme/frost-mobile/js/readmore.js deleted file mode 100644 index 4a02cf1dd..000000000 --- a/view/theme/frost-mobile/js/readmore.js +++ /dev/null @@ -1,192 +0,0 @@ -/*! - * Readmore.js jQuery plugin - * Author: @jed_foster - * Project home: jedfoster.github.io/Readmore.js - * Licensed under the MIT license - */ - -;(function($) { - - var readmore = 'readmore', - defaults = { - speed: 100, - maxHeight: 200, - heightMargin: 16, - moreLink: 'Read More', - lessLink: 'Close', - embedCSS: true, - sectionCSS: 'display: block; width: 100%;', - startOpen: false, - expandedClass: 'readmore-js-expanded', - collapsedClass: 'readmore-js-collapsed', - - // callbacks - beforeToggle: function(){}, - afterToggle: function(){} - }, - cssEmbedded = false; - - function Readmore( element, options ) { - this.element = element; - - this.options = $.extend( {}, defaults, options); - - $(this.element).data('max-height', this.options.maxHeight); - $(this.element).data('height-margin', this.options.heightMargin); - - delete(this.options.maxHeight); - - if(this.options.embedCSS && ! cssEmbedded) { - var styles = '.readmore-js-toggle, .readmore-js-section { ' + this.options.sectionCSS + ' } .readmore-js-section { overflow: hidden; }'; - - (function(d,u) { - var css=d.createElement('style'); - css.type = 'text/css'; - if(css.styleSheet) { - css.styleSheet.cssText = u; - } - else { - css.appendChild(d.createTextNode(u)); - } - d.getElementsByTagName('head')[0].appendChild(css); - }(document, styles)); - - cssEmbedded = true; - } - - this._defaults = defaults; - this._name = readmore; - - this.init(); - } - - Readmore.prototype = { - - init: function() { - var $this = this; - - $(this.element).each(function() { - var current = $(this), - maxHeight = (current.css('max-height').replace(/[^-\d\.]/g, '') > current.data('max-height')) ? current.css('max-height').replace(/[^-\d\.]/g, '') : current.data('max-height'), - heightMargin = current.data('height-margin'); - - if(current.css('max-height') != 'none') { - current.css('max-height', 'none'); - } - - $this.setBoxHeight(current); - - if(current.outerHeight(true) <= maxHeight + heightMargin) { - // The block is shorter than the limit, so there's no need to truncate it. - return true; - } - else { - current.addClass('readmore-js-section ' + $this.options.collapsedClass).data('collapsedHeight', maxHeight); - - var useLink = $this.options.startOpen ? $this.options.lessLink : $this.options.moreLink; - current.after($(useLink).on('click', function(event) { $this.toggleSlider(this, current, event) }).addClass('readmore-js-toggle')); - - if(!$this.options.startOpen) { - current.css({height: maxHeight}); - } - } - }); - - $(window).on('resize', function(event) { - $this.resizeBoxes(); - }); - }, - - toggleSlider: function(trigger, element, event) - { - event.preventDefault(); - - var $this = this, - newHeight = newLink = sectionClass = '', - expanded = false, - collapsedHeight = $(element).data('collapsedHeight'); - - if ($(element).height() <= collapsedHeight) { - newHeight = $(element).data('expandedHeight') + 'px'; - newLink = 'lessLink'; - expanded = true; - sectionClass = $this.options.expandedClass; - } - - else { - newHeight = collapsedHeight; - newLink = 'moreLink'; - sectionClass = $this.options.collapsedClass; - } - - // Fire beforeToggle callback - $this.options.beforeToggle(trigger, element, expanded); - - $(element).animate({'height': newHeight}, {duration: $this.options.speed, complete: function() { - // Fire afterToggle callback - $this.options.afterToggle(trigger, element, expanded); - - $(trigger).replaceWith($($this.options[newLink]).on('click', function(event) { $this.toggleSlider(this, element, event) }).addClass('readmore-js-toggle')); - - $(this).removeClass($this.options.collapsedClass + ' ' + $this.options.expandedClass).addClass(sectionClass); - } - }); - }, - - setBoxHeight: function(element) { - var el = element.clone().css({'height': 'auto', 'width': element.width(), 'overflow': 'hidden'}).insertAfter(element), - height = el.outerHeight(true); - - el.remove(); - - element.data('expandedHeight', height); - }, - - resizeBoxes: function() { - var $this = this; - - $('.readmore-js-section').each(function() { - var current = $(this); - - $this.setBoxHeight(current); - - if(current.height() > current.data('expandedHeight') || (current.hasClass($this.options.expandedClass) && current.height() < current.data('expandedHeight')) ) { - current.css('height', current.data('expandedHeight')); - } - }); - }, - - destroy: function() { - var $this = this; - - $(this.element).each(function() { - var current = $(this); - - current.removeClass('readmore-js-section ' + $this.options.collapsedClass + ' ' + $this.options.expandedClass).css({'max-height': '', 'height': 'auto'}).next('.readmore-js-toggle').remove(); - - current.removeData(); - }); - } - }; - - $.fn[readmore] = function( options ) { - var args = arguments; - if (options === undefined || typeof options === 'object') { - return this.each(function () { - if ($.data(this, 'plugin_' + readmore)) { - var instance = $.data(this, 'plugin_' + readmore); - instance['destroy'].apply(instance); - } - - $.data(this, 'plugin_' + readmore, new Readmore( this, options )); - }); - } else if (typeof options === 'string' && options[0] !== '_' && options !== 'init') { - return this.each(function () { - var instance = $.data(this, 'plugin_' + readmore); - if (instance instanceof Readmore && typeof instance[options] === 'function') { - instance[options].apply( instance, Array.prototype.slice.call( args, 1 ) ); - } - }); - } - } -})(jQuery); \ No newline at end of file diff --git a/view/theme/frost-mobile/js/readmore.min.js b/view/theme/frost-mobile/js/readmore.min.js deleted file mode 100644 index ae0ee637f..000000000 --- a/view/theme/frost-mobile/js/readmore.min.js +++ /dev/null @@ -1,7 +0,0 @@ -(function(c){function g(b,a){this.element=b;this.options=c.extend({},h,a);c(this.element).data("max-height",this.options.maxHeight);c(this.element).data("height-margin",this.options.heightMargin);delete this.options.maxHeight;if(this.options.embedCSS&&!k){var d=".readmore-js-toggle, .readmore-js-section { "+this.options.sectionCSS+" } .readmore-js-section { overflow: hidden; }",e=document.createElement("style");e.type="text/css";e.styleSheet?e.styleSheet.cssText=d:e.appendChild(document.createTextNode(d)); -document.getElementsByTagName("head")[0].appendChild(e);k=!0}this._defaults=h;this._name=f;this.init()}var f="readmore",h={speed:100,maxHeight:200,heightMargin:16,moreLink:'Read More',lessLink:'Close',embedCSS:!0,sectionCSS:"display: block; width: 100%;",startOpen:!1,expandedClass:"readmore-js-expanded",collapsedClass:"readmore-js-collapsed",beforeToggle:function(){},afterToggle:function(){}},k=!1;g.prototype={init:function(){var b=this;c(this.element).each(function(){var a= -c(this),d=a.css("max-height").replace(/[^-\d\.]/g,"")>a.data("max-height")?a.css("max-height").replace(/[^-\d\.]/g,""):a.data("max-height"),e=a.data("height-margin");"none"!=a.css("max-height")&&a.css("max-height","none");b.setBoxHeight(a);if(a.outerHeight(!0)<=d+e)return!0;a.addClass("readmore-js-section "+b.options.collapsedClass).data("collapsedHeight",d);a.after(c(b.options.startOpen?b.options.lessLink:b.options.moreLink).on("click",function(c){b.toggleSlider(this,a,c)}).addClass("readmore-js-toggle")); -b.options.startOpen||a.css({height:d})});c(window).on("resize",function(a){b.resizeBoxes()})},toggleSlider:function(b,a,d){d.preventDefault();var e=this;d=newLink=sectionClass="";var f=!1;d=c(a).data("collapsedHeight");c(a).height()<=d?(d=c(a).data("expandedHeight")+"px",newLink="lessLink",f=!0,sectionClass=e.options.expandedClass):(newLink="moreLink",sectionClass=e.options.collapsedClass);e.options.beforeToggle(b,a,f);c(a).animate({height:d},{duration:e.options.speed,complete:function(){e.options.afterToggle(b, -a,f);c(b).replaceWith(c(e.options[newLink]).on("click",function(b){e.toggleSlider(this,a,b)}).addClass("readmore-js-toggle"));c(this).removeClass(e.options.collapsedClass+" "+e.options.expandedClass).addClass(sectionClass)}})},setBoxHeight:function(b){var a=b.clone().css({height:"auto",width:b.width(),overflow:"hidden"}).insertAfter(b),c=a.outerHeight(!0);a.remove();b.data("expandedHeight",c)},resizeBoxes:function(){var b=this;c(".readmore-js-section").each(function(){var a=c(this);b.setBoxHeight(a); -(a.height()>a.data("expandedHeight")||a.hasClass(b.options.expandedClass)&&a.height(){1} : {2}".format( - event.item['author-avatar'], - event.item['author-name'], - event.title - )); - break; - case "agendaWeek": - element.find(".fc-title").html( - "{1}

{2}

{3}

".format( - event.item['author-avatar'], - event.item['author-name'], - event.item.desc, - event.item.location - )); - break; - case "agendaDay": - element.find(".fc-title").html( - "{1}

{2}

{3}

".format( - event.item['author-avatar'], - event.item['author-name'], - event.item.desc, - event.item.location - )); - break; - } - } - - }); - - // center on date - var args=location.href.replace(baseurl,"").split("/"); - if (args.length>=5 && window.eventModeParams == 2) { - $("#events-calendar").fullCalendar('gotoDate',args[3] , args[4]-1); - } else if (args.length>=4 && window.eventModeParams == 1) { - $("#events-calendar").fullCalendar('gotoDate',args[2] , args[3]-1); - } - - // show event popup - var hash = location.hash.split("-") - if (hash.length==2 && hash[0]=="#link") showEvent(hash[1]); - } - -}); - -// update pending count // -$(function() { - - $("nav").bind('nav-update', function(e,data) { - var elm = $('#pending-update'); - var register = $(data).find('register').text(); - if (register=="0") { register=""; elm.hide();} else { elm.show(); } - elm.html(register); - }); -}); - - - -function homeRedirect() { - $('html').fadeOut('slow', function() { - window.location = baseurl + "/login"; - }); -} - - -function initCrop() { - function onEndCrop( coords, dimensions ) { - $PR( 'x1' ).value = coords.x1; - $PR( 'y1' ).value = coords.y1; - $PR( 'x2' ).value = coords.x2; - $PR( 'y2' ).value = coords.y2; - $PR( 'width' ).value = dimensions.width; - $PR( 'height' ).value = dimensions.height; - } - - Event.observe( window, 'load', function() { - new Cropper.ImgWithPreview( - 'croppa', - { - previewWrap: 'previewWrap', - minWidth: 175, - minHeight: 175, - maxWidth: 640, - maxHeight: 640, - ratioDim: { x: 100, y:100 }, - displayOnInit: true, - onEndCrop: onEndCrop - }); - }); -} - - -function showEvent(eventid) { -} - -/* - * Editor - */ -var editor = false; -var textlen = 0; - -function initEditor(callback){ - if (editor == false) { - $("#profile-jot-text").css({ 'height': 200, 'color': '#000' }); - $("#profile-jot-text").editor_autocomplete(baseurl+"/acl"); - $("a#jot-perms-icon, a#settings-default-perms-menu").click(function () { - var parent = $("#profile-jot-acl-wrapper").parent(); - if (parent.css('display') == 'none') { - parent.show(); - } else { - parent.hide(); - } - return false; - }); - $(".jothidden").show(); - - editor = true; - } - if (typeof callback != "undefined") { - callback(); - } -} - -function enableOnUser(){ - if (editor) { - return; - } - $(this).val(""); - initEditor(); -} - -/* - * Jot - */ - -function addeditortext(textElem, data) { - var currentText = $(textElem).val(); - $(textElem).val(currentText + data); -} - -function jotVideoURL() { - reply = prompt(window.vidURL); - if (reply && reply.length) { - addeditortext("#profile-jot-text", '[video]' + reply + '[/video]'); - } -} - -function jotAudioURL() { - reply = prompt(window.audURL); - if (reply && reply.length) { - addeditortext("#profile-jot-text", '[audio]' + reply + '[/audio]'); - } -} - - -function jotGetLocation() { - reply = prompt(window.whereAreU, $('#jot-location').val()); - if (reply && reply.length) { - $('#jot-location').val(reply); - } -} - -function jotShare(id) { - if ($('#jot-popup').length != 0) $('#jot-popup').show(); - - $('#like-rotator-' + id).show(); - $.get('share/' + id, function(data) { - if (!editor) $("#profile-jot-text").val(""); - initEditor(function() { - addeditortext("#profile-jot-text", data); - $('#like-rotator-' + id).hide(); - $(window).scrollTop(0); - }); - - }); -} - -function jotGetLink() { - reply = prompt(window.linkURL); - if (reply && reply.length) { - reply = bin2hex(reply); - $('#profile-rotator').show(); - $.get('parse_url?binurl=' + reply, function(data) { - addeditortext(window.jotId, data); - $('#profile-rotator').hide(); - }); - } -} - -function jotClearLocation() { - $('#jot-coord').val(''); - $('#profile-nolocation-wrapper').hide(); -} - -if (typeof window.geoTag === 'function') window.geoTag(); - - - -/* - * Items - */ - -function confirmDelete() { return confirm(window.delItem); } - -function itemTag(id) { - reply = prompt(window.term); - if (reply && reply.length) { - reply = reply.replace('#',''); - if (reply.length) { - - commentBusy = true; - $('body').css('cursor', 'wait'); - - $.get('tagger/' + id + '?term=' + reply, NavUpdate); - /*if (timer) clearTimeout(timer); - timer = setTimeout(NavUpdate,3000);*/ - liking = 1; - } - } -} - -function itemFiler(id) { - $.get('filer/', function(data) { - - var promptText = $('#id_term_label', data).text(); - - reply = prompt(promptText); - if (reply && reply.length) { - commentBusy = true; - $('body').css('cursor', 'wait'); - $.get('filer/' + id + '?term=' + reply, NavUpdate); - liking = 1; - } - }); -} - -/* - * Comments - */ -function commentOpen(obj,id) { - if (obj.value == "") { - $("#comment-edit-text-" + id).addClass("comment-edit-text-full"); - $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty"); - $("#mod-cmnt-wrap-" + id).show(); - openMenu("comment-edit-submit-wrapper-" + id); - } -} -function commentClose(obj,id) { - if (obj.value == "") { - $("#comment-edit-text-" + id).removeClass("comment-edit-text-full"); - $("#comment-edit-text-" + id).addClass("comment-edit-text-empty"); - $("#mod-cmnt-wrap-" + id).hide(); - closeMenu("comment-edit-submit-wrapper-" + id); - } -} - - -function commentInsert(obj,id) { - var tmpStr = $("#comment-edit-text-" + id).val(); - if (tmpStr == "") { - $("#comment-edit-text-" + id).addClass("comment-edit-text-full"); - $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty"); - openMenu("comment-edit-submit-wrapper-" + id); - } - var ins = $(obj).html(); - ins = ins.replace("<","<"); - ins = ins.replace(">",">"); - ins = ins.replace("&","&"); - ins = ins.replace(""",'"'); - $("#comment-edit-text-" + id).val(tmpStr + ins); -} - -function qCommentInsert(obj,id) { - var tmpStr = $("#comment-edit-text-" + id).val(); - if (tmpStr == "") { - $("#comment-edit-text-" + id).addClass("comment-edit-text-full"); - $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty"); - openMenu("comment-edit-submit-wrapper-" + id); - } - var ins = $(obj).val(); - ins = ins.replace("<","<"); - ins = ins.replace(">",">"); - ins = ins.replace("&","&"); - ins = ins.replace(""",'"'); - $("#comment-edit-text-" + id).val(tmpStr + ins); - $(obj).val(""); -} - -function insertFormatting(BBcode, id) { - var tmpStr = $("#comment-edit-text-" + id).val(); - if (tmpStr == "") { - $("#comment-edit-text-" + id).addClass("comment-edit-text-full"); - $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty"); - openMenu("comment-edit-submit-wrapper-" + id); - } - - textarea = document.getElementById("comment-edit-text-" +id); - if (document.selection) { - textarea.focus(); - selected = document.selection.createRange(); - selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]"; - } else if (textarea.selectionStart || textarea.selectionStart == "0") { - var start = textarea.selectionStart; - var end = textarea.selectionEnd; - textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length); - } - - return true; -} - -function cmtBbOpen(id) { - $(".comment-edit-bb-" + id).show(); -} -function cmtBbClose(id) { - $(".comment-edit-bb-" + id).hide(); -} diff --git a/view/theme/frost-mobile/lock.cur b/view/theme/frost-mobile/lock.cur deleted file mode 100644 index 892c5e851..000000000 Binary files a/view/theme/frost-mobile/lock.cur and /dev/null differ diff --git a/view/theme/frost-mobile/login-bg.gif b/view/theme/frost-mobile/login-bg.gif deleted file mode 100644 index cde836c89..000000000 Binary files a/view/theme/frost-mobile/login-bg.gif and /dev/null differ diff --git a/view/theme/frost-mobile/login-style.css b/view/theme/frost-mobile/login-style.css deleted file mode 100644 index 4c8533071..000000000 --- a/view/theme/frost-mobile/login-style.css +++ /dev/null @@ -1,180 +0,0 @@ -html { - width: 100%; -} - -body { - font-family: helvetica,arial,freesans,clean,sans-serif; - font-size: 16px; - background-color: #ffffff; - color: #505050;/* ZP Change*/ - margin: 0px; -} - -a, a:visited, a:link { color: #3465a4; text-decoration: none; } -a:hover {text-decoration: underline; } - -img { border :0px; } - -nav { - display: none; -} - -/* popup notifications */ -div.jGrowl div.notice { - background: #511919 url("../../../images/icons/48/notice.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; - margin: 0px; -} -div.jGrowl div.info { - background: #364e59 url("../../../images/icons/48/info.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; - margin: 0px; -} -#jGrowl.top-right { - top: 15px; - right: 10px; -} -div.jGrowl-notification { - border-radius: 7px; -} - -.login-button { - margin-top: 90px; - margin-left: auto; - margin-right: auto; - -} - -img.login-button-image { - max-width: 300px; -} - -div.section-wrapper { - position: relative; - width: 300px; - margin-left: auto; - margin-right: auto; -} - -.login-form { - margin-top: 40px; -} - -.field { - position: relative; - margin-bottom: 15px; -} - -.field label { - margin-left: 25px; - font-weight: 700; - float: none; - width: auto; -} - -.field input { - font-size: 18px; - width: 200px; - margin-left: 50px; -} - -.field.checkbox label { - margin-left: auto; - float: auto; - /*margin-left: 100px;*/ -} -.field.checkbox input { - width: auto; - margin-left: 30px; -} - -#div_id_remember { - margin-top: 10px; - margin-bottom: 10px; -} - -#login_openid { - margin-top: 50px; -} - -#login_openid input, input.openid { - background: url(login-bg.gif) no-repeat; - background-position: 0 50%; - width: 182px; - padding-left: 18px; - margin-left: 50px; -} - -#login-footer { - margin-top: 10px; - text-align: center; -} - -.login-extra-links, .agreement { - font-size: 14px; -} - -#login-submit-button, #register-submit-button, #lostpass-submit-button { - font-size: 20px; - padding: 0.5em 1em; -} - -#register-link { - margin-right: 100px; -} - -.register-form { - margin-top: 15px; -} - -.register-form h2, .lostpass-form h2 { - text-align: center; -} - -.error-message { - width: 270px; - color: #FF0000; - font-size: 1.1em; - text-align: justify; - border: 1px solid #FF8888; - background-color: #FFEEEE; - padding: 10px; - margin-left: auto; - margin-right: auto; -} - -.register-explain-wrapper { - width: 290px; - text-align: justify; - font-size: 14px; - margin-left: 5px; -} - -#register-footer { - margin-top: 60px; - text-align: center; -} - -.lostpass-form { - margin-top: 100px; -} - -#lostpass-desc { - width: 290px; - margin-left: 5px; - margin-bottom: 30px; - text-align: justify; - font-size: 14px; -} - -#login-submit-wrapper { - text-align: center; -} - -footer { - text-align: center; - padding-top: 3em; - padding-bottom: 1em; -} diff --git a/view/theme/frost-mobile/mobile b/view/theme/frost-mobile/mobile deleted file mode 100644 index e69de29bb..000000000 diff --git a/view/theme/frost-mobile/php/default.php b/view/theme/frost-mobile/php/default.php deleted file mode 100644 index 72135fd7a..000000000 --- a/view/theme/frost-mobile/php/default.php +++ /dev/null @@ -1,45 +0,0 @@ - - - - <?php if(x($page,'title')) echo $page['title'] ?> - - - -module === 'home') echo 'onLoad="setTimeout(\'homeRedirect()\', 1500)"'?>> - - - module === 'home' ) { ?> -
- -
- - module === 'login' || $a->module === 'register' || $a->module === 'lostpass' ) { - ?> -
-
-
-
-
- - -
- -
- module === 'settings' || $a->module === 'message' || $a->module === 'profile') && x($page,'aside')) echo $page['aside']; ?> -
- -
- -
-
- - module === 'contacts') && x($page,'aside')) echo $page['aside']; ?> -
- -
- - - - diff --git a/view/theme/frost-mobile/screenshot.jpg b/view/theme/frost-mobile/screenshot.jpg deleted file mode 100644 index 1b18c3a41..000000000 Binary files a/view/theme/frost-mobile/screenshot.jpg and /dev/null differ diff --git a/view/theme/frost-mobile/style.css b/view/theme/frost-mobile/style.css deleted file mode 100644 index 632e44b1d..000000000 --- a/view/theme/frost-mobile/style.css +++ /dev/null @@ -1,4454 +0,0 @@ -/** - * duepuntozero Frindika style - * Fabio Comuni - * - * Heavily modified for Frost Mobile - * Zach P - */ - - -/* generals */ -html { -/* width: 320px;*/ - margin-left: auto; - margin-right: auto; -/* overflow-x:hidden;*/ -} - -body { - font-family: helvetica,arial,freesans,clean,sans-serif; - font-size: 16px; -/* line-height: 24px;*/ - background-color: #ffffff; - background-image: url(head.jpg); - background-repeat: repeat-x; - color: #505050; - margin: 0px; - overflow-x:hidden; -} - -div.container { - display: block; -/* width: 100%;*/ - margin-top: 0px; - margin-bottom: 0px; - margin-left: auto; - margin-right: auto; - overflow-x:hidden; -} - -a, a:visited, a:link { color: #3465a4; text-decoration: none; } -a:hover {text-decoration: underline; } - -input { - border: 1px solid #666666; - -moz-border-radius: 3px; - -webkit-border-radius: 3px; - border-radius: 3px; - padding: 3px; -} - -img { border :0px; } - -#id_openid_url, .openid input { - background: url(login-bg.gif) no-repeat; - background-position: 0 50%; - padding-left: 18px; - width: 212px; - margin-left: 20px; -} -.openid:hover { - -} - -/*#id_openid_url { - width: 384px; -}*/ - -/*code { - font-family: Courier, monospace; - white-space: pre; - display: block; - overflow: auto; - border: 1px solid #444; - background: #EEE; - color: #444; - padding: 10px; - margin-top: 20px; -} - -blockquote { - background-color: #f4f8f9; - border-left: 4px solid #dae4ee; - padding: 0.4em; - margin-left: 20px; - margin-right: 0px; - width: 260px; - overflow: hidden; -}*/ - -code { - font-family: Courier, monospace; - white-space: pre; - display: block; - overflow: auto; - border: 1px solid #444; - background: #EEE; - color: #444; - padding: 10px; - margin-top: 20px; -} - -blockquote { - background-color: #f4f8f9; - border-left: 4px solid #dae4ee; - padding: 0.4em; -} - -.icollapse-wrapper, .ccollapse-wrapper { - border: 1px solid #CCC; - padding: 5px; -} - -.hide-comments-outer { - margin-left: 0px; - font-weight: 700; - opacity: 0.6; -} -.hide-comments { - margin-left: 5px; -} - -#panel { - position: absolute; - z-index: 2; - padding: 25px; - margin-right: 10px; - - /*background-color: ivory; - border: 1px solid #444;*/ - - border-radius: 7px; - background-color: #222; - color: #eee; -} - -.heart { - color: #FF0000; - font-size: 100%; - margin-right: 5px; -} - -.btn { - outline: none; - -moz-box-shadow: inset 0px 1px 0px 0px #ffffff; - -webkit-box-shadow: inset 0px 1px 0px 0px #ffffff; - box-shadow: inset 0px 1px 0px 0px #ffffff; - background-color: #ededed; - text-indent: 0; - border: 1px solid #dcdcdc; - display: inline-block; - color: #777777; - padding: 5px 10px; - text-align: center; - border-radius: 8px; -} - -.menu-popup { - width: auto; - border: 2px solid #444444; - background: #FFFFFF; - position: absolute; - margin: 2px 0 0; - display: none; - z-index: 10000; -} - -.menu-popup li a { - display: block; - padding: 2px; -} - -.menu-popup li a:hover { - color: #FFFFFF; - background: #3465A4; - text-decoration: none; -} -ul.menu-popup li.divider { - height: 1px; - margin: 3px 0; - overflow: hidden; - background-color: #2d2d2d; -} - - -/* nav */ -nav { - height: 60px; -/* width: 100%;*/ - width: 320px; - display: block; - margin-top: 0px; - margin-bottom: 0px; - margin-left: auto; - margin-right: auto; -} -nav #site-location { - color: #888a85; - font-size: 0.8em; - position: absolute; -} - -.error-message { - color: #FF0000; - font-size: 1.1em; - border: 1px solid #FF8888; - background-color: #FFEEEE; - padding: 10px; -} - -.info-message { - color: #204a87; - font-size: 1.1em; - border: 1px solid #3465a4; - background-color: #d7e3f1; - padding: 10px; -} - - -nav #banner { -/* display: block;*/ - display: none; - margin-top: 14px; - position: absolute; -} -nav #banner #logo-text a { - display: none; - font-size: 40px; - font-weight: bold; - margin-left: 3px; - color: #000000; - -} -nav #banner #logo-text a:hover { text-decoration: none; } - - -/* ZP REMOVE? nav-commlink */ -.nav-commlink, .nav-login-link { - display: block; - height: 15px; - margin-top: 67px; - margin-right: 2px; - /*padding: 6px 10px;*/ - padding: 6px 3px; - float: left; - bottom: 140px; - border: 1px solid #babdb6; - border-bottom: 0px; - background-color: #aec0d3; - color: #565854; - -moz-border-radius: 3px 3px 0px 0px; - -webkit-border-radius: 3px 3px 0px 0px; - border-radius: 3px 3px 0px 0px; -} - -.nav-commlink.selected { - background-color: #ffffff; - border-bottom: 1px solid #ffffff; - color: #000000 !important; - margin-top: 64px; - padding-top: 6px; - padding-bottom: 8px; -} - -.nav-ajax-left.show { - position: absolute; - font-size: 0.8em; - top: 22px; - right: 2px; - padding: 1px 2px; - border-radius: 4px; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; - background-color: gold !important; -} - - - -nav #nav-link-wrapper .nav-link { - /*border-right: 1px solid #babdb6;*/ -} - -nav .nav-link { - margin-top: 16px; - margin-bottom: 0.2em; - margin-right: 1em; - margin-left: 1em; - background-color: transparent !important; -} - -.nav-button-container { - float: right; - position: relative; -} - -.nav-button-container .nav-ajax-left { -} - -.nav-menu-list { - text-align: center; - text-size: 18px; - line-height: 24px; - - border-left: 1px solid #aaa;/*#444444;*/ - border-right: 1px solid #aaa; - border-top: 1px solid #aaa; - border-bottom: 1px solid #aaa; - - background: #FFFFFF; - - display: none; - list-style: none; - - width: 8em; - position: absolute; - margin: 0px; -/* right: -33px;*/ - padding: 1em 0px; - - -moz-box-shadow: 3px 3px 5px #555; - -webkit-box-shadow: 3px 3px 5px #555; - box-shadow: 3px 3px 5px #555; - - z-index: 100; -} - -#network-menu-list { - width: 9em; - left: 3px; -} - -#contacts-menu-list { - right: -30px; -} - -#system-menu-list { - right: 3px; -} - - -div.main-container { -/* width: 100%;*/ - margin: 0px auto; - display: block; - position: relative; -} - -/*div.main-content-loading { - position: absolute; - top: 200px; - left: 50%; - display: none; -}*/ - - -/* aside */ -/*aside { - display: block; - min-height: 112px; - - width: 250px; - - padding: 1em; - margin: 1em 0px 0px 0px; - - position: absolute; -}*/ - -#dfrn-request-link { - display: block; - color: #FFFFFF; - -webkit-border-radius: 5px ; - -moz-border-radius: 5px; - border-radius: 5px; - padding: 5px; - font-weight: bold; - background: #3465a4 url('friendica-16.png') no-repeat 95% center; -} -#wallmessage-link { - display: block; - color: #FFFFFF; - -webkit-border-radius: 5px ; - -moz-border-radius: 5px; - border-radius: 5px; - padding: 5px; - font-weight: bold; - background-color: #3465a4; -} - -/* section */ -div.section-wrapper { -/* width: 100%;*/ -/* width: 320px; - - margin-left: auto; - margin-right: auto;*/ - margin-left: 0px; - - /*padding-right:2em;*/ - - display: block; - - background-color: #ffffff; - background-image: url(border.jpg); - background-position: top right; - background-repeat: no-repeat; -} - -section { - margin: 0px 0px 0px 0px; - - padding-left: 5px; - padding-right: 5px; - padding-top: 1em; - padding-bottom: 3em; - - background-image: url(border.jpg); - background-position: top left; - background-repeat: no-repeat; - - min-height: 112px; - border-top: 1px solid #babdb6; - overflow-x:hidden; -} - -.tabs { - /*background-image: url(head.jpg); - background-repeat: repeat-x; - background-position: 0px -20px;*/ - border-bottom: 1px solid #babdb6; - padding:0px; -} -.tabs.links-widget { - border: none; -} -.tabs li { margin: 0px 0px 20px 0px; padding-left: 1em; list-style: none; } -.tabs a { - padding: 0.4em 2em; - border: 1px solid #aaa; - border-radius: 8px; - -moz-border-radius: 8px; - -webkit-border-radius: 8px; -} -.tab { - /*display:block;*/ - float:left; - padding-left: 1em; - padding-right: 0.4em; - padding-top: 0.4em; - padding-bottom: 0.4em; - margin-right: 0.5em; - margin-bottom: 0.4em; -} -.tab.active { - font-weight: bold; - -} -#events-tab { - display: none; -} -#tabs-end { - padding-top: 0.3em; - clear: both; -} - -/* Contact-Header for the Network Stream */ -#viewcontact_wrapper-network { - width: 100%; - min-height: 100px; - background-color: #FAFAFA; - border: 1px solid #DDDDDD; - border-radius: 5px; -} -#contact-entry-wrapper-network { - float: none; - width: auto; - height: auto; - padding: 10px; - margin: 0; -} -#contact-entry-accounttype-network { - font-size: 0.9em; -} -#contact-entry-name-network { - font-size: 1.5em; -} - -/* footer */ -footer { - text-align: center; - padding-bottom: 1em; -} - -.birthday-today, .event-today { - font-weight: bold; -} - -.preview { - background: #FFFFC8; -} - -#theme-preview { - margin: 15px 0 15px 15px; -} -#theme-version { - display: block; - font-weight: bold; -} -#theme-credits { - margin-top: 15px; - margin-bottom: 15px; -} - -/* from default */ -#jot-perms-icon, -#profile-location, -#profile-nolocation, -#profile-youtube, -#profile-video, -#profile-audio, -#profile-link, -#profile-title, -#wall-image-upload, -#wall-file-upload, -#profile-upload-wrapper, -#wall-image-upload-div, -#wall-file-upload-div, -.hover, .focus { - cursor: pointer; -} - -#jot-perms-icon { - float: left; -} - -#jot-title, #jot-category { - border: 0px; - margin: 0px; - height: 20px; - width: 270px; - margin-bottom: 5px; - font-weight: bold; - border: 1px solid #ffffff; -} - -/*#jot-title::-webkit-input-placeholder{font-weight: normal;} -#jot-category::-webkit-input-placeholder{font-weight: normal;} -#jot-title:-moz-placeholder{font-weight: normal;} -#jot-category:-moz-placeholder{font-weight: normal;}*/ - - -#jot-title:hover, -#jot-title:focus, -#jot-category:hover, -#jot-category:focus { - border: 1px solid #cccccc; -} - -.jothidden { display:none; } - - -.fakelink, .fakelink:visited, .fakelink:link { - color: #3465a4; - text-decoration: none; - cursor: pointer; - margin-top: 15px; - margin-bottom: 15px; -} -.lockview { - cursor: pointer; -} - -#group-sidebar { - margin-bottom: 10px; -} - -.group-selected, .nets-selected, .fileas-selected, .categories-selected, .forum-selected { - padding: 3px; - -moz-border-radius: 3px; - -webkit-border-radius: 3px; - border-radius: 3px; - border: 1px solid #CCCCCC; - background: #F8F8F8; - font-weight: bold; -} - -.settings-widget .selected { -/* padding: 3px; - -moz-border-radius: 3px; - -webkit-border-radius: 3px; - border-radius: 3px; - border: 1px solid #CCCCCC;*/ - background: #F8F8F8; - font-weight: bold; -} - -.fakelink:hover { - color: #3465a4; - text-decoration: underline; - cursor: pointer; -} -.smalltext { - font-size: 0.7em; -} -#sysmsg { - /*width: 600px;*/ - margin-bottom: 10px; -} - -#register-fill-ext { - margin-bottom: 25px; -} - -#label-register-name, #label-register-email, #label-register-nickname, #label-register-openid { - float: left; - width: 350px; - margin-top: 10px; -} - -#register-name, #register-email, #register-nickname { - float: left; - margin-top: 10px; - width: 150px; -} - -#register-openid { - float: left; - margin-top: 10px; - width: 130px; -} - -#register-name-end, #register-email-end, #register-nickname-end, #register-submit-end, #register-openid-end { - clear: both; -} - -#register-nickname-desc { - margin-top: 30px; - width: 650px; -} -#register-sitename { - float: left; - margin-top: 10px; -} - -#register-submit-button { - margin-top: 10px; -} - -/* -#login_standard { - width: 210px; - float: left; -} -#login_openid { - width: 210px; - margin-left: 250px; -} - -#login_standard input, -#login_openid input { - width: 180px; -} - -#login-extra-links { - clear: both; -} - -#register-link, #lost-password-link { - float: left; - font-size: 80%; - margin-right: 15px; -} - -#login-name-end, #login-password-end, #login-extra-end, #login-submit-end { - height: 50px; -} - -#login-submit-button { - margin-top: 10px; - margin-left: 200px; -}*/ - - -input#dfrn-url { - float: left; - background: url(friendica-16.png) no-repeat; - background-position: 2px center; - font-size: 17px; - padding-left: 21px; - height: 21px; - background-color: #FFFFFF; - color: #000000; - margin-bottom: 20px; - max-width: 90%; -} - -#dfrn-url-label { - float: left; - width: 250px; -} - -#dfrn-request-url-end { - clear: both; -} - -#knowyouyes, #knowyouno { - float: left; -} - -#dfrn-request-knowyou-yes-wrapper, #dfrn-request-knowyou-no-wrapper { - - float: none; -} -#dfrn-request-knowyou-yes-label, #dfrn-request-knowyou-no-label { - float: left; - width: 75px; - margin-left: 50px; - margin-bottom: 7px; -} -#dfrn-request-knowyou-break, #dfrn-request-knowyou-end { - clear: both; - -} - -#dfrn-request-message-wrapper { - margin-bottom: 50px; -} -#dfrn-request-message-wrapper textarea { - max-width: 90%; -} -#dfrn-request-submit-wrapper { - clear: both; - /*margin-left: 50px;*/ -} -#dfrn-request-submit-wrapper input { - font-size: 18px; - padding: 5px 10px; -} - -#dfrn-request-info-wrapper { - margin-left: 50px; -} - - - -#cropimage-wrapper, #cropimage-preview-wrapper { - float: left; - padding: 10px; -} -.imgCrop { - max-width: 280px; -} -#crop-image-form { - margin-top: 30px; - clear: both; -} - -.intro-wrapper { - margin-top: 20px; -} - -.intro-fullname { - font-size: 1.1em; - font-weight: bold; - -} -.intro-desc { - margin-bottom: 20px; - font-weight: bold; -} - -.intro-note { - padding: 10px; -} - -.intro-end { - padding: 30px; -} - -.intro-form { - float: left; -} -.intro-approve-form { - clear: both; -} -.intro-approve-as-friend-end { - clear: both; -} -.intro-submit-approve, .intro-submit-ignore { - margin-right: 20px; -} -.intro-submit-approve { - margin-top: 15px; -} - -.intro-approve-as-friend-label, .intro-approve-as-fan-label { - float: left; - width: 100px; - margin-left: 20px; -} -.intro-approve-as-friend, .intro-approve-as-fan { - float: left; -} -.intro-form-end { - clear: both; -} -.intro-approve-as-friend-desc { - margin-top: 15px; -} -.intro-approve-as-end { - clear: both; - margin-bottom: 10px; -} - -.intro-end { - clear: both; - margin-bottom: 30px; -} -.aprofile dt { - font-weight: bold; -} -#page-profile .title { - font-weight: bold; -} -#profile-vcard-break { - clear: both; -} -#profile-extra-links { - clear: both; - margin-top: 10px; -} - -#profile-extra-links ul { - list-style-type: none; - padding: 0px; -} - - -#profile-extra-links li { - margin-top: 5px; - max-width: 300px; - margin-left: auto; - margin-right: auto; -} - -#profile-edit-links ul { - list-style-type: none; -} - -#profile-edit-links li { - margin-top: 10px; -} -.profile-edit-side-div { - float: right; -} -.profile-edit-side-link { - opacity: 0.3; - filter:alpha(opacity=30); -} -.profile-edit-side-link:hover { - opacity: 1.0; - filter:alpha(opacity=100); -} - -.view-contact-wrapper { - margin-top: 20px; - float: left; - margin-left: 20px; - width: 180px; -} - -.contact-wrapper { - float: left; - width: 150px; - height: 150px; - overflow: auto; -} - -#view-contact-end { - clear: both; -} - - -#viewcontacts { - margin-top: 15px; -} -#profile-edit-default-desc { - color: #FF0000; - border: 1px solid #FF8888; - background-color: #FFEEEE; - padding: 7px; -} - -#profile-edit-clone-link-wrapper { - float: left; - margin-left: 50px; - margin-bottom: 20px; - width: 300px; -} - - -#profile-edit-links-end { - clear: both; - margin-bottom: 15px; -} - -.profile-listing-photo { - border: none; -} - -.profile-edit-submit-wrapper { - margin-top: 20px; - margin-bottom: 20px; -} - -#profile-photo-link-select-wrapper { - margin-top: 2em; -} - -#profile-photo-submit-wrapper { - margin-top: 10px; -} - -#profile-photo-wrapper img { - width:175px; - height:175px; - padding: 12px; -} - -#profile-edit-profile-name-label, -#profile-edit-name-label, -#profile-edit-pdesc-label, -#profile-edit-gender-label, -#profile-edit-dob-label, -#profile-edit-address-label, -#profile-edit-locality-label, -#profile-edit-region-label, -#profile-edit-postal-code-label, -#profile-edit-country-name-label, -#profile-edit-marital-label, -#profile-edit-sexual-label, -#profile-edit-politic-label, -#profile-edit-religion-label, -#profile-edit-pubkeywords-label, -#profile-edit-prvkeywords-label, -#profile-edit-homepage-label, -#profile-edit-hometown-label { - font-weight: 700; - float: left; - width: 175px; -} - -#profile-edit-profile-name, -#profile-edit-name, -#profile-edit-pdesc, -#gender-select, -#profile-edit-dob, -#profile-edit-address, -#profile-edit-locality, -#profile-edit-region, -#profile-edit-postal-code, -#profile-edit-country-name, -#marital-select, -#sexual-select, -#profile-edit-politic, -#profile-edit-religion, -#profile-edit-pubkeywords, -#profile-edit-prvkeywords, -#profile-in-dir-yes, -#profile-in-dir-no, -#profile-in-netdir-yes, -#profile-in-netdir-no, -#hide-wall-yes, -#hide-wall-no, -#hide-friends-yes, -#hide-friends-no { - float: left; - margin-bottom: 20px; - margin-left: 20px; -} -#profile-edit-country-name { - max-width: 260px; -} -#profile-edit-pubkeywords, -#profile-edit-prvkeywords { - margin-bottom: 5px; -} -#settings-normal, -#settings-soapbox, -#settings-freelove, -#settings-community { - float: left; -} -#settings-notifications label { - margin-left: 20px; -} -#settings-notify-desc, #settings-activity-desc { - font-weight: bold; - margin-bottom: 15px; -} -#settings-pagetype-desc { - color: #666666; - margin-bottom: 15px; -} - -#profile-in-dir-yes-label, -#profile-in-dir-no-label, -#profile-in-netdir-yes-label, -#profile-in-netdir-no-label, -#hide-wall-yes-label, -#hide-wall-no-label, -#hide-friends-yes-label, -#hide-friends-no-label { - margin-left: 125px; - float: left; - width: 50px; -} - - -#profile-edit-howlong-label, -#profile-edit-with-label { - display: block; - font-style: italic; - width: 175px; - margin-left: 0px; -} -#profile-edit-howlong, -#profile-edit-with { - margin-left: 20px; - margin-bottom: 20px; -} - - - -#profile-publish-yes-reg, -#profile-publish-no-reg { - float: left; - margin-bottom: 10px; -} - -#profile-publish-yes-label-reg, -#profile-publish-no-label-reg { - margin-left: 350px; - float: left; - width: 50px; -} - -#profile-publish-break-reg, -#profile-publish-end-reg { - clear: both; -} - - -#profile-edit-pdesc-desc, -#profile-edit-pubkeywords-desc, -#profile-edit-prvkeywords-desc { - float: left; - color: #777; - margin-left: 20px; - margin-bottom: 20px; -} -#profile-edit-prvkeywords-desc { - margin-bottom: 0px; -} - -#profile-edit-homepage, #profile-edit-hometown { - float: left; - margin-bottom: 25px; - margin-left: 20px; -} -#profile-edit-hometown { - margin-bottom: 5px; -} -#settings-normal-label, -#settings-soapbox-label, -#settings-community-label, -#settings-freelove-label { - float: left; - width: 200px; -} -#settings-normal-desc, -#settings-soapbox-desc, -#settings-community-desc, -#settings-freelove-desc { - /*float: left; - margin-left: 75px;*/ - clear: left; - color: #666666; - display: block; - margin-bottom: 20px -} - -#profile-edit-profile-name-end, -#profile-edit-name-end, -#profile-edit-pdesc-end, -#profile-edit-gender-end, -#profile-edit-dob-end, -#profile-edit-address-end, -#profile-edit-locality-end, -#profile-edit-region-end, -#profile-edit-postal-code-end, -#profile-edit-country-name-end, -#profile-edit-marital-end, -#profile-edit-sexual-end, -#profile-edit-politic-end, -#profile-edit-religion-end, -#profile-edit-pubkeywords-end, -#profile-edit-prvkeywords-end, -#profile-edit-homepage-end, -#profile-edit-hometown-end, -#profile-in-dir-break, -#profile-in-dir-end, -#profile-in-netdir-break, -#profile-in-netdir-end, -#hide-wall-break, -#hide-wall-end, -#hide-friends-break, -#hide-friends-end, -#settings-normal-break, -#settings-soapbox-break, -#settings-community-break, -#settings-freelove-break { - clear: both; -} -#profile-edit-marital-wrapper, #profile-edit-address-wrapper { - margin-top: 50px; -} -#profile-edit-marital-end { - margin-bottom: 20px; -} - -#id_theme, -#id_mobile_theme { - width: 280px; -} -/*.settings-widget ul { - list-style-type: none; - padding: 0px; -} - -.settings-widget li { - margin-left: 24px; - margin-bottom: 8px; -}*/ - - -#gender-select, #marital-select, #sexual-select { - width: 220px; -} - -#profile-edit-profile-name-wrapper .required { - color: #FF0000; - float: left; -} - -#contacts-search-submit { - font-size: 18px; - padding: 5px 10px; -} - -#contacts-display-wrapper { - padding-left: 35px; -} - -#contacts-main { - margin-top: 20px; - margin-bottom: 20px; -} - -.contact-entry-wrapper { - float: left; -/* width: 120px; - height: 120px;*/ - padding-left: 15px; - padding-right: 15px; - max-width: 262px; - height: 90px; - margin: 0 10px 10px 0px; -} -.contact-entry-wrapper .contact-entry-photo-wrapper { - float: left; - margin-right: 10px; -} -#contacts-search-end { - margin-bottom: 10px; -} - -.contact-entry-direction-icon { - margin-top: 24px; - margin-right: 2px; -} - -.contact-entry-photo img { - border: none; - width: 80px; - height: 80px; -} -.contact-entry-photo-end { - clear: both; -} -.contact-entry-desc { - overflow: hidden; -} -.contact-entry-name { - margin-left: 0px; - margin-right: 10px; - padding-bottom: 5px; - width: 120px; - font-weight: 600; - overflow: hidden; -} -.contact-entry-details { - font-style: italic; - font-size: 10px; - font-weight: 500; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} -.contact-entry-network { - font-size: 10px; - font-weight: 500; -} -.contact-entry-edit-links { - margin-top: 6px; - margin-left: 10px; - width: 16px; -} -.contact-entry-nav-wrapper { - float: left; - margin-left: 10px; -} - -.contact-entry-edit-links img { - border: none; - margin-right: 15px; -} -.contact-entry-photo { - float: left; - position: relative; -} -.contact-entry-end { - clear: both; -} - -#fsuggest-desc, #fsuggest-submit-wrapper { - margin-top: 15px; - margin-bottom: 15px; -} - -#network-star-link{ - margin-top: 10px; -} -.network-star { - float: left; - margin-right: 5px; -} -#network-bmark-link { - margin-top: 10px; -} - -.toplevel_item { - margin-bottom: 60px; -} - -.wall-item-content-wrapper { - padding-top: 1em; -/* padding-left: 0.25em; - padding-right: 0.25em;*/ - - border-top: 2px solid #AAAAAA; - position: relative; -} - -.wall-item-content-wrapper.comment { - margin-top: 15px; - margin-left: 5px; - margin-right: 5px; - - padding-top: 5px; - padding-left: 5px; - padding-right: 5px; - - border: 1px solid #AAAAAA; - border-radius: 10px; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; -/* background: #EEEEEE;*/ -} - -.wall-item-response { - clear: both; - font-style: italic; - margin-left: 0px; - opacity: 0.6; -} - -.wall-item-response.comment { - margin-left: 5px; -} - -.wall-item-info { - display: block; - float: left; - width:126px; - margin-right:10px; - margin-bottom:10px; -} -.comment .wall-item-info { - width: 86px; -} - -.wall-item-photo-menu-button { - display: block; - position: absolute; - background-image: url("photo-menu.jpg"); - background-position: top left; - background-repeat: no-repeat; - margin: 0px; padding: 0px; - width: 16px; - height: 16px; - top: 94px; left:0px; - overflow: hidden; - text-indent: 40px; - display: none; - -} -.wall-item-photo-menu { - width: auto; - border: 2px solid #444444; - background: #FFFFFF; - position: absolute; - left: 0px; top:110px; - display: none; -/* z-index: 10000;*/ -} -.wall-item-photo-menu { margin:0px; padding: 0px; list-style: none } -.wall-item-photo-menu li a { display: block; padding: 2px; } -.wall-item-photo-menu li a:hover { color: #FFFFFF; background: #3465A4; text-decoration: none; } - - -.comment .wall-item-photo-menu-button { top: 64px;} -.comment .wall-item-photo-menu { top: 80px; } - -.wallwall .wwto { - left: 50px; - margin: 0; - position: absolute; - top: 67px; - width: 30px -} -.wallwall .wwto img { - width: 30px !important; - height: 30px !important; -} - -.wallwall /*.wall-item-photo-end*/ { - clear: both; -} - -.wall-item-arrowphoto-wrapper { - position: absolute; - left: 75px; - top: 67px; -/* z-index: 100;*/ -} -.wall-item-lock { - margin-top: 1em; - left: 105px; - position: absolute; - top: 1px; - width: 32px; -} -.comment .wall-item-lock { - margin-top: 0px; - left: 65px; -} - -.wall-item-ago { - color: #888888; - font-size: 0.8em; -} - -.wall-item-location { - overflow: hidden; - /* add ellipsis on text overflow */ - /* this work on safari, opera, ie, chrome. */ - /* firefox users have to wait support or we */ - /* can use a jquery addon http://bit.ly/zJskg */ - text-overflow: ellipsis; - -o-text-overflow: ellipsis; - width: 100%; -} - -.wall-item-like-buttons { - float: left; - margin-right: 3px; -} - -.like-rotator { - margin-left: 5px; -} - -.wall-item-like-buttons > a, -.wall-item-like-buttons > img { - float: left; -} - -.wall-item-like-buttons img { - cursor: pointer; -} - -.wall-item-share-buttons { - margin-left: 10px; - margin-right: 10px; -} - -.editpost, -.star-item, -.tag-item, -.filer-item, -.event-item { - margin-left: 10px; - float: left; -} - -.wall-item-links-wrapper { - float: left; -} - -.wall-item-delete-wrapper { - float: right; -} - -/*.wall-item-delete-end { - clear: both; -}*/ - -.wall-item-delete-icon { - border: none; -} - - -/*.wall-item-wrapper-end { - clear: both; -}*/ -.wall-item-name-link { - font-weight: bold; - text-decoration: none; - color: #3172BD; -} -.wall-item-photo { - border: none; - border-radius: 7px; -} -.comment .wall-item-photo { - width: 50px !important; - height: 50px !important; -} -.wall-item-content { -/* float: left; - max-width: 100%*/ -/* padding-right: 1em; - max-height: 500px; - overflow: auto;*/ - padding-left:0.25em; - padding-right:0.25em; - clear: left; /* I hate this, but it's the only way to keep the text from bunching to the right on the Android browser */ -} -.comment .wall-item-content { - padding-left:0.5em; - padding-right:0.5em; -} - -.wall-item-title { - /*float: left;*/ - font-weight: bold; - font-size: 1.6em; - /*width: 450px;*/ -} - -/*.wall-item-title-end { - clear: both; -}*/ - -.wall-item-body { - text-align: justify; - float: left; - max-width: 100%; - overflow: hidden; - margin-top: 10px; - line-height: 23px; -} - -.wall-item-body img { - display: block; - margin-top: 2px; - margin-right: auto; - margin-left: auto; - /*max-width: 290px;*/ - max-width: 100%; - border-radius: 7px; - -moz-border-radius: 7px; - -webkit-border-radius: 7px; -} - -/*.comment .wall-item-body img { - max-width: 100%; -}*/ - -.wall-item-body img.smiley { - display: inline; - margin: auto; - border-radius: 0; - -webkit-border-radius: 0; -} - -.wall-item-body blockquote { - margin-left: 0px; - margin-right: 0px; -} - -.comment .wall-item-body ul { - padding-left: 1.5em; -} - -.wall-item-body iframe { - display: block; - clear: both; - margin-top: 1.5em; - margin-bottom: 1.5em; -} - -.wall-item-body code { - overflow: hidden; -} - -.showmore { - display: block; - clear: both; - text-align: center; - outline: 0; - border-top: 1px dotted #888; -} - -.wall-item-tools { - clear: both; -/* background-image: url("head.jpg"); - background-position: 0 -20px; - background-repeat: repeat-x;*/ - padding: 5px 5px 0px; - height: 32px; -} -.wall-item-tools a { - border-radius: 8px; - padding: 2px; - background-position: center; -} -.wall-item-tools a.active { - background-color: rgba(59, 101, 164, 0.5); -} - -.wall-item-author { -/* margin-top: 10px;*/ - margin-top: 0px; -} - -.comment .wall-item-tools { -/* background:none;*/ -/* background-image: url("head.jpg"); - background-position: 0 -20px; - background-repeat: repeat-x;*/ - border-bottom-left-radius: 10px; - border-bottom-right-radius: 10px; -} - - -.comment-edit-wrapper { - margin-top: 15px; - background: #f3f3f3; - margin-left: 50px; -} - -.comment-wwedit-wrapper { - display: block; - margin-top: 15px; - background: #f3f3f3; - margin-left: 5px; - margin-right: 5px; - border-radius: 10px; -} - -.comment-wwedit-wrapper.comment { - margin-left: 40px; - margin-right: 40px; - border-radius: 10px; -} - - -.comment-edit-form { - padding-left: 1em; - padding-right: 1.5em; -} - -.comment-edit-photo { - margin-top: 15px; - /*margin-left: 10px; - margin-bottom: 10px;*/ - width: 25px; - float: left; -} -.comment-edit-photo img { - width: 25px; -} -.comment-edit-text-empty, .comment-edit-text-full { -/* float: left;*/ - -moz-border-radius: 3px; - -webkit-border-radius: 3px; - border-radius: 3px; - border: 1px solid #cccccc; - padding: 3px 1px 1px 3px; -} - -.comment-edit-text-empty { - color: gray; - height: 30px; - width: 175px; -/* overflow: auto;*/ - margin-top: 40px; - margin-bottom: 10px; - margin-left: 20px; -} - -.comment-edit-text-full { - color: black; - height: 150px; -/* width: 350px; - overflow: auto; - width: 250px; - margin-top: 15px; - margin-left: 20px;*/ - width: 100%; - margin-top: 1.5em; -} - -.comment .comment-edit-text-empty { - width: 120px; -} -.comment .comment-edit-text-full { - margin-left: 10px; - width: 210px; -} - - -.comment-edit-text-end { - clear: both; -} - -.comment-edit-submit { - font-size: 18px; - padding: 5px 10px; - margin: 10px 0px 10px 0px; -} - -#profile-jot-wrapper { - padding-left: 1em; - padding-right: 1em; -} - -.shared_header { - border-top: 1px solid #aaa; - color: #999; - - height: 42px; /* 32 px for the image plus 10 px for the margin around the image */ - padding-top: 0.5em; - margin-top: 1em; - margin-bottom: 1em; - -} -.shared_header img { - float: left; - - margin: auto 1em auto auto; - padding: 0; - - box-shadow: none; - -moz-box-shadow: none; - -webkit-box-shadow: none; -} - -#profile-jot-plugin-wrapper, -#profile-jot-submit-wrapper { - margin-top: 15px; -} - -#profile-jot-submit { - float: left; - font-size: 18px; - padding: 5px 8px; -} -#profile-upload-wrapper { - float: left; - margin-left: 30px; -} -#profile-attach-wrapper { - float: left; - margin-left: 15px; -} -#profile-rotator { - float: left; - margin-left: 30px; -} -#profile-link-wrapper { - float: left; - margin-left: 15px; -} -#profile-youtube-wrapper { - float: left; - margin-left: 15px; -} -#profile-video-wrapper { - float: left; - margin-left: 15px; -} -#profile-audio-wrapper { - float: left; - margin-left: 15px; -} -#profile-location-wrapper { - float: left; - margin-left: 15px; -} -#jot-preview-link { - display: none; - float: left; - margin-left: 45px; - margin-top: 0px !important; -} - - -#profile-nolocation-wrapper { - float: left; - margin-left: 15px; -} -#profile-title-wrapper { - float: left; - margin-left: 15px; -} - -#profile-jot-perms { - float: left; - margin-left: 40px; - font-weight: bold; - font-size: 1.2em; -} - - -#profile-jot-perms-end { - /*clear: left;*/ - height: 30px; -} - -#profile-jot-plugin-end{ - clear: both; -} -input#profile-jot-email { - display: block; -} -.profile-jot-net { - float: left; - margin-right: 10px; - margin-top: 5px; - margin-bottom: 5px; -} - -#profile-jot-networks-end { - clear: both; -} - -.profile-jot-box { - margin-top: 50px; -} -.profile-edit-textarea { - margin-left: 20px; -} - -#profile-jot-end { - /*clear: both;*/ - margin-bottom: 30px; -} -#about-jot-submit-wrapper { - margin-top: 15px; -} -#about-jot-end { - margin-bottom: 30px; -} -#contacts-main { - margin-bottom: 30px; -} - -#profile-listing-desc { - margin-left: 30px; -} - -#profile-listing-new-link-wrapper { - margin-left: 30px; - margin-bottom: 30px; -} -.profile-listing-photo-wrapper { - float: left; -} - -.profile-listing-edit-buttons-wrapper { - clear: both; -} -.profile-listing-photo-edit-link { - float: left; - width: 125px; -} -.profile-listing-end { - clear: both; -} -.profile-listing-edit-buttons-wrapper img{ - border: none; - margin-right: 20px; -} -.profile-listing { - float: left; - margin-left: 30px; - margin-top: 25px; -} -.profile-listing-visible { - margin-left: 100px; -} -.profile-listing-name { - float: left; - margin-left: 12px; - margin-top: 10px; - color: #3172BD; - font-weight: bold; - width: 200px; - -} -.fortune { - margin-top: 50px; - color: #4444FF; - font-weight: bold; - margin-bottom: 20px; -} - - -.directory-end { - clear: both; -} -.directory-name { - text-align: center; -} -.directory-photo { - margin-left: 15px; -} -.directory-details { - font-size: 0.7em; - text-align: center; - margin-left: 5px; - margin-right: 5px; -} -.directory-item { - float: left; -/* width: 225px; - height: 260px;*/ - padding-left: 15px; - width: 130px; - height: 235px; - overflow: auto; -} - -#directory-search-wrapper { - margin-top: 20px; - margin-right: 20px; - margin-bottom: 50px; -} - -#directory-search-end { -} - -.directory-photo-img { - width: 125px; - border: none; -} - - -.pager { - margin-top: 30px; - margin-right: auto; - margin-left: auto; - - padding-top: 10px; - padding-bottom: 10px; - padding-left: 10px; - text-align: center; -/* line-height: 2.75em;*/ -} - -.pager a { - font-size: 1.5em; - padding: 0.2em 1em; - border: 1px solid #aaa; - border-radius: 10px; - -moz-border-radius: 10px; - -webkit-border-radius: 10px; -} - -.pager .disabled { - display: none; -} - -.pager_first, -.pager_last, -.pager_prev, -.pager_next, -.pager_n { -/* float: left; - border: 1px solid black; - border-radius: 7px; - background: #EEE; - text-align: center; - width: 50px; - margin-right: 5px; - margin-bottom: 10px;*/ -/* float: left;*/ -/* margin-right: 15px; - margin-left: 15px;*/ -} - -.pager_first, -.pager_last, -.pager_n { - display: none; -} - -/*.pager_first a, -.pager_last a, -.pager_prev a, -.pager_next a { - padding-top: 5px; - padding-bottom: 5px; - padding-left: 25px; - padding-right: 30px; - - border: 2px solid #AAAAAA; - border-radius: 10px; - -moz-border-radius: 10px; - -webkit-border-radius: 10px; - font-size: 1.25em; - text-align: center; - text-decoration: none; -} -.pager_n a { - padding-top: 2px; - padding-bottom: 2px; - padding-left: 9px; - padding-right: 18px; - text-decoration: none; -}*/ - -.pager_prev a, -.pager_next a, -.scroll_loader_text { - font-size: 1.5em; - padding: 0.2em 1em; - border: 1px solid #aaa; - border-radius: 10px; - -moz-border-radius: 10px; - -webkit-border-radius: 10px; -} - -.pager_current { - display: none; - float: left; - border: 1px solid black; - border-radius: 7px; - -moz-border-radius: 7px; - -webkit-border-radius: 7px; - background: #FFCCCC; - font-size: 1.25em; - text-align: center; - width: 50px; - margin-right: 5px; - margin-bottom: 10px; -} - - -#advanced-profile-name-wrapper, -#advanced-profile-gender-wrapper, -#advanced-profile-dob-wrapper, -#advanced-profile-age-wrapper, - -#advanced-profile-marital-wrapper, -#advanced-profile-sexual-wrapper, -#advanced-profile-homepage-wrapper, -#advanced-profile-politic-wrapper, -#advanced-profile-religion-wrapper, -#advanced-profile-about-wrapper, -#advanced-profile-interest-wrapper, -#advanced-profile-contact-wrapper, -#advanced-profile-music-wrapper, -#advanced-profile-book-wrapper, -#advanced-profile-tv-wrapper, -#advanced-profile-film-wrapper, -#advanced-profile-romance-wrapper, -#advanced-profile-work-wrapper, -#advanced-profile-education-wrapper { - margin-top: 20px; -} - -#advanced-profile-name-text, -#advanced-profile-gender-text, -#advanced-profile-dob-text, -#advanced-profile-age-text, -#advanced-profile-marital-text, -#advanced-profile-sexual-text, -#advanced-profile-homepage-text, -#advanced-profile-politic-text, -#advanced-profile-religion-text, -#advanced-profile-about-text, -#advanced-profile-interest-text, -#advanced-profile-contact-text, -#advanced-profile-music-text, -#advanced-profile-book-text, -#advanced-profile-tv-text, -#advanced-profile-film-text, -#advanced-profile-romance-text, -#advanced-profile-work-text, -#advanced-profile-education-text { - width: 300px; - float: left; -} - -#advanced-profile-name-end, -#advanced-profile-gender-end, -#advanced-profile-dob-end, -#advanced-profile-age-end, -#advanced-profile-marital-end, -#advanced-profile-sexual-end, -#advanced-profile-homepage-end, -#advanced-profile-politic-end, -#advanced-profile-religion-end { - height: 10px; -} - -#advanced-profile-about-end, -#advanced-profile-interest-end, -#advanced-profile-contact-end, -#advanced-profile-music-end, -#advanced-profile-book-end, -#advanced-profile-tv-end, -#advanced-profile-film-end, -#advanced-profile-romance-end, -#advanced-profile-work-end, -#advanced-profile-education-end { - - -} - -#advanced-profile-name, -#advanced-profile-gender, -#advanced-profile-dob, -#advanced-profile-age, -#advanced-profile-marital, -#advanced-profile-sexual, -#advanced-profile-homepage, -#advanced-profile-politic, -#advanced-profile-religion { - float: left; - -} - - -#advanced-profile-about, -#advanced-profile-interest, -#advanced-profile-contact, -#advanced-profile-music, -#advanced-profile-book, -#advanced-profile-tv, -#advanced-profile-film, -#advanced-profile-romance, -#advanced-profile-work, -#advanced-profile-education { - margin-top: 10px; - margin-left: 50px; - margin-right: 20px; - padding: 10px; - border: 1px solid #CCCCCC; -} - -#advanced-profile-with { - float: left; - margin-left: 15px; -} - -#contact-edit-status-wrapper { - padding: 10px; - border: 1px solid #aaa; - border-radius: 8px; -} - -#contact-edit-contact-status { - font-weight: bold; -} -#contact-edit-actions { - float: right; - display: inline-block; -} -#contact-edit-wrapper { - margin-top: 10px; -} - -#contact-edit-banner-name { - font-size: 1.4em; - font-weight: bold; -} - -#contact-edit-poll-wrapper { - margin-top: 15px; -} - -#contact-edit-last-update-text { - margin-top: 30px; -} - -#contact-edit-poll-text { - margin-top: 15px; - margin-bottom: 0px; -} - -#contact-edit-update-now { - margin-top: 15px; -} - -#contact-edit-links{ - clear: both; -} - -#contact-edit-links ul { - list-style: none; - list-style-type: none; - margin-left: 0px; - padding-left: 0px; -} - -#contact-edit-links li { - margin-top: 5px; -} - -#contact-edit-drop-link { - float: right; - margin-right: 10px; -} - -#contact-edit-nav-end { - clear: both; -} - -#contact-edit-wrapper { - width: 100%; -} - -#update_now_link { - float: left; - clear: left; - margin-bottom: 20px; -} - -#label_id_hidden, #id_hidden { - margin-top: 30px; -} -#help_id_hidden { - margin-top: 30px; -} - -#contact-edit-info-wrapper, #contact-edit-info { - width: 90%; -} - -#contact-edit-end { - clear: both; - margin-top: 15px; -} - -#contact-profile-selector { - width: 175px; - margin-left: 0px; -} - -.contact-edit-submit { - clear: left; - display: block; - - margin-top: 10px; - margin-bottom: 45px; - padding: 0.2em 0.5em; - font-size: 18px; -} - - -.contact-photo-menu-button { -/* position: absolute; - background-image: url("photo-menu.jpg"); - background-position: top left; - background-repeat: no-repeat; - margin: 0px; padding: 0px; - width: 16px; - height: 16px; - top: 64px; left:0px; - overflow: hidden; - text-indent: 40px; - display: none;*/ - -} -.contact-photo-menu { - width: 130px; - border: 1px solid #AAA; - background: #FFFFFF; - position: absolute; - /*left: -30px;*/ top: 80px; - display: none; - z-index: 101; - -moz-box-shadow: 3px 3px 5px #555; - -webkit-box-shadow: 3px 3px 5px #555; - box-shadow: 3px 3px 5px #555; -} -.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none } -.contact-photo-menu li a { display: block; padding: 2px; } -.contact-photo-menu li a:hover { color: #FFFFFF; background: #3465A4; text-decoration: none; } - - -#block-message, #ignore-message, #archive-message, #lost-contact-message { - color: #FF0000; -} - -#profile-edit-insecure { - margin-top: 20px; - color: #FF0000; - font-size: 1.1em; - border: 1px solid #FF8888; - background-color: #FFEEEE; - padding-left: 5px; - /*: 3px 3px 3px 5px; */ - width: 587px; -} - -.video-top-wrapper { - display: inline-block; - vertical-align: top; - margin-top: 15px; - margin-right: 15px; - margin-left: 15px; - margin-bottom: 15px; -} - -#profile-jot-desc { - /*float: left;*/ - width: 100%; - color: #FF0000; - margin-top: 10px; - margin-bottom: 10px; -} - -#profile-jot-text { - width: 100%; - height: 20px; - color:#cccccc; - border: 1px solid #cccccc; - padding: 3px 0px 0px 5px; - -moz-border-radius: 3px; - -webkit-border-radius: 3px; - border-radius: 3px; -} - - -/** acl **/ -#photo-edit-perms-select, -#photos-upload-permissions-wrapper, -#profile-jot-acl-wrapper{ - /*display:block!important;*/ -} - -#photos-usage-message { - margin-bottom: 15px; -} - -#profile-jot-acl-wrapper { - /*width:270px;*/ - height: auto; - overflow: visible; - margin-top: 1em; - display: inline-block; -} - -#profile-jot-acl-wrapper, -#photos-upload-permissions-wrapper, -#photo-edit-perms-select { - padding: 0.7em; - border: 1px solid #888; - border-radius: 10px; -} - -#acl-wrapper { - /*width: 270px; - float:left;*/ - text-align: left; - clear: both; -} -#acl-search { - display: none; - float:right; - background: #ffffff url("../../../images/search_18.png") no-repeat right center; - padding-right:20px; -} -#acl-showall { - float: left; - display: block; - width: auto; - height: 18px; - background-color: #cccccc; - background-image: url("../../../images/show_all_off.png"); - background-position: 7px 7px; - background-repeat: no-repeat; - padding: 7px 15px 7px 30px; - -webkit-border-radius: 5px ; - -moz-border-radius: 5px; - border-radius: 5px; - color: #999999; - margin-bottom: 0.3em; -} -#acl-showall.selected { - color: #000000; - background-color: #ff9900; - background-image: url("../../../images/show_all_on.png"); -} - -#acl-list { -/* height: 210px;*/ - border: 1px solid #cccccc; - clear: both; - margin-top: 30px; - overflow: visible; -} -#acl-list-content { - -} -.acl-list-item { - display: inline-block; - width: 190px; - height: 30px; - border: 1px solid #cccccc; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; - border-radius: 4px; - margin-top: 5px; - margin-bottom: 5px; - margin-right: 2px; - margin-left: 2px; - padding-left: 5px; - /*float: left;*/ -} -.acl-list-item img{ - width:22px; - height: 22px; - float: left; - margin: 4px; -} -.acl-list-item p { height: 12px; font-size: 10px; margin: 0px; padding: 2px 0px 1px; overflow: hidden;} -.acl-list-item a { - font-size: 10px; - display: block; - width: 55px; - height: 10px; - float: left; - color: rgb(153, 153, 153); - background-color: rgb(204, 204, 204); - background-position: 3px 3px; - background-repeat: no-repeat; - margin-right: 5px; - - -webkit-border-radius: 2px ; - -moz-border-radius: 2px; - border-radius: 2px 2px 2px 2px; - - padding: 0px 5px 3px 15px; -} -#acl-wrapper a:hover { - text-decoration: none; - color:#000000; -} -.acl-button-show { background-image: url("../../../images/show_off.png"); } -.acl-button-hide { background-image: url("../../../images/hide_off.png"); } - -.acl-button-show.selected { - color: #000000; - background-color: #9ade00; - background-image: url("../../../images/show_on.png"); -} -.acl-button-hide.selected { - color: #000000; - background-color: #ff4141; - background-image: url("../../../images/hide_on.png"); -} -.acl-list-item.groupshow { border-color: #9ade00; } -.acl-list-item.grouphide { border-color: #ff4141; } -/** /acl **/ - - -#group-new-submit-wrapper { - margin-top: 30px; -} - -#group-edit-name-label { - float: left; - width: 175px; - margin-top: 20px; - margin-bottom: 20px; -} - -#group-edit-name { - float: left; - width: 225px; - margin-top: 20px; - margin-bottom: 20px; -} - -#group-edit-name-wrapper { - - - -} - - -#group_members_select_label { - display: block; - float: left; - width: 175px; -} - -.group_members_select { - float: left; - width: 230px; - overflow: auto; -} - -#group_members_select_end { - clear: both; -} -#group-edit-name-end { - clear: both; -} - -#message-new { - font-size: 24px; -} - -#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label { - margin-bottom: 10px; - margin-top: 20px; -} - -#prvmail-submit { - float: left; - font-size: 18px; - padding: 0.25em 0.5em; - margin-top: 10px; - margin-right: 30px; -} -#prvmail-upload-wrapper, -#prvmail-link-wrapper, -#prvmail-rotator-wrapper { - float: left; - margin-top: 10px; - margin-right: 10px; - width: 24px; -} - -#prvmail-end { - clear: both; -} - -.mail-list-sender, -.mail-list-detail { - float: left; -} -.mail-list-detail { - margin-left: 20px; -} - -.mail-list-subject { - font-size: 1.1em; - margin-top: 10px; -} -a.mail-list-link { - display: block; - font-size: 1.3em; - padding: 4px 0; -} - -/* -*a.mail-list-link:hover { -* background-color: #15607B; -* color: #F5F6FB; -*} -*/ - -.mail-list-outside-wrapper-end { - clear: both; - -} - -.mail-list-outside-wrapper { - margin-top: 30px; -} - -.mail-list-delete-wrapper { - float: right; - margin-right: 30px; - margin-top: 15px; -} - -.mail-list-delete-icon { - border: none; -} - -.mail-conv-sender, -.mail-conv-detail { - float: left; -} -.mail-conv-detail { - margin-left: 20px; - margin-bottom: 10px; - /*width: 270px;*/ -} - -.mail-conv-subject { - font-size: 1.4em; - margin: 10px 0; -} - -.mail-conv-body { - padding-top: 20px; - clear: both; -} - -.mail-conv-outside-wrapper-end { - clear: both; -} - -.mail-conv-outside-wrapper { - margin-top: 30px; -} - -.mail-conv-delete-wrapper { - float: right; - padding-bottom: 0.5em; - margin-right: 5px; - margin-top: 15px; -} -.mail-conv-break { - clear: both; -} - -.mail-conv-delete-icon { - border: none; -} - -.message-links ul { - list-style-type: none; - padding: 0px; -} - -.message-links li { - margin-top: 10px; - float: left; -} -.message-links a { - padding: 3px 5px; -} - -.message-links-end { - clear: both; -} - -#poke-desc { - margin: 5px 0 10px; -} - -#poke-wrapper { - padding: 10px 0 0px; -} - -#poke-recipient, #poke-action, #poke-privacy-settings { - margin: 10px 0 30px; -} - -#poke-recip-label, #poke-action-label, #prvmail-message-label { - margin: 10px 0 10px; -} - -#sidebar-group-list ul { - list-style-type: none; -} - -#sidebar-group-list .icon, #sidebar-group-list .iconspacer { - display: inline-block; - height: 12px; - width: 12px; -} - -#sidebar-group-list li { - margin-top: 10px; -} - -.nets-ul, .fileas-ul, .categories-ul { - list-style-type: none; -} - -.nets-ul li, .fileas-ul li, .categories-ul li { - margin-top: 10px; -} - -.nets-link { - margin-left: 24px; -} -.nets-all { - margin-left: 42px; -} - -.fileas-link, .categories-link { - margin-left: 24px; -} - -.fileas-all, .categories-all { - margin-left: 0px; -} - -#search-save { - font-size: 18px; - padding: 5px 10px; - margin-left: 5px; -} -.groupsideedit { - margin-right: 10px; -} -#saved-search-ul { - list-style-type: none; -} -.savedsearchdrop, .savedsearchterm { - float: left; - margin-top: 10px; -} -.savedsearchterm { - margin-left: 10px; -} - - -#side-follow-wrapper { - margin-top: 20px; -} -#side-follow-url, #side-peoplefind-url { - margin-top: 5px; -} -#side-follow-submit, #side-peoplefind-submit { - font-size: 18px; - padding: 5px 10px; - margin: 10px 0px 10px 10px; -} - -#side-match-link { - margin-top: 10px; -} - -aside input[type='text'] { - width: 174px; -} - -.widget { - border: 1px solid #DDDDDD; - padding: 18px; - margin-top: 5px; - -moz-border-radius:5px; - -webkit-border-radius:5px; - border-radius:5px; -} -.widget.settings-widget { - padding: 0; -} - - - -/*.photos { - height: auto; - overflow: auto; -}*/ - -.photos-end { - clear: both; - margin-bottom: 25px; -} - -.photo-album-image-wrapper { - float: left; - margin-top: 15px; - margin-right: 15px; - margin-left: 15px; -/* width: 200px; height: 200px; - overflow: hidden; - position: relative; */ -} -.photo-album-image-wrapper .caption { - display: none; - width: 100%; -/* position: absolute; */ - bottom: 0px; - padding: 0.5em 0.5em 0px 0.5em; - background-color: rgba(245, 245, 255, 0.8); - border-bottom: 2px solid #CCC; - margin: 0px; -} -.photo-album-image-wrapper a:hover .caption { - display:block; -} - -#photo-album-end { - clear: both; - margin-bottom: 25px; -} - -.photo-top-image-wrapper { -/* position: relative; - float: left;*/ - display: inline-block; - vertical-align: top; - margin-top: 15px; - margin-right: 15px; - margin-left: 15px; - margin-bottom: 15px; -/* width: 200px; height: 200px; - overflow: hidden; */ -} -.photo-top-image-wrapper img { - max-width: 290px; - border-radius: 10px; - -moz-border-radius: 10px; - -webkit-border-radius: 10px; -} -.photo-top-album-name { - width: 100%; - min-height: 2em; -/* position: absolute; */ - bottom: 0px; - padding: 0px 3px; - padding-top: 0.5em; - background-color: rgb(255, 255, 255); -} -#photo-top-end { - clear: both; -} - -#photo-top-links { - margin-bottom: 30px; - margin-left: 30px; -} - -#photos-upload-form { - text-align: center; -} - -#photos-upload-newalbum-div, #photos-upload-existing-album-text { - /*float: left;*/ - display: inline-block; - width: 175px; - text-align: left; -} - -#photos-upload-noshare { - margin-bottom: 10px; -} -#photos-upload-noshare-div { - margin-top: 2em; - margin-bottom: 15px; -} - -#photos-upload-noshare-label { - margin-left: 25px; -} - -#photos-upload-newalbum { - width: 15em; -} -#photos-upload-album-select { - width: 15.7em; -} - - -#photos-upload-spacer { - margin-top: 25px; -} -#photos-upload-new-end, #photos-upload-exist-end { - clear: both; -} -#photos-upload-exist-end { - margin-bottom: 15px; -} - -#photos_upload_applet_wrapper { - margin-bottom: 15px; -} - -#photos-upload-no-java-message { - margin-bottom: 15px; -} - -#character-counter { - float: right; - font-size: 120%; -} - -#character-counter.grey { - color: #888888; -} - -#character-counter.orange { - color: orange; -} -#character-counter.red { - color: red; -} - -#profile-jot-banner-end { - /* clear: both; */ -} - -#photos-upload-select-files-text { - margin-top: 15px; - margin-bottom: 15px; -} - -#photos-upload-perms-menu, #photos-upload-perms-menu:visited, #photos-upload-perms-menu:link { - color: #8888FF; - text-decoration: none; - cursor: pointer; -} - -#photos-upload-perms-menu { - margin-left: 15px; -} - -#photos-upload-perms-menu:hover { - color: #0000FF; - text-decoration: underline; - cursor: pointer; -} -#settings-default-perms-menu { - margin-top: 15px; - margin-bottom: 15px; -} - -.photo-edit-input-text { - display: inline-block; - text-align: left; -} - -#photo_edit_form { - text-align: center; -} - -#photo-edit-caption-label, #photo-edit-tags-label, #photo-edit-albumname-label, .photo-edit-rotate-label { - /*float: left;*/ - display: inline-block; - width: 150px; -} - -#photo-edit-caption-label, #photo-edit-tags-label, #photo-edit-albumname-label { - font-weight: 700; -} - -.photo-perms-icon { - float: left; -} - -#photo-edit-perms-menu, #photos-upload-perms-menu, #settings-default-perms-menu { - text-decoration: none; - display: inline-block; -} - -#photos-upload-perms-menu #jot-perms-icon { - margin-right: 1em; -} - -.photo-jot-perms-text { - padding-top: 5px; - padding-left: 40px; -} - -#photo-edit-perms, #photos-upload-perms, #settings-default-perms { - margin-top: 30px; - display: inline-block; -} -#photos-upload-perms { - margin-top: 15px; - margin-left: 5px; -} - -#photo-edit-perms-select, #photos-upload-permissions-wrapper, #settings-jot-acl-wrapper { - margin-top: 30px; - margin-left: 20px; -} - -#advanced-expire-popup { - padding-left: 1em; - margin-top: 15px; - border: 1px solid #aaa; - border-radius: 10px; - -moz-border-radius: 10px; - -webkit-border-radius: 10px; -} - -#photo-edit-perms-end { - margin-bottom: 15px; -} - -#photo-edit-caption, #photo-edit-newtag, #photo-edit-albumname { - /*float: left;*/ - margin-bottom: 25px; -} - -.photo-edit-rotate-choice { - display: inline-block; -} - -.photo-edit-rotate { - float: left; - margin-left: 20px; - -} -#photo-edit-link-wrap { - margin-bottom: 15px; -} -#photo-like-div { - margin-left: 15px; - margin-bottom: 65px; -} - -#photo-edit-caption-end, #photo-edit-tags-end, #photo-edit-albumname-end, #photo-edit-rotate-end { - clear: both; -} - -#photo-edit-rotate-end { - margin-bottom: 15px; -} - -#photo-edit-submit-button, #photo-edit-delete-button, #photos-upload-submit { - margin-top: 30px; - padding: 0.25em 0.5em; - font-size: 18px; -} -#photo-edit-submit-button { - margin-left: 10px; -} -#photo-edit-delete-button { - margin-left: 45px; -} -#photos-upload-choose { -/* position: absolute; - top: 460px; - left: 5px;*/ - margin-top: 1em; -} -#photos-upload-submit { - margin-top: 0px; - margin-bottom: 20px; -} -.settings-submit, .profile-edit-submit-button, .settings-features-submit { - padding: 0.25em 0.5em; - margin-bottom: 10px; - font-size: 18px; -} -#photo-edit-end { - margin-bottom: 35px; -} -#photo-caption { - font-size: 110%; - font-weight: bold; - margin-top: 15px; - margin-bottom: 15px; -} - -#in-this-photo-text { - color: #0000FF; - margin-left: 30px; -} - -#in-this-photo { - margin-left: 60px; - margin-top: 10px; - margin-bottom: 20px; -} - -#photo-album-edit-form { - max-width: 100%; - padding-left: 0.5em; - padding-right: 0.5em; -} -#photo-album-edit-form input { - max-width: 100%; -} -#photo-album-edit-name-label { - display: block; -} - -#photo-album-edit-submit, #photo-album-edit-drop { - margin-top: 15px; - margin-bottom: 15px; - - padding: 0.25em 0.5em; - font-size: 18px; -} - -#photo-album-edit-drop { - margin-left: 2em; -} - -.group-delete-wrapper { - float: right; - margin-right: 50px; -} - -#install-dbhost-label, -#install-dbuser-label, -#install-dbpass-label, -#install-dbdata-label, -#install-tz-desc { - float: left; - width: 250px; - margin-top: 10px; - margin-bottom: 10px; - -} - -#install-dbhost, -#install-dbuser, -#install-dbpass, -#install-dbdata { - float: left; - width: 200px; - margin-left: 20px; -} - -#install-dbhost-end, -#install-dbuser-end, -#install-dbpass-end, -#install-dbdata-end, -#install-tz-end { - clear: both; -} - -#install-form select#timezone_select { - float: left; - margin-top: 18px; - margin-left: 20px; -} - -#dfrn-request-networks { - margin-bottom: 30px; -} - -#pause { - position: fixed; - bottom: 5px; - right: 5px; -} - -.sparkle { - cursor: url('lock.cur'), pointer; -/* cursor: pointer !important; */ -} - -.contact-block-div { - float: left; - width: 52px; - height: 52px; -} -.contact-block-textdiv { - float: left; - width: 150px; - height: 34px; -} - -#contact-block-end { - clear: both; -} -.contact-block-link { - float: left; -} -.contact-block-img { - width:48px; - height:48px; -} - -#tag-remove { - margin-bottom: 15px; -} - -#tagrm li { - margin-bottom: 10px; -} - -#tagrm-submit, #tagrm-cancel { - margin-top: 25px; -} - -#tagrm-cancel { - margin-left: 15px; -} - -.wall-item-conv { - margin-top: 5px; - margin-bottom: 25px; -} - -#search-submit { - font-size: 18px; - padding: 5px 10px; - margin-left: 15px; -} - -#search-box { - margin-bottom: 25px; -} - -.location-label, .gender-label, .marital-label, .homepage-label, .network-label { - float: left; - text-align: right; - display: block; - width: 65px; -} - -.adr, .x-gender, .marital-text, .homepage-url, .x-network { - float: left; - display: block; - margin-left: 8px; -} - -.profile-clear { - clear: both; -} - - -.clear { - clear: both; -} - -.cc-license { - margin-top: 50px; - font-size: 70%; -} - - -#addon-settings-link, #account-settings-link { - margin-bottom: 10px; -} - -#uexport-link { - margin-bottom: 20px; -} - -/* end from default */ - - -.fn { - padding: 1em 0px 5px 12px; - font-size: 120%; - font-weight: bold; -} - -.vcard .title, -.vcard .p-addr, -.vcard .account-type { - margin-bottom: 5px; - margin-left: 12px; -} - -.vcard .account-type { - font-size: 120%; - margin-bottom: 13px; -} - -.vcard dl { - clear: both; -} - -#birthday-title { - float: left; - font-weight: bold; -} - -#birthday-adjust { - float: left; - font-size: 75%; - margin-left: 10px; -} - -#birthday-title-end { - clear: both; -} - -.birthday-list { - margin-left: 15px; -} - -#birthday-wrapper { - margin-bottom: 20px; -} - -#network-new-link { - margin-top: 15px; - margin-bottom: 15px; -} - - -.tool-wrapper { - float: left; - margin-left: 15px; -} - -.tool-link { - cursor: pointer; -} - -.eventcal { - float: left; - font-size: 20px; -} - -#event-summary-text { - margin-top: 15px; -} - -#event-share-checkbox { - float: left; - margin-top: 10px; -} - -#event-share-text { - float: left; - margin-top: 10px; - margin-left: 5px; -} - -#event-share-break { - clear: both; - margin-bottom: 10px; -} - -#event-summary { - width: 280px; -} - -.vevent { - border: 1px solid #CCCCCC; -} - -.vevent .event-summary { - margin-left: 10px; - margin-right: 10px; - font-weight: bold; -} - -.vevent .event-description, .vevent .event-location { - margin-left: 10px; - margin-right: 10px; -} -.vevent .event-start { - margin-left: 10px; - margin-right: 10px; -} - -#new-event-link { - margin-bottom: 10px; -} - -.edit-event-link, .plink-event-link { - float: left; - margin-top: 4px; - margin-right: 4px; - margin-bottom: 15px; -} - -.event-description:before { - content: url('../../../images/calendar.png'); - margin-right: 15px; -} - -.event-start, .event-end { - font-size: 14px; - margin-left: 10px; - width: 280px; - clear: both; - padding-bottom: 1.5em; -} - -.event-start .dtstart, .event-end .dtend { - clear: both; - float: left; -} - -.event-list-date { - margin-bottom: 10px; -} - -.prevcal, .nextcal { - float: left; - margin-left: 32px; - margin-right: 32px; - margin-top: 64px; -} -.event-calendar-end { - clear: both; -} - - -.calendar { - font-family: Courier, monospace; -} -.today { - font-weight: bold; - color: #FF0000; -} - -.settings-block { - border: 1px solid #AAA; - margin: 10px; - padding: 10px; -} - -.app-title { - margin: 10px; -} - -.itentity-match-wrapper { - float: left; - padding: 10px; - width: 120px; - height: 140px; - margin-bottom: 20px; -} - -.identity-match-photo { - float: left; - text-align: center; - width: 120px; -} - -.identity-match-name { - text-align: center; -} - -.identity-match-details { - float: left; - text-align: center; - width: 120px; - overflow: hidden; - font-size: 10px; - font-weight: 500; - color: #999999; -} - -.identity-match-break, .identity-match-end { - clear: both; -} - -.identity-match-photo button { - border: none; - padding: 0; - margin: 0; - background: none; - height: 80px; - width: 80px; -} - -.selected-identity img { - border: 2px solid #ff0000; -} - -#photo-nav { - position: relative; - height: 55px; -} - -#photo-prev-link { - position: absolute; - left: 5px; -} -#photo-next-link { - position: absolute; - right: 5px; -} -#photo-prev-link, #photo-next-link { - padding: 10px; -/* float: left;*/ -} - -/*#photo-photo { - float: left; -}*/ - -#photo-photo { - display: block; - margin-left: auto; - margin-right: auto; - text-align: center; -} - -#photo-photo img { - max-width: 100%; -} - -#photo-photo-end { - clear: both; -} - -.profile-match-photo { - float: left; - text-align: center; - width: 120px; -} - -.profile-match-name { - float: left; - text-align: center; - width: 120px; - overflow: hidden; -} - -.profile-match-break, -.profile-match-end { - clear: both; -} - -.profile-match-connect { - text-align: center; - font-weight: bold; -} - -.profile-match-wrapper { - display: inline-block; - padding: 10px; - /*width: 120px; - height: 120px;*/ - scroll: auto; - margin-bottom: 2em; - vertical-align: top; -} -.profile-match-wrapper .icon.drophide { - margin-left: auto; - margin-right: auto; - margin-top: 1em; -} -#profile-match-wrapper-end { - clear: both; -} - -.side-link { - margin-bottom: 15px; -} - - -#group-members { - margin-top: 20px; - padding: 10px; - height: 250px; - overflow: auto; - border: 1px solid #ddd; -} - -#group-members-end { - clear: both; -} - -#group-separator { - margin-top: 10px; - margin-bottom: 10px; -} - -#group-all-contacts { - padding: 10px; - height: 450px; - overflow: auto; - border: 1px solid #ddd; -} - -#group-all-contacts-end { - clear: both; - margin-bottom: 10px; -} - -#group-edit-desc { - margin-top: 15px; -} - - -#prof-members { - margin-top: 20px; - padding: 10px; - height: 250px; - overflow: auto; - border: 1px solid #ddd; -} - -#prof-members-end { - clear: both; -} - -#prof-separator { - margin-top: 10px; - margin-bottom: 10px; -} - -#prof-all-contacts { - padding: 10px; - height: 450px; - overflow: auto; - border: 1px solid #ddd; -} - -#prof-all-contacts-end { - clear: both; - margin-bottom: 10px; -} - -#prof-edit-desc { - margin-top: 15px; -} - -#crepair-name-label, -#crepair-nick-label, -#crepair-attag-label, -#crepair-url-label, -#crepair-request-label, -#crepair-confirm-label, -#crepair-notify-label, -#crepair-photo-label, -#crepair-poll-label { - float: left; - width: 200px; - margin-bottom: 15px; -} - -#crepair-name, -#crepair-nick, -#crepair-attag, -#crepair-url, -#crepair-request, -#crepair-confirm, -#crepair-notify, -#crepair-photo, -#crepair-poll { - float: left; - width: 300px; -} - - -#netsearch-box { - margin-top: 20px; -} - -#netsearch-box #search-submit { - margin: 5px 0px 0px 0px; -} - -.required { - color: #FF0000; -} - -#event-start-text, #event-finish-text { - margin-top: 10px; - margin-bottom: 5px; -} - -#event-nofinish-checkbox, #event-nofinish-text, #event-adjust-checkbox, #event-adjust-text { - float: left; -} -#event-datetime-break { - margin-bottom: 10px; -} - -#event-nofinish-break, #event-adjust-break { - clear: both; -} - -#event-desc-text, #event-location-text { - margin-top: 10px; - margin-bottom: 5px; -} -#event-submit { - margin-top: 10px; -} - -.filesavetags, .categorytags { - display: block; - clear: left; -} - -.body-tag, .filesavetags, .categorytags { - opacity: 0.5; - filter:alpha(opacity=50); -} - -.body-tag:hover, .filesavetags:hover, .categorytags:hover { - opacity: 1.0 !important; - filter:alpha(opacity=100) !important; -} - -.item-select { - display: none; - opacity: 0.1; - filter:alpha(opacity=10); - float: right; - margin-right: 10px; - -} -.item-select:hover, .checkeditem { - opacity: 1; - filter:alpha(opacity=100); -} - - -#item-delete-selected { - margin-top: 30px; -} - -#item-delete-selected-end { - clear: both; -} -#item-delete-selected-icon, #item-delete-selected-desc { - float: left; - margin-right: 5px; -} -#item-delete-selected-desc:hover { - text-decoration: underline; -} - -.notif-image { - height: 80px; - width: 80px; - margin-right: 15px; -} -.notification-listing-end { - clear: both; - margin-bottom: 15px; -} - - - -/** - * Plugins settings - */ - -.settings-block > h3, -.settings-heading { - border-bottom: 1px solid #babdb6; -} - - - -/** - * Form fields - */ -.field { - margin-bottom: 10px; - padding-bottom: 10px; - overflow: auto; -/* width: 100%*/ -} - -.field label { - font-weight: 700; - float: left; - width: 200px; -} - -.field input, -.field textarea { - width: 230px; - margin-left: 20px; -} -.field input[type=checkbox], -.field input[type=radio] { - width: auto; -} -.field textarea { height: 100px; } -.field_help { - display: block; - margin-left: 20px; - color: #666666; - clear: left; -} - - - -.field .onoff { - float: left; - width: 80px; -} -.field .onoff a { - display: block; - border:1px solid #666666; - background-image:url("../../../images/onoff.jpg"); - background-repeat: no-repeat; - padding: 4px 2px 2px 2px; - height: 16px; - text-decoration: none; -} -.field .onoff .off { - - border-color:#666666; - padding-left: 40px; - background-position: left center; - background-color: #cccccc; - color: #666666; - text-align: right; -} -.field .onoff .on { - border-color:#204A87; - padding-right: 40px; - background-position: right center; - background-color: #D7E3F1; - color: #204A87; - text-align: left; -} -.hidden { display: none!important; } - -.field.radio .field_help { margin-left: 20px; } - -/** - * ADMIN - */ -#pending-update { - float:right; - color: #ffffff; - font-weight: bold; - background-color: #FF0000; - padding: 0em 0.3em; - -} -#adminpage dl { - clear: left; - min-height: 40px; - margin-bottom: 2px; - padding-bottom: 2px; - border-bottom: 1px solid black; -} -#adminpage dt { - width: 180px; - float: left; - font-weight: bold; -} -#adminpage dd { - margin-left: 180px; -} - -#adminpage h3 { - border-bottom: 1px solid #cccccc; -} -#adminpage .field label { - font-weight: bold; -} -#adminpage .submit { - clear:left; - text-align: right; -} - -#adminpage #addonslist { - margin: 0px; padding: 0px; -} -#adminpage .addon { - list-style: none; - display: block; - border: 1px solid #888888; - padding: 1em; - margin-bottom: 5px; - clear: left; -} -#adminpage .addon .desc { margin-left: 2.5em;} -#adminpage .toggleaddon { - float:left; - margin-right: 1em; -} - -#adminpage table {width:100%; border-bottom: 1px solid #000000; margin: 5px 0px;} -#adminpage table th { text-align: left;} -#adminpage td .icon { float: left;} -#adminpage table#users img { width: 16px; height: 16px; } -#adminpage table tr:hover { background-color: #bbc7d7; } -#adminpage .selectall { text-align: right; } - -#cnftheme { - display: none; -} - -/* - * UPDATE - */ -.popup { - width: 100%; height: 100%; - top:0px; left:0px; - position: absolute; - display: none; -} - -.popup .background { - background-color: rgba(0,0,0,128); - opacity: 0.5; - width: 100%; height: 100%; - position: absolute; - top:0px; left:0px; -} -.popup .panel { - top:25%;left:25%;width:50%;height:50%; - padding: 1em; - position: absolute; - border: 4px solid #000000; - background-color: #FFFFFF; -} -.popup .panel .panel_text { display: block; overflow: auto; height: 80%; } -.popup .panel .panel_in { width: 100%; height: 100%; position: relative; } -.popup .panel .panel_actions { width: 100%; bottom: 4px; left: 0px; position: absolute; } -.panel_text .progress { width: 50%; overflow: hidden; height: auto; border: 1px solid #cccccc; margin-bottom: 5px} -.panel_text .progress span {float: right; display: block; width: 25%; background-color: #eeeeee; text-align: right;} - -/** - * OAuth - */ -.oauthapp { - height: auto; overflow: auto; - border-bottom: 2px solid #cccccc; - padding-bottom: 1em; - margin-bottom: 1em; -} -.oauthapp img { - float: left; - width: 48px; height: 48px; - margin: 10px; -} -.oauthapp img.noicon { - background-image: url("../../../images/icons/48/plugin.png"); - background-position: center center; - background-repeat: no-repeat; -} -.oauthapp a { - float: left; -} - -/** - * ICONS - */ -.iconspacer { - display: block; width: 16px; height: 16px; -} - -.icon { - display: block; width: 16px; height: 16px; - background-image: url('../../../images/icons.png'); -} -.article { background-position: 0px 0px;} -.icon.audio { display: none; background-position: -16px 0px;} -.block { background-position: -32px 0px;} -/*.drop { background-position: -48px 0px;} -.drophide { background-position: -64px 0px;}*/ -.icon.drop { - display: block; width: 28px; height: 28px; - background-size: 100% 100%; - background-image: url('images/drop-darkred.png'); - background-repeat: no-repeat; -} -.icon.drophide { - display: block; width: 28px; height: 28px; - background-size: 100% 100%; - background-image: url('images/drop-darkred.png'); - background-repeat: no-repeat; -} -.edit { background-position: -80px 0px;} -/*.camera { background-position: -96px 0px;}*/ -.icon.camera { - display: block; width: 28px; height: 21px; - margin-top: 4px; - background-size: 100% 100%; - background-image: url('images/camera.png'); - background-repeat: no-repeat; -} -/*.dislike { background-position: -112px 0px;}*/ -.icon.dislike { - display: block; - width: 26px; height: 28px;/*31 33*/ - background-size: 100% 100%; - background-image: url('images/disapprove.png'); - background-repeat: no-repeat; - opacity: 0.5; -} -/*.like { background-position: -128px 0px;}*/ -.icon.like { - display: block; width: 26px; height: 28px;/*31 33*/ - margin-right: 7px; - background-size: 26px 28px; - background-image: url('images/approve.png'); - background-repeat: no-repeat; - opacity: 0.5; -} - -.icon.link { - display: block; width: 22px; height: 24px; - background-size: 22px 24px; - background-image: url('images/link.png'); - background-repeat: no-repeat; - -} - -/*.globe { background-position: 0px -16px;}*/ -.icon.globe { - display: block; width: 28px; height: 28px; - background-size: 28px 28px; - background-image: url('images/globe.png'); - background-repeat: no-repeat; -} -/*.noglobe { background-position: -16px -16px;}*/ -.icon.noglobe { - display: block; width: 24px; height: 24px; - background-size: 24px 24px; - background-image: url('images/noglobe.png'); - background-repeat: no-repeat; -} -.no { background-position: -32px -16px;} -.pause { background-position: -48px -16px;} -.play { background-position: -64px -16px;} -/*.pencil { background-position: -80px -16px;} -.small-pencil { background-position: -96px -16px;}*/ -.icon.pencil { - display: block; width: 28px; height: 28px; - background-size: 28px 28px; - background-image: url('images/pencil.png'); - background-repeat: no-repeat; - opacity: 0.5; -} -.icon.small-pencil { - display: block; width: 28px; height: 28px; - background-size: 28px 28px; - background-image: url('images/pencil.png'); - background-repeat: no-repeat; - opacity: 0.5; -} -/*.recycle { background-position: -112px -16px;}*/ -.icon.recycle { - display: block; - width: 28px; height: 27px;/*33 32*/ - background-size: 28px 27px; - background-image: url('images/recycle.png'); - background-repeat: no-repeat; - opacity: 0.5; -} -/*.remote-link { background-position: -128px -16px;}*/ -.icon.remote-link { -/* display: block;*/ - display: none; - width: 28px; height: 28px; - background-size: 28px 28px; - background-image: url('images/remote-link.png'); - background-repeat: no-repeat; - opacity: 0.5; -} -.share { background-position: -144px -16px;} - -.tools { background-position: 0px -32px;} -/*.lock { background-position: -16px -32px;}*/ -.icon.lock { - display: block; width: 17px; height: 25px; - margin-top: 1px; - background-size: 17px 25px; - background-image: url('images/lock.png'); - background-repeat: no-repeat; -} -/*.unlock { background-position: -32px -32px;}*/ -.icon.unlock { - display: block; width: 17px; height: 28px; - margin-top: -2px; - background-size: 17px 28px; - background-image: url('images/unlock.png'); - background-repeat: no-repeat; -} -.icon.video { display: none; background-position: -48px -32px;} -.oembed.video a { display: block; } -.youtube { background-position: -64px -32px;} -/*.attach { background-position: -80px -32px; }*/ -.icon.attach { - display: block; width: 28px; height: 28px; - background-size: 28px 28px; - background-image: url('images/paperclip.png'); - background-repeat: no-repeat; -} -.language { background-position: -96px -32px; } -.prev { background-position: -112px -32px; } -.next { background-position: -128px -32px; } -.on { background-position: -144px -32px; } - -.off { background-position: 0px -48px; } -/*.starred { background-position: -16px -48px; }*/ -.icon.starred { - display: block; width: 28px; height: 28px; - background-size: 28px 28px; - background-image: url('images/star-yellow.png'); - background-repeat: no-repeat; -} -/*.unstarred { background-position: -32px -48px; }*/ -.icon.unstarred { - display: block; width: 28px; height: 28px; - background-size: 28px 28px; - background-image: url('images/star.png'); - background-repeat: no-repeat; - - opacity: 0.5; -} -/*.tagged { background-position: -48px -48px; }*/ -.icon.tagged { - display: block; width: 28px; height: 28px; - background-size: 28px 28px; - background-image: url('images/tag.png'); - background-repeat: no-repeat; - opacity: 0.5; -} -.yellow { background-position: -64px -48px; } - - -.filer-icon { - display: block; width: 24px; height: 24px; - background-size: 24px 24px; - background-image: url('images/folder.png'); - background-repeat: no-repeat; - opacity: 0.5; -} - -.event-icon { - display: block; width: 33px; height: 33px; - background-size: 33px 33px; - background-repeat: no-repeat; - opacity: 0.5; -} -.event-attend-icon { background-image: url('images/event-attend.png'); } -.event-maybeattend-icon { background-image: url('images/event-maybeattend.png'); } -.event-dontattend-icon { background-image: url('images/event-dontattend.png'); } - -.icon.dim { opacity: 0.3;filter:alpha(opacity=30); } - -[class^="comment-edit-bb"] { - list-style: none; - display: none; - margin: 0px 0 -5px 0px; -/* width: 75%;*/ -} -[class^="comment-edit-bb"] > li { - display: inline-block; - margin: 20px 10px 0 0; - visibility: none; -} -/*[class^="comment-edit-bb-end"] { - clear: both; -}*/ -.editicon { - display: inline-block; - background-size: 100% 100%; - background-repeat: no-repeat; - background-color: #f3f3f3; - text-decoration: none; -} -/*.editicon:hover { - background-color: #ccc; -}*/ -.boldbb { -/* background-position: 0px 0px;*/ - width: 26px; height: 28px; - background-image: url('images/boldB-serif.png'); -} -/*.boldbb:hover { - background-position: 0px -16px; -}*/ -.italicbb { -/* background-position: -16px 0px;*/ - width: 16px; height: 28px; - background-image: url('images/italicI-serif.png'); -} -/*.italicbb:hover { - background-position: -16px -16px; -}*/ -.underlinebb { -/* background-position: -32px 0px;*/ - width: 25px; height: 28px; - background-image: url('images/underlineU-serif.png'); -} -/*.underlinebb:hover { - background-position: -32px -16px; -}*/ -.quotebb { -/* background-position: -48px 0px;*/ - width: 28px; height: 28px; - background-image: url('images/quote.png'); -} -/*.quotebb:hover { - background-position: -48px -16px; -}*/ -.codebb { -/* background-position: -64px 0px;*/ - width: 28px; height: 28px; - background-image: url('images/code.png'); -} -/*.codebb:hover { - background-position: -64px -16px; -}*/ -.imagebb { - background-position: -80px 0px; -} -.imagebb:hover { - background-position: -80px -16px; -} -.urlbb { - background-position: -96px 0px; -} -.urlbb:hover { - background-position: -96px -16px; -} -.videobb { - background-position: -112px 0px; -} -.videobb:hover { - background-position: -112px -16px; -} - -.attachtype { - display: block; - float: left; - background-size: 100% 100%; - width: 48px; - height: 48px; - background-image: url('images/oxygen/unknown.png'); -} - -.body-attach { - margin-top: 10px; -} - -/*.type-video { background-position: 0px 0px; } -.type-image { background-position: -20px 0px; } -.type-audio { background-position: -40px 0px; } -.type-text { background-position: -60px 0px; } -.type-unkn { background-position: -80px 0px; }*/ -.type-video { - background-image: url('images/oxygen/video-x-generic.png'); - background-size: 100% 100%; - width: 48px; - height: 48px; -} -.type-image { - background-image: url('images/oxygen/image-x-generic.png'); - background-size: 100% 100%; - width: 48px; - height: 48px; -} -.type-audio { background-image: url('images/oxygen/audio-x-generic.png'); - background-size: 100% 100%; - width: 48px; - height: 48px; -} - -.type-text { - background-image: url('images/oxygen/text-x-generic-2.png'); - background-size: 100% 100%; - width: 48px; - height: 48px; -} -.subtype-msword, .subtype-vnd-openxmlformats-officedocument-wordprocessingml-document { - background-image: url('images/oxygen/application-msword.png'); - background-size: 100% 100%; - width: 48px; - height: 48px; -} -.subtype-pdf { - background-image: url('images/oxygen/application-pdf.png'); - background-size: 100% 100%; - width: 48px; - height: 48px; -} -/*.type-unkn { - background-image: url('images/oxygen/unknown.png'); - background-size: 100% 100%; - width: 48px; - height: 48px; -}*/ - - - -/* autocomplete popup */ -.acpopup { - max-height:150px; - background-color:#ffffff; - overflow:auto; - z-index:102; - border:1px solid #cccccc; -} -.acpopupitem { - background-color:#ffffff; padding: 4px; - clear:left; -} -.acpopupitem img { - float: left; - margin-right: 4px; -} - -.acpopupitem.selected { - color: #FFFFFF; background: #3465A4; -} -ul.acpopup { - list-style: none; - float: left; - min-width: 160px; - padding: 5px 0; - margin: 2px 0 0; -} -nav .acpopup { - width: 290px; - margin-left: -35px; - max-height: 450px; - max-width: 300px; - overflow-y: auto; - overflow-x: hidden; - margin-top: 0px; -} -img.acpopup-img { - float: left; - width: 36px; - height: 36px; - margin-right: 5px; - vertical-align: middle; -} -.acpopup-contactname { - padding-top: 2px; - font-weight: bold; - line-height: 1em; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - display: block; -} -.acpopup-sub-text { - color: #777; - font-size: 0.833em; - line-height: 1em; - overflow: hidden; - text-overflow: ellipsis; - display: block; -} -.textcomplete-item a { - color: inherit; - overflow: hidden; - text-overflow: ellipsis; - clear: both; - white-space: nowrap; - padding: 3px 20px; - display: block; -} -.textcomplete-item a:hover { - text-decoration: none; -} -.textcomplete-item.active { - color: #FFFFFF; background: #3465A4; -} -.active a .acpopup-sub-text { - color: #fff; -} - -/* popup notifications */ -div.jGrowl div.notice { - background: #511919 url("../../../images/icons/48/notice.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; - margin: 0px; -} -div.jGrowl div.info { - background: #364e59 url("../../../images/icons/48/info.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; - margin: 0px; -} -#jGrowl.top-right { - top: 15px; - right: 10px; -} -div.jGrowl-notification { - border-radius: 7px; -} -.qcomment { - border: 1px solid #EEE; - padding: 3px; - margin-top: 15px; - margin-left: 25px; - width: 125px; - overflow-y: auto; -} - - -.qcomment option { - width: 125px; - overflow-x: hidden; -} - -.qcomment { - opacity: 0.3; - filter:alpha(opacity=30); -} -.qcomment:hover { - opacity: 1.0; - filter:alpha(opacity=100); -} - -/* notifications popup menu */ -.nav-notify { - display: none; - position: absolute; - font-size: 10px; - padding: 1px 3px; - top: 0px; - right: -10px; - min-width: 15px; - text-align: right; -} -.nav-notify.show { - display: block; -} -ul.notifications-menu-popup { - position: absolute; - display: none; - width: 10em; - margin: 0px; - padding: 0px 0.3em; - list-style: none; - right: -60px; -} -#nav-notifications-menu { - width: 300px; -/* max-height: 400px;*/ - height: auto; -/* overflow-y: scroll;overflow-style:scrollbar;*/ - background-color:#FFFFFF; - -moz-border-radius: 5px; - -webkit-border-radius: 5px; - border-radius:5px; - border: 1px solid #AAA; - -moz-box-shadow: 3px 3px 5px #555; - -webkit-box-shadow: 3px 3px 5px #555; - box-shadow: 3px 3px 5px #555; -/* z-index: 103;*/ -} -#nav-notifications-menu .contactname { font-weight: bold; font-size: 0.9em; } -#nav-notifications-menu img { float: left; margin-right: 5px; } -#nav-notifications-menu .notif-when { font-size: 0.8em; display: block; } -#nav-notifications-menu li { - padding: 7px 0px 7px 10px; - word-wrap:normal; - border-bottom: 1px solid #000; -} - -#nav-notifications-menu li:hover { - -} - -#nav-notifications-menu a:hover { - text-decoration: underline; -} - -.notif-item a { - color: #000000; -} - -.notif-item a:hover { - text-decoration: underline; -} - -.notif-image { - width: 32px; - height: 32px; - padding: 7px 7px 0px 0px; -} - -.notify-seen { - background: #DDDDDD; -} - -#id_term_label { - width:75px; -} -#id_term { - width:100px; -} - -#recip { - -} -.autocomplete-w1 { background: #ffffff no-repeat bottom right; position:absolute; top:0px; left:0px; margin:6px 0 0 6px; /* IE6 fix: */ _background:none; _margin:1px 0 0 0; } -.autocomplete { color:#000; border:1px solid #999; background:#FFF; cursor:default; text-align:left; max-height:350px; overflow:auto; margin:-6px 6px 6px -6px; /* IE6 specific: */ _height:350px; _margin:0; _overflow-x:hidden; } -.autocomplete .selected { background:#F0F0F0; } -.autocomplete div { padding:2px 5px; white-space:nowrap; overflow:hidden; } - -#datebrowse-sidebar select { - margin-left: 40px; - width: 130px; -} - -/*@media only screen and (min-device-width: 768px) -and (max-device-width: 1024px)*/ -/*@media only screen and (min-device-width: 768px) -{ -html { -width:700px -} -div.section-wrapper { -width:700px; -margin-left:0px; -} -.wall-item-body { -width:700px; -} -.comment .wall-item-body { -width:650px; -} -}*/ - -/*@media only screen and (min-device-width: 768px) -{ - .wall-item-body code { - width: 700px; - } - - .comment .wall-item-body blockquote { - margin-left: 20px; - width: 680px; - } - blockquote { - width: 700px; - } - -}*/ - diff --git a/view/theme/frost-mobile/templates/acl_selector.tpl b/view/theme/frost-mobile/templates/acl_selector.tpl deleted file mode 100644 index 701caef3b..000000000 --- a/view/theme/frost-mobile/templates/acl_selector.tpl +++ /dev/null @@ -1,33 +0,0 @@ - -
- - {{$showall}} -
-
-
-
- -
- - - -{{if $networks}} -
-
{{$emailcc}}
-
-{{if $jotnets}} -{{$jotnets}} -
-{{/if}}{{/if}} - - diff --git a/view/theme/frost-mobile/templates/admin/aside.tpl b/view/theme/frost-mobile/templates/admin/aside.tpl deleted file mode 100644 index 74e92dab2..000000000 --- a/view/theme/frost-mobile/templates/admin/aside.tpl +++ /dev/null @@ -1,32 +0,0 @@ - - -

{{$admtxt}}

- - -{{if $admin.update}} - -{{/if}} - - -{{if $admin.addons_admin}}

{{$plugadmtxt}}

{{/if}} - - - -

{{$logtxt}}

- - diff --git a/view/theme/frost-mobile/templates/admin/site.tpl b/view/theme/frost-mobile/templates/admin/site.tpl deleted file mode 100644 index d5b64e58d..000000000 --- a/view/theme/frost-mobile/templates/admin/site.tpl +++ /dev/null @@ -1,65 +0,0 @@ - - -
-

{{$title}} - {{$page}}

- -
- - - {{include file="field_input.tpl" field=$sitename}} - {{include file="field_textarea.tpl" field=$banner}} - {{include file="field_select.tpl" field=$language}} - {{include file="field_select.tpl" field=$theme}} - {{include file="field_select.tpl" field=$theme_mobile}} - {{include file="field_select.tpl" field=$ssl_policy}} - {{include file="field_checkbox.tpl" field=$old_share}} - {{include file="field_checkbox.tpl" field=$hide_help}} - {{include file="field_select.tpl" field=$singleuser}} - -
- -

{{$registration}}

- {{include file="field_input.tpl" field=$register_text}} - {{include file="field_select.tpl" field=$register_policy}} - - {{include file="field_checkbox.tpl" field=$no_multi_reg}} - {{include file="field_checkbox.tpl" field=$no_openid}} - {{include file="field_checkbox.tpl" field=$no_regfullname}} - -
- -

{{$upload}}

- {{include file="field_input.tpl" field=$maximagesize}} - {{include file="field_input.tpl" field=$maximagelength}} - {{include file="field_input.tpl" field=$jpegimagequality}} - -

{{$corporate}}

- {{include file="field_input.tpl" field=$allowed_sites}} - {{include file="field_input.tpl" field=$allowed_email}} - {{include file="field_checkbox.tpl" field=$block_public}} - {{include file="field_checkbox.tpl" field=$force_publish}} - {{include file="field_checkbox.tpl" field=$no_community_page}} - {{include file="field_checkbox.tpl" field=$ostatus_disabled}} - {{include file="field_checkbox.tpl" field=$diaspora_enabled}} - {{include file="field_checkbox.tpl" field=$dfrn_only}} - {{include file="field_input.tpl" field=$global_directory}} - {{include file="field_checkbox.tpl" field=$newuser_private}} - {{include file="field_checkbox.tpl" field=$enotify_no_content}} - {{include file="field_checkbox.tpl" field=$private_addons}} - {{include file="field_checkbox.tpl" field=$disable_embedded}} -
- -

{{$advanced}}

- {{include file="field_checkbox.tpl" field=$verifyssl}} - {{include file="field_input.tpl" field=$proxy}} - {{include file="field_input.tpl" field=$proxyuser}} - {{include file="field_input.tpl" field=$timeout}} - {{include file="field_input.tpl" field=$delivery_interval}} - {{include file="field_input.tpl" field=$poll_interval}} - {{include file="field_input.tpl" field=$maxloadavg}} - {{include file="field_input.tpl" field=$abandon_days}} - -
- -
-
diff --git a/view/theme/frost-mobile/templates/admin/users.tpl b/view/theme/frost-mobile/templates/admin/users.tpl deleted file mode 100644 index f0c4869a7..000000000 --- a/view/theme/frost-mobile/templates/admin/users.tpl +++ /dev/null @@ -1,98 +0,0 @@ - -
-

{{$title}} - {{$page}}

- -
- - -

{{$h_pending}}

- {{if $pending}} - - - - {{foreach $th_pending as $th}}{{/foreach}} - - - - - - {{foreach $pending as $u}} - - - - - - - - {{/foreach}} - -
{{$th}}
{{$u.created}}{{$u.name}} - - -
- -
- {{else}} -

{{$no_pending}}

- {{/if}} - - - - -

{{$h_users}}

- {{if $users}} - - - - - {{foreach $th_users as $th}}{{/foreach}} - - - - - - {{foreach $users as $u}} - - - - - - - - - - {{/if}} - - - {{/foreach}} - -
{{$th}}
{{$u.nickname}}{{$u.name}}{{$u.register_date}}{{$u.lastitem_date}} - {{if $u.is_admin}} -   - {{else}} - - {{if $u.is_admin}} -   - {{else}} - - - {{/if}} -
- -
- {{else}} - NO USERS?!? - {{/if}} -
-
diff --git a/view/theme/frost-mobile/templates/categories_widget.tpl b/view/theme/frost-mobile/templates/categories_widget.tpl deleted file mode 100644 index f2d1a710d..000000000 --- a/view/theme/frost-mobile/templates/categories_widget.tpl +++ /dev/null @@ -1,13 +0,0 @@ - -{{**}} diff --git a/view/theme/frost-mobile/templates/comment_item.tpl b/view/theme/frost-mobile/templates/comment_item.tpl deleted file mode 100644 index ba68b4604..000000000 --- a/view/theme/frost-mobile/templates/comment_item.tpl +++ /dev/null @@ -1,44 +0,0 @@ -
-
- - - - - - - - - {{$mytitle}} -
    -
  • -
  • -
  • -
  • -
  • -
- - {{if $qcomment}} - - {{/if}} - -
- -
-
diff --git a/view/theme/frost-mobile/templates/common_tabs.tpl b/view/theme/frost-mobile/templates/common_tabs.tpl deleted file mode 100644 index e13cf2574..000000000 --- a/view/theme/frost-mobile/templates/common_tabs.tpl +++ /dev/null @@ -1,7 +0,0 @@ - - diff --git a/view/theme/frost-mobile/templates/contact_block.tpl b/view/theme/frost-mobile/templates/contact_block.tpl deleted file mode 100644 index f43aa95df..000000000 --- a/view/theme/frost-mobile/templates/contact_block.tpl +++ /dev/null @@ -1,13 +0,0 @@ - -{{**}} diff --git a/view/theme/frost-mobile/templates/contact_edit.tpl b/view/theme/frost-mobile/templates/contact_edit.tpl deleted file mode 100644 index e07f1d063..000000000 --- a/view/theme/frost-mobile/templates/contact_edit.tpl +++ /dev/null @@ -1,99 +0,0 @@ - - -

{{$header}}

- -
- - {{$tab_str}} - -
-
{{$name}}
-
{{$name}}
-
- - -
- -
-
- - -
- - -
- - {{include file="field_checkbox.tpl" field=$hidden}} - -
-

{{$lbl_info1}}

- - -
-
- - -
-

{{$lbl_vis1}}

-

{{$lbl_vis2}}

-
- -{{if $reason}} -
-

{{$lbl_info2}}

-

{{$reason}}

-
-
-{{/if}} - -{{$profile_select}} -
- - - -
-
diff --git a/view/theme/frost-mobile/templates/contact_head.tpl b/view/theme/frost-mobile/templates/contact_head.tpl deleted file mode 100644 index 8b1378917..000000000 --- a/view/theme/frost-mobile/templates/contact_head.tpl +++ /dev/null @@ -1 +0,0 @@ - diff --git a/view/theme/frost-mobile/templates/contact_template.tpl b/view/theme/frost-mobile/templates/contact_template.tpl deleted file mode 100644 index 3395c9dad..000000000 --- a/view/theme/frost-mobile/templates/contact_template.tpl +++ /dev/null @@ -1,45 +0,0 @@ - - -
-
-
- -{{**}} - - {{$contact.name}} - - - {{if $contact.photo_menu}} -{{**}} -
-
    - {{foreach $contact.photo_menu as $c}} - {{if $c.2}} -
  • {{$c.0}}
  • - {{else}} -
  • {{$c.0}}
  • - {{/if}} - {{/foreach}} -
-
- {{/if}} -
- -
- -
-
- {{$contact.name}} - {{if $contact.account_type}} ({{$contact.account_type}}){{/if}} -
- {{if $contact.alt_text}}
{{$contact.alt_text}}
{{/if}} - {{if $contact.itemurl}}
{{$contact.itemurl}}
{{/if}} - {{if $contact.tags}}
{{$contact.tags}}
{{/if}} - {{if $contact.details}}
{{$contact.details}}
{{/if}} - {{if $contact.network}}
{{$contact.network}}
{{/if}} -
- -
-
diff --git a/view/theme/frost-mobile/templates/contacts-end.tpl b/view/theme/frost-mobile/templates/contacts-end.tpl deleted file mode 100644 index 139597f9c..000000000 --- a/view/theme/frost-mobile/templates/contacts-end.tpl +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/view/theme/frost-mobile/templates/contacts-head.tpl b/view/theme/frost-mobile/templates/contacts-head.tpl deleted file mode 100644 index c7e9caae4..000000000 --- a/view/theme/frost-mobile/templates/contacts-head.tpl +++ /dev/null @@ -1,6 +0,0 @@ - - - - diff --git a/view/theme/frost-mobile/templates/contacts-template.tpl b/view/theme/frost-mobile/templates/contacts-template.tpl deleted file mode 100644 index f776222f3..000000000 --- a/view/theme/frost-mobile/templates/contacts-template.tpl +++ /dev/null @@ -1,28 +0,0 @@ - -

{{$header}}{{if $total}} ({{$total}}){{/if}}

- -{{if $finding}}

{{$finding}}

{{/if}} - -
-
-{{$desc}} - - -
-
-
- -{{$tabs}} - - - -{{foreach $contacts as $contact}} - {{include file="contact_template.tpl"}} -{{/foreach}} -
- -{{$paginate}} - - - - diff --git a/view/theme/frost-mobile/templates/contacts-widget-sidebar.tpl b/view/theme/frost-mobile/templates/contacts-widget-sidebar.tpl deleted file mode 100644 index ae0545496..000000000 --- a/view/theme/frost-mobile/templates/contacts-widget-sidebar.tpl +++ /dev/null @@ -1,3 +0,0 @@ - -{{$follow_widget}} - diff --git a/view/theme/frost-mobile/templates/conversation.tpl b/view/theme/frost-mobile/templates/conversation.tpl deleted file mode 100644 index 78a857c64..000000000 --- a/view/theme/frost-mobile/templates/conversation.tpl +++ /dev/null @@ -1,30 +0,0 @@ - -{{$live_update}} - -{{foreach $threads as $thread}} -
- {{foreach $thread.items as $item}} - {{if $item.comment_firstcollapsed}} -
- {{$thread.num_comments}} {{$thread.hide_text}} -
- {{/if}} - - {{include file="{{$item.template}}"}} - - - {{/foreach}} -
-{{/foreach}} - -
- -{{**}} diff --git a/view/theme/frost-mobile/templates/cropbody.tpl b/view/theme/frost-mobile/templates/cropbody.tpl deleted file mode 100644 index 2678488e7..000000000 --- a/view/theme/frost-mobile/templates/cropbody.tpl +++ /dev/null @@ -1,27 +0,0 @@ -

{{$title}}

-

-{{$desc}} -

-
-{{$title}} -
-
-
-
- -
- - - - - - - - - - -
- -
- -
diff --git a/view/theme/frost-mobile/templates/cropend.tpl b/view/theme/frost-mobile/templates/cropend.tpl deleted file mode 100644 index a26100e0d..000000000 --- a/view/theme/frost-mobile/templates/cropend.tpl +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/view/theme/frost-mobile/templates/crophead.tpl b/view/theme/frost-mobile/templates/crophead.tpl deleted file mode 100644 index cbfce8d83..000000000 --- a/view/theme/frost-mobile/templates/crophead.tpl +++ /dev/null @@ -1 +0,0 @@ - diff --git a/view/theme/frost-mobile/templates/display-head.tpl b/view/theme/frost-mobile/templates/display-head.tpl deleted file mode 100644 index 011104c8f..000000000 --- a/view/theme/frost-mobile/templates/display-head.tpl +++ /dev/null @@ -1,5 +0,0 @@ - - - diff --git a/view/theme/frost-mobile/templates/end.tpl b/view/theme/frost-mobile/templates/end.tpl deleted file mode 100644 index a37ae7bba..000000000 --- a/view/theme/frost-mobile/templates/end.tpl +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - diff --git a/view/theme/frost-mobile/templates/event.tpl b/view/theme/frost-mobile/templates/event.tpl deleted file mode 100644 index 8c84489cc..000000000 --- a/view/theme/frost-mobile/templates/event.tpl +++ /dev/null @@ -1,11 +0,0 @@ - -{{foreach $events as $event}} -
- - {{if $event.item.author_name}}{{$event.item.author_name}}{{/if}} - {{$event.html}} - {{if $event.item.plink}}{{/if}} - {{if $event.edit}}{{/if}} -
-
-{{/foreach}} diff --git a/view/theme/frost-mobile/templates/event_end.tpl b/view/theme/frost-mobile/templates/event_end.tpl deleted file mode 100644 index 8641b7c1b..000000000 --- a/view/theme/frost-mobile/templates/event_end.tpl +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/view/theme/frost-mobile/templates/event_head.tpl b/view/theme/frost-mobile/templates/event_head.tpl deleted file mode 100644 index e4abc175a..000000000 --- a/view/theme/frost-mobile/templates/event_head.tpl +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - diff --git a/view/theme/frost-mobile/templates/field_checkbox.tpl b/view/theme/frost-mobile/templates/field_checkbox.tpl deleted file mode 100644 index 4f094e089..000000000 --- a/view/theme/frost-mobile/templates/field_checkbox.tpl +++ /dev/null @@ -1,8 +0,0 @@ - - -
- - -
- {{$field.3}} -
diff --git a/view/theme/frost-mobile/templates/field_input.tpl b/view/theme/frost-mobile/templates/field_input.tpl deleted file mode 100644 index e2c519b91..000000000 --- a/view/theme/frost-mobile/templates/field_input.tpl +++ /dev/null @@ -1,6 +0,0 @@ - -
-
- - {{$field.3}} -
diff --git a/view/theme/frost-mobile/templates/field_openid.tpl b/view/theme/frost-mobile/templates/field_openid.tpl deleted file mode 100644 index 5c68f243c..000000000 --- a/view/theme/frost-mobile/templates/field_openid.tpl +++ /dev/null @@ -1,6 +0,0 @@ - -
-
- - {{$field.3}} -
diff --git a/view/theme/frost-mobile/templates/field_password.tpl b/view/theme/frost-mobile/templates/field_password.tpl deleted file mode 100644 index 1b51d0151..000000000 --- a/view/theme/frost-mobile/templates/field_password.tpl +++ /dev/null @@ -1,6 +0,0 @@ - -
-
- - {{$field.3}} -
diff --git a/view/theme/frost-mobile/templates/field_themeselect.tpl b/view/theme/frost-mobile/templates/field_themeselect.tpl deleted file mode 100644 index bf25ed356..000000000 --- a/view/theme/frost-mobile/templates/field_themeselect.tpl +++ /dev/null @@ -1,10 +0,0 @@ - - -
- - - {{$field.3}} -
-
diff --git a/view/theme/frost-mobile/templates/generic_links_widget.tpl b/view/theme/frost-mobile/templates/generic_links_widget.tpl deleted file mode 100644 index c2c96a771..000000000 --- a/view/theme/frost-mobile/templates/generic_links_widget.tpl +++ /dev/null @@ -1,13 +0,0 @@ - -
-{{**}} - {{if $desc}}
{{$desc}}
{{/if}} - - - -
diff --git a/view/theme/frost-mobile/templates/group_drop.tpl b/view/theme/frost-mobile/templates/group_drop.tpl deleted file mode 100644 index dbbe698dd..000000000 --- a/view/theme/frost-mobile/templates/group_drop.tpl +++ /dev/null @@ -1,10 +0,0 @@ - -
- -
-
diff --git a/view/theme/frost-mobile/templates/head.tpl b/view/theme/frost-mobile/templates/head.tpl deleted file mode 100644 index 0d4d468dc..000000000 --- a/view/theme/frost-mobile/templates/head.tpl +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/view/theme/frost-mobile/templates/jot-end.tpl b/view/theme/frost-mobile/templates/jot-end.tpl deleted file mode 100644 index 7455d355a..000000000 --- a/view/theme/frost-mobile/templates/jot-end.tpl +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/view/theme/frost-mobile/templates/jot-header.tpl b/view/theme/frost-mobile/templates/jot-header.tpl deleted file mode 100644 index 18e7f0005..000000000 --- a/view/theme/frost-mobile/templates/jot-header.tpl +++ /dev/null @@ -1,17 +0,0 @@ - - - - - diff --git a/view/theme/frost-mobile/templates/jot.tpl b/view/theme/frost-mobile/templates/jot.tpl deleted file mode 100644 index 0c31681b8..000000000 --- a/view/theme/frost-mobile/templates/jot.tpl +++ /dev/null @@ -1,89 +0,0 @@ - - -
-
-
 
-
-
-
- -
- - - - - - - - - -
- {{if $notes_cid}} - - {{/if}} - {{if $placeholdercategory}} -
- {{/if}} -
- {{**}} - -
- -
- - -
- -
- -
-
-
- {{**}} - {{**}} - -
- -
-
- -
-
- -
- - -
- {{$bang}} -
- - {{$preview}} - -
- - -
- {{$jotplugins}} -
- - - -
-
- {{$acl}} -
-
- - -
- -
-
-
- {{if $content}}{{/if}} diff --git a/view/theme/frost-mobile/templates/jot_geotag.tpl b/view/theme/frost-mobile/templates/jot_geotag.tpl deleted file mode 100644 index 3a87346db..000000000 --- a/view/theme/frost-mobile/templates/jot_geotag.tpl +++ /dev/null @@ -1,11 +0,0 @@ - - if(navigator.geolocation) { - navigator.geolocation.getCurrentPosition(function(position) { - var lat = position.coords.latitude.toFixed(4); - var lon = position.coords.longitude.toFixed(4); - - $('#jot-coord').val(lat + ', ' + lon); - $('#profile-nolocation-wrapper').show(); - }); - } - diff --git a/view/theme/frost-mobile/templates/like_noshare.tpl b/view/theme/frost-mobile/templates/like_noshare.tpl deleted file mode 100644 index 88120f191..000000000 --- a/view/theme/frost-mobile/templates/like_noshare.tpl +++ /dev/null @@ -1,8 +0,0 @@ - - diff --git a/view/theme/frost-mobile/templates/login.tpl b/view/theme/frost-mobile/templates/login.tpl deleted file mode 100644 index 9b418b2ae..000000000 --- a/view/theme/frost-mobile/templates/login.tpl +++ /dev/null @@ -1,46 +0,0 @@ - - - - - diff --git a/view/theme/frost-mobile/templates/lostpass.tpl b/view/theme/frost-mobile/templates/lostpass.tpl deleted file mode 100644 index 5a3a9d30e..000000000 --- a/view/theme/frost-mobile/templates/lostpass.tpl +++ /dev/null @@ -1,22 +0,0 @@ - -
-

{{$title}}

-


- -
-
-
- -
-
-

-{{$desc}} -

-
- -
- -
-
-
-
diff --git a/view/theme/frost-mobile/templates/mail_conv.tpl b/view/theme/frost-mobile/templates/mail_conv.tpl deleted file mode 100644 index 3d9eebec2..000000000 --- a/view/theme/frost-mobile/templates/mail_conv.tpl +++ /dev/null @@ -1,19 +0,0 @@ - -
-
- {{$mail.from_name}} -
-
-
{{$mail.from_name}}
-
{{$mail.date}}
-
{{$mail.subject}}
-
-
{{$mail.body}}
-
-
- - -
-
- -
diff --git a/view/theme/frost-mobile/templates/mail_list.tpl b/view/theme/frost-mobile/templates/mail_list.tpl deleted file mode 100644 index ffde5d68f..000000000 --- a/view/theme/frost-mobile/templates/mail_list.tpl +++ /dev/null @@ -1,17 +0,0 @@ - -
-
- {{$from_name}} -
-
-
{{$from_name}}
-
{{$date}}
- -
- -
-
-
-
- -
diff --git a/view/theme/frost-mobile/templates/message-end.tpl b/view/theme/frost-mobile/templates/message-end.tpl deleted file mode 100644 index 139597f9c..000000000 --- a/view/theme/frost-mobile/templates/message-end.tpl +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/view/theme/frost-mobile/templates/message-head.tpl b/view/theme/frost-mobile/templates/message-head.tpl deleted file mode 100644 index 8b1378917..000000000 --- a/view/theme/frost-mobile/templates/message-head.tpl +++ /dev/null @@ -1 +0,0 @@ - diff --git a/view/theme/frost-mobile/templates/moderated_comment.tpl b/view/theme/frost-mobile/templates/moderated_comment.tpl deleted file mode 100644 index e5c2e5b9a..000000000 --- a/view/theme/frost-mobile/templates/moderated_comment.tpl +++ /dev/null @@ -1,62 +0,0 @@ - -
-
- - - - - - - -
- {{$mytitle}} -
-
- -
    -
  • -
  • -
  • -
  • -
  • -
  • -
  • -
  • -
-
- - -
- - -
-
- -
diff --git a/view/theme/frost-mobile/templates/msg-end.tpl b/view/theme/frost-mobile/templates/msg-end.tpl deleted file mode 100644 index 18aec4e6a..000000000 --- a/view/theme/frost-mobile/templates/msg-end.tpl +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/view/theme/frost-mobile/templates/msg-header.tpl b/view/theme/frost-mobile/templates/msg-header.tpl deleted file mode 100644 index 5c920f733..000000000 --- a/view/theme/frost-mobile/templates/msg-header.tpl +++ /dev/null @@ -1,9 +0,0 @@ - - - diff --git a/view/theme/frost-mobile/templates/nav.tpl b/view/theme/frost-mobile/templates/nav.tpl deleted file mode 100644 index 48cbfa0ee..000000000 --- a/view/theme/frost-mobile/templates/nav.tpl +++ /dev/null @@ -1,147 +0,0 @@ - - - - diff --git a/view/theme/frost-mobile/templates/photo_drop.tpl b/view/theme/frost-mobile/templates/photo_drop.tpl deleted file mode 100644 index 524a771d8..000000000 --- a/view/theme/frost-mobile/templates/photo_drop.tpl +++ /dev/null @@ -1,5 +0,0 @@ - -
- -
-
diff --git a/view/theme/frost-mobile/templates/photo_edit.tpl b/view/theme/frost-mobile/templates/photo_edit.tpl deleted file mode 100644 index 7e66448cf..000000000 --- a/view/theme/frost-mobile/templates/photo_edit.tpl +++ /dev/null @@ -1,59 +0,0 @@ - - -
- - - -
- - -
- -
- -
- - -
- -
- -
- - -
- -
- -
- -
-
- -
- - -
-
- -
- -
{{$permissions}}
-
-
- -
-
- {{$aclselect}} -
-
-
-
- - - - -
-
- - diff --git a/view/theme/frost-mobile/templates/photo_edit_head.tpl b/view/theme/frost-mobile/templates/photo_edit_head.tpl deleted file mode 100644 index 5bcd94a1f..000000000 --- a/view/theme/frost-mobile/templates/photo_edit_head.tpl +++ /dev/null @@ -1,8 +0,0 @@ - - - diff --git a/view/theme/frost-mobile/templates/photo_view.tpl b/view/theme/frost-mobile/templates/photo_view.tpl deleted file mode 100644 index a5fb2f041..000000000 --- a/view/theme/frost-mobile/templates/photo_view.tpl +++ /dev/null @@ -1,43 +0,0 @@ - -
-

{{$album.1}}

- - - -
- {{if $prevlink}}{{/if}} - {{if $nextlink}}{{/if}} -
-
-
-
{{$desc}}
-{{if $tags}} -
{{$tags.0}}
-
{{$tags.1}}
-{{/if}} -{{if $tags.2}}{{/if}} - -{{if $edit}} -{{$edit}} -{{else}} - -{{if $likebuttons}} -
- {{$likebuttons}} - {{$like}} - {{$dislike}} -
-{{/if}} - -{{$comments}} - -{{$paginate}} -{{/if}} - diff --git a/view/theme/frost-mobile/templates/photos_head.tpl b/view/theme/frost-mobile/templates/photos_head.tpl deleted file mode 100644 index 5ba31db0c..000000000 --- a/view/theme/frost-mobile/templates/photos_head.tpl +++ /dev/null @@ -1,6 +0,0 @@ - - - - diff --git a/view/theme/frost-mobile/templates/photos_upload.tpl b/view/theme/frost-mobile/templates/photos_upload.tpl deleted file mode 100644 index 6b76123d3..000000000 --- a/view/theme/frost-mobile/templates/photos_upload.tpl +++ /dev/null @@ -1,51 +0,0 @@ - -

{{$pagename}}

- -
{{$usage}}
- -
-
-
- -
- -
-
-
-
{{$existalbumtext}}
- -
-
- - {{$default_upload_box}} - -
- - -
- - - -
- -
-
- {{$aclselect}} -
-
- -
- - {{$alt_uploader}} - - {{$default_upload_submit}} - -
-
- diff --git a/view/theme/frost-mobile/templates/profed_end.tpl b/view/theme/frost-mobile/templates/profed_end.tpl deleted file mode 100644 index a54fe60dd..000000000 --- a/view/theme/frost-mobile/templates/profed_end.tpl +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - diff --git a/view/theme/frost-mobile/templates/profed_head.tpl b/view/theme/frost-mobile/templates/profed_head.tpl deleted file mode 100644 index e69de29bb..000000000 diff --git a/view/theme/frost-mobile/templates/profile_edit.tpl b/view/theme/frost-mobile/templates/profile_edit.tpl deleted file mode 100644 index 8d7407b09..000000000 --- a/view/theme/frost-mobile/templates/profile_edit.tpl +++ /dev/null @@ -1,320 +0,0 @@ - -{{$default}} - -

{{$banner}}

- - - - - - -
-
- - -
- -
*
-
-
- -
- - -
-
- -
- - -
-
- - -
- -{{$gender}} -
-
- -
-{{$dob}} -
-
- -{{$hide_friends}} - -
- -
-
- - -
- - -
-
- -
- - -
-
- - -
- - -
-
- -
- - -
-
- -
- - -
-
- -
- - -
-
- -
- -
-
- -
- -{{$marital}} -
- - - - - -
- -
- -{{$sexual}} -
-
- - - -
- - -
-
- -
- - -
-
- -
- - -
-
- -
- - -
{{$pub_keywords.3}}
-
- -
- - -
{{$prv_keywords.3}}
-
- - -
- -
-
- -
-

-{{$about.1}} -

- - - -
-
- - -
-

-{{$interest.1}} -

- - - -
-
- - -
-

-{{$likes.1}} -

- - - -
-
- - -
-

-{{$dislikes.1}} -

- - - -
-
- - -
-

-{{$contact.1}} -

- - - -
-
- - -
- -
-
- - -
-

-{{$music.1}} -

- - - -
-
- -
-

-{{$book.1}} -

- - - -
-
- - - -
-

-{{$tv.1}} -

- - - -
-
- - - -
-

-{{$film.1}} -

- - - -
-
- - -
- -
-
- - -
-

-{{$romance.1}} -

- - - -
-
- - - -
-

-{{$work.1}} -

- - - -
-
- - - -
-

-{{$education.1}} -

- - - -
-
- - - -
- -
-
- - -
-
- diff --git a/view/theme/frost-mobile/templates/profile_photo.tpl b/view/theme/frost-mobile/templates/profile_photo.tpl deleted file mode 100644 index 13ae454cd..000000000 --- a/view/theme/frost-mobile/templates/profile_photo.tpl +++ /dev/null @@ -1,20 +0,0 @@ - -

{{$title}}

- -
- - -
- - -
- -
- -
- -
- - diff --git a/view/theme/frost-mobile/templates/profile_vcard.tpl b/view/theme/frost-mobile/templates/profile_vcard.tpl deleted file mode 100644 index c37b528ce..000000000 --- a/view/theme/frost-mobile/templates/profile_vcard.tpl +++ /dev/null @@ -1,54 +0,0 @@ - -
- -
{{$profile.name}}
- - {{if $profile.addr}}
{{$profile.addr}}
{{/if}} - - {{if $profile.pdesc}}
{{$profile.pdesc}}
{{/if}} -
{{$profile.name}}
- - {{if $account_type}}{{/if}} - - {{if $profile.network_name}}
{{$network}}
{{$profile.network_name}}
{{/if}} - - {{if $location}} -
{{$location}}
-
- {{if $profile.address}}
{{$profile.address}}
{{/if}} - - {{$profile.locality}}{{if $profile.locality}}, {{/if}} - {{$profile.region}} - {{$profile.postal_code}} - - {{if $profile.country_name}}{{$profile.country_name}}{{/if}} -
-
- {{/if}} - - {{if $gender}}
{{$gender}}
{{$profile.gender}}
{{/if}} - - {{if $profile.pubkey}}{{/if}} - - {{if $marital}}
{{$marital}}
{{$profile.marital}}
{{/if}} - - {{if $homepage}}
{{$homepage}}
{{$profile.homepage}}
{{/if}} - - {{include file="diaspora_vcard.tpl"}} - -
- -
- -{{$contact_block}} - - diff --git a/view/theme/frost-mobile/templates/prv_message.tpl b/view/theme/frost-mobile/templates/prv_message.tpl deleted file mode 100644 index 3cb3655f0..000000000 --- a/view/theme/frost-mobile/templates/prv_message.tpl +++ /dev/null @@ -1,40 +0,0 @@ - - -

{{$header}}

- -
-
- -{{$parent}} - -
{{$to}}
- -{{if $showinputs}} - - -{{else}} -{{$select}} -{{/if}} - -
{{$subject}}
- - -
{{$yourmessage}}
- - - -
- -
-
-
- -
- -
-
-
-
-
diff --git a/view/theme/frost-mobile/templates/register.tpl b/view/theme/frost-mobile/templates/register.tpl deleted file mode 100644 index b3c1ae132..000000000 --- a/view/theme/frost-mobile/templates/register.tpl +++ /dev/null @@ -1,81 +0,0 @@ - -
-

{{$regtitle}}

-
- -
- - - - {{$registertext}} - -

{{$realpeople}}

- -
-{{if $oidlabel}} -
- -
-
-{{/if}} - -
-

{{$fillwith}} {{$fillext}}

-
- -

- -{{if $invitations}} - -

{{$invite_desc}}

-
- - -
-
- -{{/if}} - - -
-
- -
-
- - -
-
- -
-
- -
-
- -
-
- -
-

{{$nickdesc}}

-
- - {{$publish}} - - -
-


- -{{$license}} - -
diff --git a/view/theme/frost-mobile/templates/search_item.tpl b/view/theme/frost-mobile/templates/search_item.tpl deleted file mode 100644 index bed73c018..000000000 --- a/view/theme/frost-mobile/templates/search_item.tpl +++ /dev/null @@ -1,65 +0,0 @@ - - -{{**}} -
-
- {{**}} - - {{$item.name}} - {{**}} - {{**}} -
- {{if $item.lock}}{{**}}{{$item.lock}}{{**}} - {{else}}
{{/if}} -
{{$item.location}}
-
-
- {{**}} - {{$item.name}} -
{{$item.ago}}
- - {{**}} -
-
{{$item.title}}
- {{**}} -
{{$item.body}}
- {{if $item.has_cats}} -
{{$item.txt_cats}} {{foreach $item.categories as $cat}}{{$cat.name}}{{if $cat.removeurl}} [{{$remove}}]{{/if}} {{if $cat.last}}{{else}}, {{/if}}{{/foreach}} -
- {{/if}} - - {{if $item.has_folders}} -
{{$item.txt_folders}} {{foreach $item.folders as $cat}}{{$cat.name}}{{if $cat.removeurl}} [{{$remove}}]{{/if}}{{if $cat.last}}{{else}}, {{/if}}{{/foreach}} -
- {{/if}} -
-
- {{**}} - {{if $item.drop.dropping}}{{/if}} - {{**}} - {{if $item.drop.pagedrop}}{{/if}} - {{**}} -
-
- {{**}} - - -
- {{if $item.conv}} - {{$item.conv.title}} - {{/if}} -
- -{{**}} diff --git a/view/theme/frost-mobile/templates/settings/display_end.tpl b/view/theme/frost-mobile/templates/settings/display_end.tpl deleted file mode 100644 index 14af58216..000000000 --- a/view/theme/frost-mobile/templates/settings/display_end.tpl +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/view/theme/frost-mobile/templates/settings/head.tpl b/view/theme/frost-mobile/templates/settings/head.tpl deleted file mode 100644 index 5ba31db0c..000000000 --- a/view/theme/frost-mobile/templates/settings/head.tpl +++ /dev/null @@ -1,6 +0,0 @@ - - - - diff --git a/view/theme/frost-mobile/templates/settings/settings.tpl b/view/theme/frost-mobile/templates/settings/settings.tpl deleted file mode 100644 index 5715e1712..000000000 --- a/view/theme/frost-mobile/templates/settings/settings.tpl +++ /dev/null @@ -1,145 +0,0 @@ - -

{{$ptitle}}

- -{{$nickname_block}} - -
- - -

{{$h_pass}}

- -{{include file="field_password.tpl" field=$password1}} -{{include file="field_password.tpl" field=$password2}} -{{include file="field_password.tpl" field=$password3}} - -{{if $oid_enable}} -{{include file="field_input.tpl" field=$openid}} -{{/if}} - -
- -
- - -

{{$h_basic}}

- -{{include file="field_input.tpl" field=$username}} -{{include file="field_input.tpl" field=$email}} -{{include file="field_password.tpl" field=$password4}} -{{include file="field_custom.tpl" field=$timezone}} -{{include file="field_select.tpl" field=$language}} -{{include file="field_input.tpl" field=$defloc}} -{{include file="field_checkbox.tpl" field=$allowloc}} - - -
- -
- - -

{{$h_prv}}

- - - - -{{include file="field_input.tpl" field=$maxreq}} - -{{$profile_in_dir}} - -{{$profile_in_net_dir}} - -{{$hide_friends}} - -{{$hide_wall}} - -{{$blockwall}} - -{{$blocktags}} - -{{$suggestme}} - -{{$unkmail}} - - -{{include file="field_input.tpl" field=$cntunkmail}} - -{{include file="field_input.tpl" field=$expire.days}} - - -
- {{$expire.label}} -
-
-

{{$expire.advanced}}

- {{include file="field_yesno.tpl" field=$expire.items}} - {{include file="field_yesno.tpl" field=$expire.notes}} - {{include file="field_yesno.tpl" field=$expire.starred}} - {{include file="field_yesno.tpl" field=$expire.network_only}} -
-
- -
- - -
- {{$permissions}} {{$permdesc}} -
- -{{**}} - -
-
- {{$aclselect}} -
-
- -{{**}} -
-
-
- -{{$group_select}} - - -
- -
- - - -

{{$h_not}}

-
- -
{{$lbl_not}}
- -
-{{include file="field_intcheckbox.tpl" field=$notify1}} -{{include file="field_intcheckbox.tpl" field=$notify2}} -{{include file="field_intcheckbox.tpl" field=$notify3}} -{{include file="field_intcheckbox.tpl" field=$notify4}} -{{include file="field_intcheckbox.tpl" field=$notify5}} -{{include file="field_intcheckbox.tpl" field=$notify6}} -{{include file="field_intcheckbox.tpl" field=$notify7}} -{{include file="field_intcheckbox.tpl" field=$notify8}} -
- -{{include file="field_checkbox.tpl" field=$email_textonly}} -{{include file="field_checkbox.tpl" field=$detailed_notif}} - -
- -
- -
- - -

{{$h_advn}}

-
{{$h_descadvn}}
- -{{$pagetype}} - -
- -
- - diff --git a/view/theme/frost-mobile/templates/threaded_conversation.tpl b/view/theme/frost-mobile/templates/threaded_conversation.tpl deleted file mode 100644 index 13a5e2d28..000000000 --- a/view/theme/frost-mobile/templates/threaded_conversation.tpl +++ /dev/null @@ -1,16 +0,0 @@ - -{{$live_update}} - -{{foreach $threads as $thread}} -{{include file="{{$thread.template}}" item=$thread}} -{{/foreach}} - -
- -{{**}} diff --git a/view/theme/frost-mobile/templates/voting_fakelink.tpl b/view/theme/frost-mobile/templates/voting_fakelink.tpl deleted file mode 100644 index 16349f272..000000000 --- a/view/theme/frost-mobile/templates/voting_fakelink.tpl +++ /dev/null @@ -1,2 +0,0 @@ - -{{$phrase}} diff --git a/view/theme/frost-mobile/templates/wall_thread.tpl b/view/theme/frost-mobile/templates/wall_thread.tpl deleted file mode 100644 index be8d00d85..000000000 --- a/view/theme/frost-mobile/templates/wall_thread.tpl +++ /dev/null @@ -1,143 +0,0 @@ - -{{if $item.comment_firstcollapsed}} -
- {{$item.num_comments}} {{$item.hide_text}} -
- {{/if}} - diff --git a/view/theme/frost-mobile/templates/wallmsg-end.tpl b/view/theme/frost-mobile/templates/wallmsg-end.tpl deleted file mode 100644 index 18aec4e6a..000000000 --- a/view/theme/frost-mobile/templates/wallmsg-end.tpl +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/view/theme/frost-mobile/templates/wallmsg-header.tpl b/view/theme/frost-mobile/templates/wallmsg-header.tpl deleted file mode 100644 index 752085dbd..000000000 --- a/view/theme/frost-mobile/templates/wallmsg-header.tpl +++ /dev/null @@ -1,5 +0,0 @@ - - diff --git a/view/theme/frost-mobile/theme.php b/view/theme/frost-mobile/theme.php deleted file mode 100644 index 68b3ad710..000000000 --- a/view/theme/frost-mobile/theme.php +++ /dev/null @@ -1,36 +0,0 @@ - - * Maintainer: Zach P - */ - -use Friendica\App; -use Friendica\Core\System; - -function frost_mobile_init(App $a) { - $a->sourcename = 'Friendica mobile web'; - $a->videowidth = 250; - $a->videoheight = 200; - $a->force_max_items = 10; - $a->set_template_engine('smarty3'); -} - -function frost_mobile_content_loaded(App $a) { - - // I could do this in style.php, but by having the CSS in a file the browser will cache it, - // making pages load faster - if ( $a->module === 'home' || $a->module === 'login' || $a->module === 'register' || $a->module === 'lostpass' ) { -// $a->page['htmlhead'] = str_replace('$stylesheet', System::baseUrl() . '/view/theme/frost-mobile/login-style.css', $a->page['htmlhead']); - $a->theme['stylesheet'] = System::baseUrl() . '/view/theme/frost-mobile/login-style.css'; - } - - if ( $a->module === 'login' ) { - $a->page['end'] .= ''; - } - -} diff --git a/view/theme/frost-mobile/unsupported b/view/theme/frost-mobile/unsupported deleted file mode 100644 index e69de29bb..000000000 diff --git a/view/theme/frost/TODO b/view/theme/frost/TODO deleted file mode 100644 index 9c8908b83..000000000 --- a/view/theme/frost/TODO +++ /dev/null @@ -1,13 +0,0 @@ -Home page edit pencil -Preview spacing -Photo album display - -"Profiles" page is wonky -Settings, admin, photos upload don't look beautiful - -Threading: - - indentation - - top-level "show more" looks bad - - need some visual way to tie sub-comments to their parent comments - - need a way to change styles if the system allows threading or not - - just don't allow? diff --git a/view/theme/frost/border.jpg b/view/theme/frost/border.jpg deleted file mode 100644 index 034a1cb63..000000000 Binary files a/view/theme/frost/border.jpg and /dev/null differ diff --git a/view/theme/frost/editicons.png b/view/theme/frost/editicons.png deleted file mode 100644 index 171a40876..000000000 Binary files a/view/theme/frost/editicons.png and /dev/null differ diff --git a/view/theme/frost/file.gif b/view/theme/frost/file.gif deleted file mode 100644 index 7885b998d..000000000 Binary files a/view/theme/frost/file.gif and /dev/null differ diff --git a/view/theme/frost/friendica-16.png b/view/theme/frost/friendica-16.png deleted file mode 100644 index 1a742ecdc..000000000 Binary files a/view/theme/frost/friendica-16.png and /dev/null differ diff --git a/view/theme/frost/head.jpg b/view/theme/frost/head.jpg deleted file mode 100644 index 6210b76be..000000000 Binary files a/view/theme/frost/head.jpg and /dev/null differ diff --git a/view/theme/frost/images/ajax-loader.gif b/view/theme/frost/images/ajax-loader.gif deleted file mode 100644 index e15844396..000000000 Binary files a/view/theme/frost/images/ajax-loader.gif and /dev/null differ diff --git a/view/theme/frost/images/approve-16.png b/view/theme/frost/images/approve-16.png deleted file mode 100644 index 170e62c8e..000000000 Binary files a/view/theme/frost/images/approve-16.png and /dev/null differ diff --git a/view/theme/frost/images/approve.png b/view/theme/frost/images/approve.png deleted file mode 100644 index 473c646e5..000000000 Binary files a/view/theme/frost/images/approve.png and /dev/null differ diff --git a/view/theme/frost/images/boldB-serif-16.png b/view/theme/frost/images/boldB-serif-16.png deleted file mode 100644 index 08d1ee5cb..000000000 Binary files a/view/theme/frost/images/boldB-serif-16.png and /dev/null differ diff --git a/view/theme/frost/images/camera-16.png b/view/theme/frost/images/camera-16.png deleted file mode 100644 index 46b5db631..000000000 Binary files a/view/theme/frost/images/camera-16.png and /dev/null differ diff --git a/view/theme/frost/images/camera.png b/view/theme/frost/images/camera.png deleted file mode 100644 index aa5935b7c..000000000 Binary files a/view/theme/frost/images/camera.png and /dev/null differ diff --git a/view/theme/frost/images/code-16.png b/view/theme/frost/images/code-16.png deleted file mode 100644 index e5589222e..000000000 Binary files a/view/theme/frost/images/code-16.png and /dev/null differ diff --git a/view/theme/frost/images/code.png b/view/theme/frost/images/code.png deleted file mode 100644 index 448e49df0..000000000 Binary files a/view/theme/frost/images/code.png and /dev/null differ diff --git a/view/theme/frost/images/contacts.png b/view/theme/frost/images/contacts.png deleted file mode 100644 index e870470d0..000000000 Binary files a/view/theme/frost/images/contacts.png and /dev/null differ diff --git a/view/theme/frost/images/disapprove-16.png b/view/theme/frost/images/disapprove-16.png deleted file mode 100644 index 83ddcdb87..000000000 Binary files a/view/theme/frost/images/disapprove-16.png and /dev/null differ diff --git a/view/theme/frost/images/disapprove.png b/view/theme/frost/images/disapprove.png deleted file mode 100644 index fa58d020e..000000000 Binary files a/view/theme/frost/images/disapprove.png and /dev/null differ diff --git a/view/theme/frost/images/drop-16.png b/view/theme/frost/images/drop-16.png deleted file mode 100644 index 30147aee9..000000000 Binary files a/view/theme/frost/images/drop-16.png and /dev/null differ diff --git a/view/theme/frost/images/drop-red.png b/view/theme/frost/images/drop-red.png deleted file mode 100644 index 91b0260ce..000000000 Binary files a/view/theme/frost/images/drop-red.png and /dev/null differ diff --git a/view/theme/frost/images/drop.png b/view/theme/frost/images/drop.png deleted file mode 100644 index af38adf5e..000000000 Binary files a/view/theme/frost/images/drop.png and /dev/null differ diff --git a/view/theme/frost/images/event-attend-16.png b/view/theme/frost/images/event-attend-16.png deleted file mode 100644 index b96a92aef..000000000 Binary files a/view/theme/frost/images/event-attend-16.png and /dev/null differ diff --git a/view/theme/frost/images/event-attend.png b/view/theme/frost/images/event-attend.png deleted file mode 100644 index f555fbb4a..000000000 Binary files a/view/theme/frost/images/event-attend.png and /dev/null differ diff --git a/view/theme/frost/images/event-dontattend-16.png b/view/theme/frost/images/event-dontattend-16.png deleted file mode 100644 index 56351f25f..000000000 Binary files a/view/theme/frost/images/event-dontattend-16.png and /dev/null differ diff --git a/view/theme/frost/images/event-dontattend.png b/view/theme/frost/images/event-dontattend.png deleted file mode 100644 index 2dd0c731e..000000000 Binary files a/view/theme/frost/images/event-dontattend.png and /dev/null differ diff --git a/view/theme/frost/images/event-maybeattend-16.png b/view/theme/frost/images/event-maybeattend-16.png deleted file mode 100644 index ab6ee336f..000000000 Binary files a/view/theme/frost/images/event-maybeattend-16.png and /dev/null differ diff --git a/view/theme/frost/images/event-maybeattend.png b/view/theme/frost/images/event-maybeattend.png deleted file mode 100644 index 16daa3208..000000000 Binary files a/view/theme/frost/images/event-maybeattend.png and /dev/null differ diff --git a/view/theme/frost/images/folder-16.png b/view/theme/frost/images/folder-16.png deleted file mode 100644 index aab49c8d3..000000000 Binary files a/view/theme/frost/images/folder-16.png and /dev/null differ diff --git a/view/theme/frost/images/folder.png b/view/theme/frost/images/folder.png deleted file mode 100644 index 86dd21029..000000000 Binary files a/view/theme/frost/images/folder.png and /dev/null differ diff --git a/view/theme/frost/images/globe.png b/view/theme/frost/images/globe.png deleted file mode 100644 index f84632bff..000000000 Binary files a/view/theme/frost/images/globe.png and /dev/null differ diff --git a/view/theme/frost/images/italicI-serif-16.png b/view/theme/frost/images/italicI-serif-16.png deleted file mode 100644 index 96851118c..000000000 Binary files a/view/theme/frost/images/italicI-serif-16.png and /dev/null differ diff --git a/view/theme/frost/images/link-16.png b/view/theme/frost/images/link-16.png deleted file mode 100644 index 744fd6b3c..000000000 Binary files a/view/theme/frost/images/link-16.png and /dev/null differ diff --git a/view/theme/frost/images/link.png b/view/theme/frost/images/link.png deleted file mode 100644 index e6fdb4eec..000000000 Binary files a/view/theme/frost/images/link.png and /dev/null differ diff --git a/view/theme/frost/images/lock-24.png b/view/theme/frost/images/lock-24.png deleted file mode 100644 index 8d20c12b6..000000000 Binary files a/view/theme/frost/images/lock-24.png and /dev/null differ diff --git a/view/theme/frost/images/lock.png b/view/theme/frost/images/lock.png deleted file mode 100644 index b8b8cd20e..000000000 Binary files a/view/theme/frost/images/lock.png and /dev/null differ diff --git a/view/theme/frost/images/menu.png b/view/theme/frost/images/menu.png deleted file mode 100644 index 44d5285fe..000000000 Binary files a/view/theme/frost/images/menu.png and /dev/null differ diff --git a/view/theme/frost/images/message.png b/view/theme/frost/images/message.png deleted file mode 100644 index 8f735aed0..000000000 Binary files a/view/theme/frost/images/message.png and /dev/null differ diff --git a/view/theme/frost/images/net-reset.png b/view/theme/frost/images/net-reset.png deleted file mode 100644 index 8ea1afc5f..000000000 Binary files a/view/theme/frost/images/net-reset.png and /dev/null differ diff --git a/view/theme/frost/images/network.png b/view/theme/frost/images/network.png deleted file mode 100644 index 943e3252f..000000000 Binary files a/view/theme/frost/images/network.png and /dev/null differ diff --git a/view/theme/frost/images/noglobe.png b/view/theme/frost/images/noglobe.png deleted file mode 100644 index b5aceb6d5..000000000 Binary files a/view/theme/frost/images/noglobe.png and /dev/null differ diff --git a/view/theme/frost/images/notifications.png b/view/theme/frost/images/notifications.png deleted file mode 100644 index 27bacc672..000000000 Binary files a/view/theme/frost/images/notifications.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/LICENSE b/view/theme/frost/images/oxygen/LICENSE deleted file mode 100644 index 65c5ca88a..000000000 --- a/view/theme/frost/images/oxygen/LICENSE +++ /dev/null @@ -1,165 +0,0 @@ - GNU LESSER GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - - This version of the GNU Lesser General Public License incorporates -the terms and conditions of version 3 of the GNU General Public -License, supplemented by the additional permissions listed below. - - 0. Additional Definitions. - - As used herein, "this License" refers to version 3 of the GNU Lesser -General Public License, and the "GNU GPL" refers to version 3 of the GNU -General Public License. - - "The Library" refers to a covered work governed by this License, -other than an Application or a Combined Work as defined below. - - An "Application" is any work that makes use of an interface provided -by the Library, but which is not otherwise based on the Library. -Defining a subclass of a class defined by the Library is deemed a mode -of using an interface provided by the Library. - - A "Combined Work" is a work produced by combining or linking an -Application with the Library. The particular version of the Library -with which the Combined Work was made is also called the "Linked -Version". - - The "Minimal Corresponding Source" for a Combined Work means the -Corresponding Source for the Combined Work, excluding any source code -for portions of the Combined Work that, considered in isolation, are -based on the Application, and not on the Linked Version. - - The "Corresponding Application Code" for a Combined Work means the -object code and/or source code for the Application, including any data -and utility programs needed for reproducing the Combined Work from the -Application, but excluding the System Libraries of the Combined Work. - - 1. Exception to Section 3 of the GNU GPL. - - You may convey a covered work under sections 3 and 4 of this License -without being bound by section 3 of the GNU GPL. - - 2. Conveying Modified Versions. - - If you modify a copy of the Library, and, in your modifications, a -facility refers to a function or data to be supplied by an Application -that uses the facility (other than as an argument passed when the -facility is invoked), then you may convey a copy of the modified -version: - - a) under this License, provided that you make a good faith effort to - ensure that, in the event an Application does not supply the - function or data, the facility still operates, and performs - whatever part of its purpose remains meaningful, or - - b) under the GNU GPL, with none of the additional permissions of - this License applicable to that copy. - - 3. Object Code Incorporating Material from Library Header Files. - - The object code form of an Application may incorporate material from -a header file that is part of the Library. You may convey such object -code under terms of your choice, provided that, if the incorporated -material is not limited to numerical parameters, data structure -layouts and accessors, or small macros, inline functions and templates -(ten or fewer lines in length), you do both of the following: - - a) Give prominent notice with each copy of the object code that the - Library is used in it and that the Library and its use are - covered by this License. - - b) Accompany the object code with a copy of the GNU GPL and this license - document. - - 4. Combined Works. - - You may convey a Combined Work under terms of your choice that, -taken together, effectively do not restrict modification of the -portions of the Library contained in the Combined Work and reverse -engineering for debugging such modifications, if you also do each of -the following: - - a) Give prominent notice with each copy of the Combined Work that - the Library is used in it and that the Library and its use are - covered by this License. - - b) Accompany the Combined Work with a copy of the GNU GPL and this license - document. - - c) For a Combined Work that displays copyright notices during - execution, include the copyright notice for the Library among - these notices, as well as a reference directing the user to the - copies of the GNU GPL and this license document. - - d) Do one of the following: - - 0) Convey the Minimal Corresponding Source under the terms of this - License, and the Corresponding Application Code in a form - suitable for, and under terms that permit, the user to - recombine or relink the Application with a modified version of - the Linked Version to produce a modified Combined Work, in the - manner specified by section 6 of the GNU GPL for conveying - Corresponding Source. - - 1) Use a suitable shared library mechanism for linking with the - Library. A suitable mechanism is one that (a) uses at run time - a copy of the Library already present on the user's computer - system, and (b) will operate properly with a modified version - of the Library that is interface-compatible with the Linked - Version. - - e) Provide Installation Information, but only if you would otherwise - be required to provide such information under section 6 of the - GNU GPL, and only to the extent that such information is - necessary to install and execute a modified version of the - Combined Work produced by recombining or relinking the - Application with a modified version of the Linked Version. (If - you use option 4d0, the Installation Information must accompany - the Minimal Corresponding Source and Corresponding Application - Code. If you use option 4d1, you must provide the Installation - Information in the manner specified by section 6 of the GNU GPL - for conveying Corresponding Source.) - - 5. Combined Libraries. - - You may place library facilities that are a work based on the -Library side by side in a single library together with other library -facilities that are not Applications and are not covered by this -License, and convey such a combined library under terms of your -choice, if you do both of the following: - - a) Accompany the combined library with a copy of the same work based - on the Library, uncombined with any other library facilities, - conveyed under the terms of this License. - - b) Give prominent notice with the combined library that part of it - is a work based on the Library, and explaining where to find the - accompanying uncombined form of the same work. - - 6. Revised Versions of the GNU Lesser General Public License. - - The Free Software Foundation may publish revised and/or new versions -of the GNU Lesser General Public License from time to time. Such new -versions will be similar in spirit to the present version, but may -differ in detail to address new problems or concerns. - - Each version is given a distinguishing version number. If the -Library as you received it specifies that a certain numbered version -of the GNU Lesser General Public License "or any later version" -applies to it, you have the option of following the terms and -conditions either of that published version or of any later version -published by the Free Software Foundation. If the Library as you -received it does not specify a version number of the GNU Lesser -General Public License, you may choose any version of the GNU Lesser -General Public License ever published by the Free Software Foundation. - - If the Library as you received it specifies that a proxy can decide -whether future versions of the GNU Lesser General Public License shall -apply, that proxy's public statement of acceptance of any version is -permanent authorization for you to choose that version for the -Library. diff --git a/view/theme/frost/images/oxygen/application-msword.png b/view/theme/frost/images/oxygen/application-msword.png deleted file mode 100644 index aa5aaf31a..000000000 Binary files a/view/theme/frost/images/oxygen/application-msword.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/application-pdf.png b/view/theme/frost/images/oxygen/application-pdf.png deleted file mode 100644 index bc954ff64..000000000 Binary files a/view/theme/frost/images/oxygen/application-pdf.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/application-vnd.ms-excel.png b/view/theme/frost/images/oxygen/application-vnd.ms-excel.png deleted file mode 100644 index aa0d99597..000000000 Binary files a/view/theme/frost/images/oxygen/application-vnd.ms-excel.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/application-vnd.ms-powerpoint.png b/view/theme/frost/images/oxygen/application-vnd.ms-powerpoint.png deleted file mode 100644 index 022b5152e..000000000 Binary files a/view/theme/frost/images/oxygen/application-vnd.ms-powerpoint.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/application-vnd.oasis.opendocument.presentation.png b/view/theme/frost/images/oxygen/application-vnd.oasis.opendocument.presentation.png deleted file mode 100644 index cb573b5c7..000000000 Binary files a/view/theme/frost/images/oxygen/application-vnd.oasis.opendocument.presentation.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/application-vnd.oasis.opendocument.spreadsheet.png b/view/theme/frost/images/oxygen/application-vnd.oasis.opendocument.spreadsheet.png deleted file mode 100644 index 6b8030edd..000000000 Binary files a/view/theme/frost/images/oxygen/application-vnd.oasis.opendocument.spreadsheet.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/application-vnd.oasis.opendocument.text.png b/view/theme/frost/images/oxygen/application-vnd.oasis.opendocument.text.png deleted file mode 100644 index 1adb56e25..000000000 Binary files a/view/theme/frost/images/oxygen/application-vnd.oasis.opendocument.text.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/application-x-bzip-compressed-tar.png b/view/theme/frost/images/oxygen/application-x-bzip-compressed-tar.png deleted file mode 100644 index d7dd1d1fb..000000000 Binary files a/view/theme/frost/images/oxygen/application-x-bzip-compressed-tar.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/application-x-compressed-tar.png b/view/theme/frost/images/oxygen/application-x-compressed-tar.png deleted file mode 100644 index adda68505..000000000 Binary files a/view/theme/frost/images/oxygen/application-x-compressed-tar.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/application-x-deb.png b/view/theme/frost/images/oxygen/application-x-deb.png deleted file mode 100644 index 1832d3b73..000000000 Binary files a/view/theme/frost/images/oxygen/application-x-deb.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/application-x-font-otf.png b/view/theme/frost/images/oxygen/application-x-font-otf.png deleted file mode 100644 index 68fb5dd01..000000000 Binary files a/view/theme/frost/images/oxygen/application-x-font-otf.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/application-x-font-ttf.png b/view/theme/frost/images/oxygen/application-x-font-ttf.png deleted file mode 100644 index 93b92fb26..000000000 Binary files a/view/theme/frost/images/oxygen/application-x-font-ttf.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/application-x-java-archive.png b/view/theme/frost/images/oxygen/application-x-java-archive.png deleted file mode 100644 index 4883b2d7a..000000000 Binary files a/view/theme/frost/images/oxygen/application-x-java-archive.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/application-x-lzma-compressed-tar.png b/view/theme/frost/images/oxygen/application-x-lzma-compressed-tar.png deleted file mode 100644 index 6092aedd3..000000000 Binary files a/view/theme/frost/images/oxygen/application-x-lzma-compressed-tar.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/application-x-php.png b/view/theme/frost/images/oxygen/application-x-php.png deleted file mode 100644 index f133c87a2..000000000 Binary files a/view/theme/frost/images/oxygen/application-x-php.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/application-x-rar.png b/view/theme/frost/images/oxygen/application-x-rar.png deleted file mode 100644 index a9b1b12a6..000000000 Binary files a/view/theme/frost/images/oxygen/application-x-rar.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/application-x-rpm.png b/view/theme/frost/images/oxygen/application-x-rpm.png deleted file mode 100644 index 43149f17e..000000000 Binary files a/view/theme/frost/images/oxygen/application-x-rpm.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/application-x-ruby.png b/view/theme/frost/images/oxygen/application-x-ruby.png deleted file mode 100644 index e640ead73..000000000 Binary files a/view/theme/frost/images/oxygen/application-x-ruby.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/application-x-shellscript.png b/view/theme/frost/images/oxygen/application-x-shellscript.png deleted file mode 100644 index 11e27543f..000000000 Binary files a/view/theme/frost/images/oxygen/application-x-shellscript.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/application-x-shockwave-flash.png b/view/theme/frost/images/oxygen/application-x-shockwave-flash.png deleted file mode 100644 index ea9ca59ee..000000000 Binary files a/view/theme/frost/images/oxygen/application-x-shockwave-flash.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/application-x-tar.png b/view/theme/frost/images/oxygen/application-x-tar.png deleted file mode 100644 index 4b7d023f7..000000000 Binary files a/view/theme/frost/images/oxygen/application-x-tar.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/application-xml.png b/view/theme/frost/images/oxygen/application-xml.png deleted file mode 100644 index 58d32e438..000000000 Binary files a/view/theme/frost/images/oxygen/application-xml.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/application-zip.png b/view/theme/frost/images/oxygen/application-zip.png deleted file mode 100644 index 9d349a89a..000000000 Binary files a/view/theme/frost/images/oxygen/application-zip.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/audio-aac.png b/view/theme/frost/images/oxygen/audio-aac.png deleted file mode 100644 index a2d5177d9..000000000 Binary files a/view/theme/frost/images/oxygen/audio-aac.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/audio-mp4.png b/view/theme/frost/images/oxygen/audio-mp4.png deleted file mode 100644 index ae5fd740f..000000000 Binary files a/view/theme/frost/images/oxygen/audio-mp4.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/audio-mpeg.png b/view/theme/frost/images/oxygen/audio-mpeg.png deleted file mode 100644 index 5fe3a2359..000000000 Binary files a/view/theme/frost/images/oxygen/audio-mpeg.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/audio-x-flac.png b/view/theme/frost/images/oxygen/audio-x-flac.png deleted file mode 100644 index f2f11e863..000000000 Binary files a/view/theme/frost/images/oxygen/audio-x-flac.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/audio-x-generic.png b/view/theme/frost/images/oxygen/audio-x-generic.png deleted file mode 100644 index fe7b05277..000000000 Binary files a/view/theme/frost/images/oxygen/audio-x-generic.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/audio-x-mp2.png b/view/theme/frost/images/oxygen/audio-x-mp2.png deleted file mode 100644 index 5ac790992..000000000 Binary files a/view/theme/frost/images/oxygen/audio-x-mp2.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/audio-x-ms-wma.png b/view/theme/frost/images/oxygen/audio-x-ms-wma.png deleted file mode 100644 index 86cb3e51c..000000000 Binary files a/view/theme/frost/images/oxygen/audio-x-ms-wma.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/audio-x-vorbis+ogg.png b/view/theme/frost/images/oxygen/audio-x-vorbis+ogg.png deleted file mode 100644 index 5ac790992..000000000 Binary files a/view/theme/frost/images/oxygen/audio-x-vorbis+ogg.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/audio-x-wav.png b/view/theme/frost/images/oxygen/audio-x-wav.png deleted file mode 100644 index 101f8fe5b..000000000 Binary files a/view/theme/frost/images/oxygen/audio-x-wav.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/image-x-generic.png b/view/theme/frost/images/oxygen/image-x-generic.png deleted file mode 100644 index d1d4e256c..000000000 Binary files a/view/theme/frost/images/oxygen/image-x-generic.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/text-css.png b/view/theme/frost/images/oxygen/text-css.png deleted file mode 100644 index 119aec52c..000000000 Binary files a/view/theme/frost/images/oxygen/text-css.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/text-html.png b/view/theme/frost/images/oxygen/text-html.png deleted file mode 100644 index 34768bfbe..000000000 Binary files a/view/theme/frost/images/oxygen/text-html.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/text-x-generic-2.png b/view/theme/frost/images/oxygen/text-x-generic-2.png deleted file mode 100644 index 70be9bfc3..000000000 Binary files a/view/theme/frost/images/oxygen/text-x-generic-2.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/text-x-tex.png b/view/theme/frost/images/oxygen/text-x-tex.png deleted file mode 100644 index 23d8bf7ca..000000000 Binary files a/view/theme/frost/images/oxygen/text-x-tex.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/unknown.png b/view/theme/frost/images/oxygen/unknown.png deleted file mode 100644 index eb1758ae1..000000000 Binary files a/view/theme/frost/images/oxygen/unknown.png and /dev/null differ diff --git a/view/theme/frost/images/oxygen/video-x-generic.png b/view/theme/frost/images/oxygen/video-x-generic.png deleted file mode 100644 index 81fe23e7e..000000000 Binary files a/view/theme/frost/images/oxygen/video-x-generic.png and /dev/null differ diff --git a/view/theme/frost/images/paperclip-24.png b/view/theme/frost/images/paperclip-24.png deleted file mode 100644 index 783cc3d4d..000000000 Binary files a/view/theme/frost/images/paperclip-24.png and /dev/null differ diff --git a/view/theme/frost/images/paperclip.png b/view/theme/frost/images/paperclip.png deleted file mode 100644 index 3a2ee2696..000000000 Binary files a/view/theme/frost/images/paperclip.png and /dev/null differ diff --git a/view/theme/frost/images/pencil-16.png b/view/theme/frost/images/pencil-16.png deleted file mode 100644 index a1010ed13..000000000 Binary files a/view/theme/frost/images/pencil-16.png and /dev/null differ diff --git a/view/theme/frost/images/pencil.png b/view/theme/frost/images/pencil.png deleted file mode 100644 index 8078d3083..000000000 Binary files a/view/theme/frost/images/pencil.png and /dev/null differ diff --git a/view/theme/frost/images/quote-16.png b/view/theme/frost/images/quote-16.png deleted file mode 100644 index 22b431b16..000000000 Binary files a/view/theme/frost/images/quote-16.png and /dev/null differ diff --git a/view/theme/frost/images/quote.png b/view/theme/frost/images/quote.png deleted file mode 100644 index 0875825bd..000000000 Binary files a/view/theme/frost/images/quote.png and /dev/null differ diff --git a/view/theme/frost/images/recycle-16.png b/view/theme/frost/images/recycle-16.png deleted file mode 100644 index 909364cb1..000000000 Binary files a/view/theme/frost/images/recycle-16.png and /dev/null differ diff --git a/view/theme/frost/images/recycle.png b/view/theme/frost/images/recycle.png deleted file mode 100644 index e5d8e1181..000000000 Binary files a/view/theme/frost/images/recycle.png and /dev/null differ diff --git a/view/theme/frost/images/remote-link-16.png b/view/theme/frost/images/remote-link-16.png deleted file mode 100644 index 29eeeb813..000000000 Binary files a/view/theme/frost/images/remote-link-16.png and /dev/null differ diff --git a/view/theme/frost/images/remote-link.png b/view/theme/frost/images/remote-link.png deleted file mode 100644 index 1f657411a..000000000 Binary files a/view/theme/frost/images/remote-link.png and /dev/null differ diff --git a/view/theme/frost/images/speaker.png b/view/theme/frost/images/speaker.png deleted file mode 100644 index 335484447..000000000 Binary files a/view/theme/frost/images/speaker.png and /dev/null differ diff --git a/view/theme/frost/images/star-16.png b/view/theme/frost/images/star-16.png deleted file mode 100644 index 7cecef75c..000000000 Binary files a/view/theme/frost/images/star-16.png and /dev/null differ diff --git a/view/theme/frost/images/star-yellow-16.png b/view/theme/frost/images/star-yellow-16.png deleted file mode 100644 index 294d04e06..000000000 Binary files a/view/theme/frost/images/star-yellow-16.png and /dev/null differ diff --git a/view/theme/frost/images/star-yellow.png b/view/theme/frost/images/star-yellow.png deleted file mode 100644 index cc2b884b2..000000000 Binary files a/view/theme/frost/images/star-yellow.png and /dev/null differ diff --git a/view/theme/frost/images/star.png b/view/theme/frost/images/star.png deleted file mode 100644 index f8a61a497..000000000 Binary files a/view/theme/frost/images/star.png and /dev/null differ diff --git a/view/theme/frost/images/tag-16.png b/view/theme/frost/images/tag-16.png deleted file mode 100644 index cca139cad..000000000 Binary files a/view/theme/frost/images/tag-16.png and /dev/null differ diff --git a/view/theme/frost/images/tag.png b/view/theme/frost/images/tag.png deleted file mode 100644 index 9c644b823..000000000 Binary files a/view/theme/frost/images/tag.png and /dev/null differ diff --git a/view/theme/frost/images/underlineU-serif-16.png b/view/theme/frost/images/underlineU-serif-16.png deleted file mode 100644 index b24729f6c..000000000 Binary files a/view/theme/frost/images/underlineU-serif-16.png and /dev/null differ diff --git a/view/theme/frost/images/unlock-24.png b/view/theme/frost/images/unlock-24.png deleted file mode 100644 index 580af04ba..000000000 Binary files a/view/theme/frost/images/unlock-24.png and /dev/null differ diff --git a/view/theme/frost/images/unlock.png b/view/theme/frost/images/unlock.png deleted file mode 100644 index 81d9740e8..000000000 Binary files a/view/theme/frost/images/unlock.png and /dev/null differ diff --git a/view/theme/frost/images/video-16.png b/view/theme/frost/images/video-16.png deleted file mode 100644 index 7b7e15d8e..000000000 Binary files a/view/theme/frost/images/video-16.png and /dev/null differ diff --git a/view/theme/frost/images/video.png b/view/theme/frost/images/video.png deleted file mode 100644 index dcb047912..000000000 Binary files a/view/theme/frost/images/video.png and /dev/null differ diff --git a/view/theme/frost/js/acl.js b/view/theme/frost/js/acl.js deleted file mode 100644 index 1eb758b5b..000000000 --- a/view/theme/frost/js/acl.js +++ /dev/null @@ -1,262 +0,0 @@ -function ACL(backend_url, preset){ - that = this; - - that.url = backend_url; - - that.kp_timer = null; - - if (preset==undefined) preset = []; - that.allow_cid = (preset[0] || []); - that.allow_gid = (preset[1] || []); - that.deny_cid = (preset[2] || []); - that.deny_gid = (preset[3] || []); - that.group_uids = []; - that.nw = 3; //items per row. should be calulated from #acl-list.width - - that.list_content = $("#acl-list-content"); - that.item_tpl = unescape($(".acl-list-item[rel=acl-template]").html()); - that.showall = $("#acl-showall"); - - if (preset.length==0) that.showall.addClass("selected"); - - /*events*/ - that.showall.click(that.on_showall); - $(document).on("click", ".acl-button-show", that.on_button_show); - $(document).on("click", ".acl-button-hide", that.on_button_hide); - $("#acl-search").keypress(that.on_search); - $("#acl-wrapper").parents("form").submit(that.on_submit); - - /* startup! */ - that.get(0,100); -} - -ACL.prototype.on_submit = function(){ - aclfileds = $("#acl-fields").html(""); - $(that.allow_gid).each(function(i,v){ - aclfileds.append(""); - }); - $(that.allow_cid).each(function(i,v){ - aclfileds.append(""); - }); - $(that.deny_gid).each(function(i,v){ - aclfileds.append(""); - }); - $(that.deny_cid).each(function(i,v){ - aclfileds.append(""); - }); -} - -ACL.prototype.search = function(){ - var srcstr = $("#acl-search").val(); - that.list_content.html(""); - that.get(0,100, srcstr); -} - -ACL.prototype.on_search = function(event){ - if (that.kp_timer) clearTimeout(that.kp_timer); - that.kp_timer = setTimeout( that.search, 1000); -} - -ACL.prototype.on_showall = function(event){ - event.preventDefault() - event.stopPropagation(); - - if (that.showall.hasClass("selected")){ - return false; - } - that.showall.addClass("selected"); - - that.allow_cid = []; - that.allow_gid = []; - that.deny_cid = []; - that.deny_gid = []; - - that.update_view(); - - return false; -} - -ACL.prototype.on_button_show = function(event){ - event.preventDefault() - event.stopImmediatePropagation() - event.stopPropagation(); - - /*that.showall.removeClass("selected"); - $(this).siblings(".acl-button-hide").removeClass("selected"); - $(this).toggleClass("selected");*/ - - that.set_allow($(this).parent().attr('id')); - - return false; -} -ACL.prototype.on_button_hide = function(event){ - event.preventDefault() - event.stopImmediatePropagation() - event.stopPropagation(); - - /*that.showall.removeClass("selected"); - $(this).siblings(".acl-button-show").removeClass("selected"); - $(this).toggleClass("selected");*/ - - that.set_deny($(this).parent().attr('id')); - - return false; -} - -ACL.prototype.set_allow = function(itemid){ - type = itemid[0]; - id = parseInt(itemid.substr(1)); - switch(type){ - case "g": - if (that.allow_gid.indexOf(id)<0){ - that.allow_gid.push(id) - }else { - that.allow_gid.remove(id); - } - if (that.deny_gid.indexOf(id)>=0) that.deny_gid.remove(id); - break; - case "c": - if (that.allow_cid.indexOf(id)<0){ - that.allow_cid.push(id) - } else { - that.allow_cid.remove(id); - } - if (that.deny_cid.indexOf(id)>=0) that.deny_cid.remove(id); - break; - } - that.update_view(); -} - -ACL.prototype.set_deny = function(itemid){ - type = itemid[0]; - id = parseInt(itemid.substr(1)); - switch(type){ - case "g": - if (that.deny_gid.indexOf(id)<0){ - that.deny_gid.push(id) - } else { - that.deny_gid.remove(id); - } - if (that.allow_gid.indexOf(id)>=0) that.allow_gid.remove(id); - break; - case "c": - if (that.deny_cid.indexOf(id)<0){ - that.deny_cid.push(id) - } else { - that.deny_cid.remove(id); - } - if (that.allow_cid.indexOf(id)>=0) that.allow_cid.remove(id); - break; - } - that.update_view(); -} - -ACL.prototype.update_view = function(){ - if (that.allow_gid.length==0 && that.allow_cid.length==0 && - that.deny_gid.length==0 && that.deny_cid.length==0){ - that.showall.addClass("selected"); - /* jot acl */ - $('#jot-perms-icon').removeClass('lock').addClass('unlock'); - $('#jot-public').show(); - $('.profile-jot-net input').attr('disabled', false); - if(typeof editor != 'undefined' && editor != false) { - $('#profile-jot-desc').html(window.isPublic); - } - - } else { - that.showall.removeClass("selected"); - /* jot acl */ - $('#jot-perms-icon').removeClass('unlock').addClass('lock'); - $('#jot-public').hide(); - $('.profile-jot-net input').attr('disabled', 'disabled'); - $('#profile-jot-desc').html(' '); - } - $("#acl-list-content .acl-list-item").each(function(){ - $(this).removeClass("groupshow grouphide"); - }); - - $("#acl-list-content .acl-list-item").each(function(){ - itemid = $(this).attr('id'); - type = itemid[0]; - id = parseInt(itemid.substr(1)); - - btshow = $(this).children(".acl-button-show").removeClass("selected"); - bthide = $(this).children(".acl-button-hide").removeClass("selected"); - - switch(type){ - case "g": - var uclass = ""; - if (that.allow_gid.indexOf(id)>=0){ - btshow.addClass("selected"); - bthide.removeClass("selected"); - uclass="groupshow"; - } - if (that.deny_gid.indexOf(id)>=0){ - btshow.removeClass("selected"); - bthide.addClass("selected"); - uclass="grouphide"; - } - - $(that.group_uids[id]).each(function(i,v) { - if(uclass == "grouphide") - $("#c"+v).removeClass("groupshow"); - if(uclass != "") { - var cls = $("#c"+v).attr('class'); - if( cls == undefined) - return true; - var hiding = cls.indexOf('grouphide'); - if(hiding == -1) - $("#c"+v).addClass(uclass); - } - }); - - break; - case "c": - if (that.allow_cid.indexOf(id)>=0){ - btshow.addClass("selected"); - bthide.removeClass("selected"); - } - if (that.deny_cid.indexOf(id)>=0){ - btshow.removeClass("selected"); - bthide.addClass("selected"); - } - } - - }); - -} - - -ACL.prototype.get = function(start,count, search){ - var postdata = { - start:start, - count:count, - search:search, - } - - $.ajax({ - type:'POST', - url: that.url, - data: postdata, - dataType: 'json', - success:that.populate - }); -} - -ACL.prototype.populate = function(data){ - var height = Math.ceil(data.tot / that.nw) * 42; - that.list_content.height(height); - $(data.items).each(function(){ - html = "
"+that.item_tpl+"
"; - html = html.format( this.photo, this.name, this.type, this.id, '', this.network, this.link ); - if (this.uids!=undefined) that.group_uids[this.id] = this.uids; - //console.log(html); - that.list_content.append(html); - }); - $(".acl-list-item img[data-src]", that.list_content).each(function(i, el){ - // Add src attribute for images with a data-src attribute - $(el).attr('src', $(el).data("src")); - }); - that.update_view(); -} - diff --git a/view/theme/frost/js/jquery.divgrow-1.3.1.f1.js b/view/theme/frost/js/jquery.divgrow-1.3.1.f1.js deleted file mode 100644 index e57722d1b..000000000 --- a/view/theme/frost/js/jquery.divgrow-1.3.1.f1.js +++ /dev/null @@ -1,92 +0,0 @@ -/* -* Copyright (c) 2010 Simon Hibbard -* -* Permission is hereby granted, free of charge, to any person -* obtaining a copy of this software and associated documentation -* files (the "Software"), to deal in the Software without -* restriction, including without limitation the rights to use, -* copy, modify, merge, publish, distribute, sublicense, and/or sell -* copies of the Software, and to permit persons to whom the -* Software is furnished to do so, subject to the following -* conditions: - -* The above copyright notice and this permission notice shall be -* included in all copies or substantial portions of the Software. -* -* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT -* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -* OTHER DEALINGS IN THE SOFTWARE. -*/ - -/* -* Version: V1.3.1-f1 -* Release: 22-12-2010 -* Based on jQuery 1.4.2 -* -* 2012-10-29: Modified by Zach Prezkuta to allow dynamic full heights -*/ - -(function ($) { - var divgrowid = 0; - $.fn.divgrow = function (options) { - var options = $.extend({}, { initialHeight: 100, moreText: "+ Show More", lessText: "- Show Less", speed: 1000, showBrackets: true }, options); - - return this.each(function () { - divgrowid++; - - obj = $(this); - - //var fullHeight = obj.height() + 10; - - obj.css('height', options.initialHeight).css('overflow', 'hidden'); - if (options.showBrackets) { - obj.after('

[…]

'); - } - else { - obj.after(''); - } - $("a.divgrow-showmore").html(options.moreText); - - $("." + "divgrow-obj-" + divgrowid).toggle(function () { - //alert(obj.attr('class')); - // Set the height from the elements rel value - //var height = $(this).prevAll("div:first").attr('rel'); - - var fullHeight = $(this).prevAll("div:first")[0].scrollHeight + 10; - $(this).prevAll("div:first").animate({ height: fullHeight + "px" }, options.speed, function () { // Animation complete. - - // Hide the overlay text when expanded, change the link text - if (options.showBrackets) { - $(this).nextAll("p.divgrow-brackets:first").fadeOut(); - } - $(this).nextAll("a.divgrow-showmore:first").html(options.lessText); - - }); - - - }, function () { - - $(this).prevAll("div:first").stop(true, false).animate({ height: options.initialHeight }, options.speed, function () { // Animation complete. - - // show the overlay text while closed, change the link text - if (options.showBrackets) { - $(this).nextAll("p.divgrow-brackets:first").stop(true, false).fadeIn(); - } - $(this).nextAll("a.divgrow-showmore:first").stop(true, false).html(options.moreText); - - }); - }); - - }); - }; -})(jQuery); - - - - - diff --git a/view/theme/frost/js/jquery.divgrow-1.3.1.f1.min.js b/view/theme/frost/js/jquery.divgrow-1.3.1.f1.min.js deleted file mode 100644 index da7634ac9..000000000 --- a/view/theme/frost/js/jquery.divgrow-1.3.1.f1.min.js +++ /dev/null @@ -1 +0,0 @@ -(function($){var divgrowid=0;$.fn.divgrow=function(options){var options=$.extend({},{initialHeight:100,moreText:"+ Show More",lessText:"- Show Less",speed:1e3,showBrackets:true},options);return this.each(function(){divgrowid++;obj=$(this);obj.css("height",options.initialHeight).css("overflow","hidden");if(options.showBrackets){obj.after('

[…]

")}else{obj.after('")}$("a.divgrow-showmore").html(options.moreText);$("."+"divgrow-obj-"+divgrowid).toggle(function(){var fullHeight=$(this).prevAll("div:first")[0].scrollHeight+10;$(this).prevAll("div:first").animate({height:fullHeight+"px"},options.speed,function(){if(options.showBrackets){$(this).nextAll("p.divgrow-brackets:first").fadeOut()}$(this).nextAll("a.divgrow-showmore:first").html(options.lessText)})},function(){$(this).prevAll("div:first").stop(true,false).animate({height:options.initialHeight},options.speed,function(){if(options.showBrackets){$(this).nextAll("p.divgrow-brackets:first").stop(true,false).fadeIn()}$(this).nextAll("a.divgrow-showmore:first").stop(true,false).html(options.moreText)})})})}})(jQuery); \ No newline at end of file diff --git a/view/theme/frost/js/jquery.divgrow-1.3.1.min.js b/view/theme/frost/js/jquery.divgrow-1.3.1.min.js deleted file mode 100644 index fd08f7fa8..000000000 --- a/view/theme/frost/js/jquery.divgrow-1.3.1.min.js +++ /dev/null @@ -1 +0,0 @@ -(function ($) { var divgrowid = 0; $.fn.divgrow = function (options) { var options = $.extend({}, { initialHeight: 100, moreText: "+ Show More", lessText: "- Show Less", speed: 1000, showBrackets: true }, options); return this.each(function () { divgrowid++; obj = $(this); var fullHeight = obj.height() + 10; obj.css('height', options.initialHeight).css('overflow', 'hidden'); if (options.showBrackets) { obj.after('

[…]

') } else { obj.after('') } $("a.divgrow-showmore").html(options.moreText); $("." + "divgrow-obj-" + divgrowid).toggle(function () { $(this).prevAll("div:first").animate({ height: fullHeight + "px" }, options.speed, function () { if (options.showBrackets) { $(this).nextAll("p.divgrow-brackets:first").fadeOut() } $(this).nextAll("a.divgrow-showmore:first").html(options.lessText) }) }, function () { $(this).prevAll("div:first").stop(true, false).animate({ height: options.initialHeight }, options.speed, function () { if (options.showBrackets) { $(this).nextAll("p.divgrow-brackets:first").stop(true, false).fadeIn() } $(this).nextAll("a.divgrow-showmore:first").stop(true, false).html(options.moreText) }) }) }) } })(jQuery); \ No newline at end of file diff --git a/view/theme/frost/js/main.js b/view/theme/frost/js/main.js deleted file mode 100644 index 0afdf6815..000000000 --- a/view/theme/frost/js/main.js +++ /dev/null @@ -1,678 +0,0 @@ - - function openClose(listID) { -/* if(document.getElementById(theID).style.display == "block") { - document.getElementById(theID).style.display = "none" - } - else { - document.getElementById(theID).style.display = "block" - }*/ - listID = "#" + listID.replace(/:/g, "\\:"); - listID = listID.replace(/\./g, "\\."); - listID = listID.replace(/@/g, "\\@"); - - if($(listID).is(":visible")) { - $(listID).hide(); - $(listID+"-wrapper").show(); - } - else { - $(listID).show(); - $(listID+"-wrapper").hide(); - } - } - - function openMenu(theID) { - document.getElementById(theID).style.display = "block" - } - - function closeMenu(theID) { - document.getElementById(theID).style.display = "none" - } - - - - var src = null; - var prev = null; - var livetime = null; - var stopped = false; - var totStopped = false; - var timer = null; - var pr = 0; - var liking = 0; - var in_progress = false; - var langSelect = false; - var commentBusy = false; - var last_popup_menu = null; - var last_popup_button = null; - - $(function() { - $.ajaxSetup({cache: false}); - - collapseHeight(); - - /* setup onoff widgets */ - $(".onoff input").each(function(){ - val = $(this).val(); - id = $(this).attr("id"); - $("#"+id+"_onoff ."+ (val==0?"on":"off")).addClass("hidden"); - - }); - $(".onoff > a").click(function(event){ - event.preventDefault(); - var input = $(this).siblings("input"); - var val = 1-input.val(); - var id = input.attr("id"); - $("#"+id+"_onoff ."+ (val==0?"on":"off")).addClass("hidden"); - $("#"+id+"_onoff ."+ (val==1?"on":"off")).removeClass("hidden"); - input.val(val); - //console.log(id); - }); - - /* popup menus */ - function close_last_popup_menu(e) { - - if( last_popup_menu ) { - if( '#' + last_popup_menu.attr('id') !== $(e.target).attr('rel')) { - last_popup_menu.hide(); - last_popup_button.removeClass("selected"); - last_popup_menu = null; - last_popup_button = null; - } - } - } - $('a[rel^=#]').click(function(e){ - - close_last_popup_menu(e); - menu = $( $(this).attr('rel') ); - e.preventDefault(); - e.stopPropagation(); - - if (menu.attr('popup')=="false") return false; - - $(this).parent().toggleClass("selected"); - menu.slideToggle('fast'); - - if (menu.css("display") == "none") { - last_popup_menu = null; - last_popup_button = null; - } else { - last_popup_menu = menu; - last_popup_button = $(this).parent(); - } - return false; - }); - $('html').click(function(e) { - close_last_popup_menu(e); - }); - - // fancyboxes - $("a.popupbox").colorbox({ - 'inline' : true, - 'transition' : 'elastic' - }); - - - /* notifications template */ - var notifications_tpl= unescape($("#nav-notifications-template[rel=template]").html()); - var notifications_all = unescape($('
').append( $("#nav-notifications-see-all").clone() ).html()); //outerHtml hack - var notifications_mark = unescape($('
').append( $("#nav-notifications-mark-all").clone() ).html()); //outerHtml hack - var notifications_empty = unescape($("#nav-notifications-menu").html()); - - /* nav update event */ - $('nav').bind('nav-update', function(e,data){; - var invalid = $(data).find('invalid').text(); - if(invalid == 1) { window.location.href=window.location.href } - - var net = $(data).find('net').text(); - if(net == 0) { net = ''; $('#net-update').removeClass('show') } else { $('#net-update').addClass('show') } - $('#net-update').html(net); - - var home = $(data).find('home').text(); - if(home == 0) { home = ''; $('#home-update').removeClass('show') } else { $('#home-update').addClass('show') } - $('#home-update').html(home); - - var intro = $(data).find('intro').text(); - if(intro == 0) { intro = ''; $('#intro-update').removeClass('show') } else { $('#intro-update').addClass('show') } - $('#intro-update').html(intro); - - var mail = $(data).find('mail').text(); - if(mail == 0) { mail = ''; $('#mail-update').removeClass('show') } else { $('#mail-update').addClass('show') } - $('#mail-update').html(mail); - - var intro = $(data).find('intro').text(); - if(intro == 0) { intro = ''; $('#intro-update-li').removeClass('show') } else { $('#intro-update-li').addClass('show') } - $('#intro-update-li').html(intro); - - var mail = $(data).find('mail').text(); - if(mail == 0) { mail = ''; $('#mail-update-li').removeClass('show') } else { $('#mail-update-li').addClass('show') } - $('#mail-update-li').html(mail); - - var eNotif = $(data).find('notif') - - if (eNotif.children("note").length==0){ - $("#nav-notifications-menu").html(notifications_empty); - } else { - nnm = $("#nav-notifications-menu"); - nnm.html(notifications_all + notifications_mark); - //nnm.attr('popup','true'); - eNotif.children("note").each(function(){ - e = $(this); - text = e.text().format(""+e.attr('name')+""); - html = notifications_tpl.format(e.attr('href'),e.attr('photo'), text, e.attr('date'), e.attr('seen')); - nnm.append(html); - }); - - $("img[data-src]", nnm).each(function(i, el){ - // Add src attribute for images with a data-src attribute - // However, don't bother if the data-src attribute is empty, because - // an empty "src" tag for an image will cause some browsers - // to prefetch the root page of the Friendica hub, which will - // unnecessarily load an entire profile/ or network/ page - if($(el).data("src") != '') $(el).attr('src', $(el).data("src")); - }); - } - notif = eNotif.attr('count'); - if (notif>0){ - $("#nav-notifications-linkmenu").addClass("on"); - } else { - $("#nav-notifications-linkmenu").removeClass("on"); - } - if(notif == 0) { notif = ''; $('#notify-update').removeClass('show') } else { $('#notify-update').addClass('show') } - $('#notify-update').html(notif); - - var eSysmsg = $(data).find('sysmsgs'); - eSysmsg.children("notice").each(function(){ - text = $(this).text(); - $.jGrowl(text, { sticky: false, theme: 'notice', life: 3000 }); // originally: sticky: true, - }); - eSysmsg.children("info").each(function(){ - text = $(this).text(); - $.jGrowl(text, { sticky: false, theme: 'info', life: 1000 }); - }); - - }); - - - NavUpdate(); - // Allow folks to stop the ajax page updates with the pause/break key - $(document).keydown(function(event) { - if(event.keyCode == '8') { - var target = event.target || event.srcElement; - if (!/input|textarea/i.test(target.nodeName)) { - return false; - } - } - if(event.keyCode == '19' || (event.ctrlKey && event.which == '32')) { - event.preventDefault(); - if(stopped == false) { - stopped = true; - if (event.ctrlKey) { - totStopped = true; - } - $('#pause').html('pause'); - } else { - unpause(); - } - } else { - if (!totStopped) { - unpause(); - } - } - }); - - - }); - - function NavUpdate() { - - if(! stopped) { - var pingCmd = 'ping' + ((localUser != 0) ? '?f=&uid=' + localUser : ''); - $.get(pingCmd,function(data) { - $(data).find('result').each(function() { - // send nav-update event - $('nav').trigger('nav-update', this); - - - // start live update - - - - if($('#live-network').length) { src = 'network'; liveUpdate(); } - if($('#live-profile').length) { src = 'profile'; liveUpdate(); } - if($('#live-community').length) { src = 'community'; liveUpdate(); } - if($('#live-notes').length) { src = 'notes'; liveUpdate(); } - if($('#live-display').length) { src = 'display'; liveUpdate(); } - /*if($('#live-display').length) { - if(liking) { - liking = 0; - window.location.href=window.location.href - } - }*/ - if($('#live-photos').length) { - if(liking) { - liking = 0; - window.location.href=window.location.href - } - } - - - - - }); - }) ; - } - timer = setTimeout(NavUpdate,updateInterval); - } - - function liveUpdate() { - if((src == null) || (stopped) || (typeof profile_uid == 'undefined') || (! profile_uid)) { $('.like-rotator').hide(); return; } - if(($('.comment-edit-text-full').length) || (in_progress)) { - if(livetime) { - clearTimeout(livetime); - } - livetime = setTimeout(liveUpdate, 5000); - return; - } - if(livetime != null) - livetime = null; - - prev = 'live-' + src; - - in_progress = true; - var udargs = ((netargs.length) ? '/' + netargs : ''); - var update_url = 'update_' + src + udargs + '&p=' + profile_uid + '&page=' + profile_page; - - $.get(update_url,function(data) { - in_progress = false; - // $('.collapsed-comments',data).each(function() { - // var ident = $(this).attr('id'); - // var is_hidden = $('#' + ident).is(':hidden'); - // if($('#' + ident).length) { - // $('#' + ident).replaceWith($(this)); - // if(is_hidden) - // $('#' + ident).hide(); - // } - //}); - - // add a new thread - - $('.toplevel_item',data).each(function() { - var ident = $(this).attr('id'); - - if($('#' + ident).length == 0 && profile_page == 1) { - $('img',this).each(function() { - $(this).attr('src',$(this).attr('dst')); - }); - $('#' + prev).after($(this)); - } - else { - // Find out if the hidden comments are open, so we can keep it that way - // if a new comment has been posted - var id = $('.hide-comments-total', this).attr('id'); - if(typeof id != 'undefined') { - id = id.split('-')[3]; - var commentsOpen = $("#collapsed-comments-" + id).is(":visible"); - } - - $('img',this).each(function() { - $(this).attr('src',$(this).attr('dst')); - }); - //vScroll = $(document).scrollTop(); - $('html').height($('html').height()); - $('#' + ident).replaceWith($(this)); - - if(typeof id != 'undefined') { - if(commentsOpen) showHideComments(id); - } - $('html').height('auto'); - //$(document).scrollTop(vScroll); - } - - // Add Colorbox for viewing Network page images - $("#" + ident + " .wall-item-body a img").each(function(){ - var aElem = $(this).parent(); - var imgHref = aElem.attr("href"); - - // We need to make sure we only put a Colorbox on links to Friendica images - // We'll try to do this by looking for links of the form - // .../photo/ab803d8eg08daf85023adfec08(-0.jpg) (with nothing more following), in hopes - // that that will be unique enough - if(imgHref.match(/\/photo\/[a-fA-F0-9]+(-[0-9]\.[\w]+?)?$/)) { - - // Add a unique class to all the images of a certain post, to allow scrolling through - var cBoxClass = $(this).closest(".wall-item-body").attr("id") + "-lightbox"; - $(this).addClass(cBoxClass); - - aElem.colorbox({ - maxHeight: '90%', - photo: true, - rel: cBoxClass - }); - } - }); - - prev = ident; - }); - - // reset vars for inserting individual items - - /*prev = 'live-' + src; - - $('.wall-item-outside-wrapper',data).each(function() { - var ident = $(this).attr('id'); - - if($('#' + ident).length == 0 && prev != 'live-' + src) { - $('img',this).each(function() { - $(this).attr('src',$(this).attr('dst')); - }); - $('#' + prev).after($(this)); - } - else { - $('#' + ident + ' ' + '.wall-item-ago').replaceWith($(this).find('.wall-item-ago')); - if($('#' + ident + ' ' + '.comment-edit-text-empty').length) - $('#' + ident + ' ' + '.wall-item-comment-wrapper').replaceWith($(this).find('.wall-item-comment-wrapper')); - $('#' + ident + ' ' + '.hide-comments-total').replaceWith($(this).find('.hide-comments-total')); - $('#' + ident + ' ' + '.wall-item-like').replaceWith($(this).find('.wall-item-like')); - $('#' + ident + ' ' + '.wall-item-dislike').replaceWith($(this).find('.wall-item-dislike')); - $('#' + ident + ' ' + '.my-comment-photo').each(function() { - $(this).attr('src',$(this).attr('dst')); - }); - } - prev = ident; - });*/ - - $('.like-rotator').hide(); - if(commentBusy) { - commentBusy = false; - $('body').css('cursor', 'auto'); - } - /* autocomplete @nicknames */ - $(".comment-edit-form textarea").editor_autocomplete(baseurl+"/acl"); - - collapseHeight(); - - // setup videos, since VideoJS won't take care of any loaded via AJAX - if(typeof videojs != 'undefined') videojs.autoSetup(); - }); - } - - function collapseHeight(elems) { - var elemName = '.wall-item-body:not(.divmore)'; - if(typeof elems != 'undefined') { - elemName = elems + ' ' + elemName; - } - $(elemName).each(function() { - if($(this).height() > 450) { - $('html').height($('html').height()); - $(this).divgrow({ initialHeight: 400, showBrackets: false, speed: 0 }); - $(this).addClass('divmore'); - $('html').height('auto'); - } - }); - } - - /*function imgbright(node) { - $(node).removeClass("drophide").addClass("drop"); - } - - function imgdull(node) { - $(node).removeClass("drop").addClass("drophide"); - }*/ - - // Since our ajax calls are asynchronous, we will give a few - // seconds for the first ajax call (setting like/dislike), then - // run the updater to pick up any changes and display on the page. - // The updater will turn any rotators off when it's done. - // This function will have returned long before any of these - // events have completed and therefore there won't be any - // visible feedback that anything changed without all this - // trickery. This still could cause confusion if the "like" ajax call - // is delayed and NavUpdate runs before it completes. - - function dolike(ident,verb) { - unpause(); - $('#like-rotator-' + ident.toString()).show(); - $.get('like/' + ident.toString() + '?verb=' + verb, NavUpdate ); - liking = 1; - } - - function dostar(ident) { - ident = ident.toString(); -// $('#like-rotator-' + ident).show(); - $.get('starred/' + ident, function(data) { - if(data.match(/1/)) { - $('#starred-' + ident).addClass('starred'); - $('#starred-' + ident).removeClass('unstarred'); - $('#star-' + ident).addClass('hidden'); - $('#unstar-' + ident).removeClass('hidden'); - } - else { - $('#starred-' + ident).addClass('unstarred'); - $('#starred-' + ident).removeClass('starred'); - $('#star-' + ident).removeClass('hidden'); - $('#unstar-' + ident).addClass('hidden'); - } -// $('#like-rotator-' + ident).hide(); - }); - } - - function getPosition(e) { - var cursor = {x:0, y:0}; - if ( e.pageX || e.pageY ) { - cursor.x = e.pageX; - cursor.y = e.pageY; - } - else { - if( e.clientX || e.clientY ) { - cursor.x = e.clientX + (document.documentElement.scrollLeft || document.body.scrollLeft) - document.documentElement.clientLeft; - cursor.y = e.clientY + (document.documentElement.scrollTop || document.body.scrollTop) - document.documentElement.clientTop; - } - else { - if( e.x || e.y ) { - cursor.x = e.x; - cursor.y = e.y; - } - } - } - return cursor; - } - - var lockvisible = false; - - function lockview(event,id) { - event = event || window.event; - cursor = getPosition(event); - if(lockvisible) { - lockviewhide(); - } - else { - lockvisible = true; - $.get('lockview/' + id, function(data) { - $('#panel').html(data); - $('#panel').css({ 'left': cursor.x + 5 , 'top': cursor.y + 5}); - $('#panel').show(); - }); - } - } - - function lockviewhide() { - lockvisible = false; - $('#panel').hide(); - } - - function post_comment(id) { - unpause(); - commentBusy = true; - $('body').css('cursor', 'wait'); - $("#comment-preview-inp-" + id).val("0"); - $.post( - "item", - $("#comment-edit-form-" + id).serialize(), - function(data) { - if(data.success) { - $("#comment-edit-wrapper-" + id).hide(); - $("#comment-edit-text-" + id).val(''); - var tarea = document.getElementById("comment-edit-text-" + id); - if(tarea) - commentClose(tarea,id); - if(timer) clearTimeout(timer); - timer = setTimeout(NavUpdate,10); - } - if(data.reload) { - window.location.href=data.reload; - } - }, - "json" - ); - return false; - } - - - function preview_comment(id) { - $("#comment-preview-inp-" + id).val("1"); - $("#comment-edit-preview-" + id).show(); - $.post( - "item", - $("#comment-edit-form-" + id).serialize(), - function(data) { - if(data.preview) { - - $("#comment-edit-preview-" + id).html(data.preview); - $("#comment-edit-preview-" + id + " a").click(function() { return false; }); - } - }, - "json" - ); - return true; - } - - - function showHideComments(id) { - if( $("#collapsed-comments-" + id).is(":visible")) { - $("#collapsed-comments-" + id).hide(); - $("#hide-comments-" + id).html(window.showMore); - } - else { - $("#collapsed-comments-" + id).show(); - $("#hide-comments-" + id).html(window.showFewer); - collapseHeight("#collapsed-comments-" + id); - } - } - - - function preview_post() { - $("#jot-preview").val("1"); - $("#jot-preview-content").show(); - $.post( - "item", - $("#profile-jot-form").serialize(), - function(data) { - if(data.preview) { - $("#jot-preview-content").html(data.preview); - $("#jot-preview-content" + " a").click(function() { return false; }); - } - }, - "json" - ); - $("#jot-preview").val("0"); - return true; - } - - - function unpause() { - // unpause auto reloads if they are currently stopped - totStopped = false; - stopped = false; - $('#pause').html(''); - } - - - function bin2hex(s){ - // Converts the binary representation of data to hex - // - // version: 812.316 - // discuss at: http://phpjs.org/functions/bin2hex - // + original by: Kevin van Zonneveld (http://kevin.vanzonneveld.net) - // + bugfixed by: Onno Marsman - // + bugfixed by: Linuxworld - // * example 1: bin2hex('Kev'); - // * returns 1: '4b6576' - // * example 2: bin2hex(String.fromCharCode(0x00)); - // * returns 2: '00' - var v,i, f = 0, a = []; - s += ''; - f = s.length; - - for (i = 0; i' + data.desc + '
' + data.version + '
' + data.credits + '
' + theme + ''); - }); - -} diff --git a/view/theme/frost/js/theme.js b/view/theme/frost/js/theme.js deleted file mode 100644 index bf7bdd585..000000000 --- a/view/theme/frost/js/theme.js +++ /dev/null @@ -1,670 +0,0 @@ -$(document).ready(function() { - - window.navMenuTimeout = { - '#network-menu-list-timeout': null, - '#contacts-menu-list-timeout': null, - '#system-menu-list-timeout': null, - '#network-menu-list-opening': false, - '#contacts-menu-list-opening': false, - '#system-menu-list-opening': false, - '#network-menu-list-closing': false, - '#contacts-menu-list-closing': false, - '#system-menu-list-closing': false - }; - - /* enable editor on focus and click */ - $("#profile-jot-text").focus(enableOnUser); - $("#profile-jot-text").click(enableOnUser); - - $('.nav-menu-list, .nav-menu-icon').hover(function() { - showNavMenu($(this).attr('point')); - }, function() { - hideNavMenu($(this).attr('point')); - }); - - $('.group-edit-icon').hover( - function() { - $(this).addClass('icon'); $(this).removeClass('iconspacer');}, - function() { - $(this).removeClass('icon'); $(this).addClass('iconspacer');} - ); - - $('.sidebar-group-element').hover( - function() { - id = $(this).attr('id'); - $('#edit-' + id).addClass('icon'); $('#edit-' + id).removeClass('iconspacer');}, - - function() { - id = $(this).attr('id'); - $('#edit-' + id).removeClass('icon');$('#edit-' + id).addClass('iconspacer');} - ); - - - $('.savedsearchdrop').hover( - function() { - $(this).addClass('drop'); $(this).addClass('icon'); $(this).removeClass('iconspacer');}, - function() { - $(this).removeClass('drop'); $(this).removeClass('icon'); $(this).addClass('iconspacer');} - ); - - $('.savedsearchterm').hover( - function() { - id = $(this).attr('id'); - $('#drop-' + id).addClass('icon'); $('#drop-' + id).addClass('drophide'); $('#drop-' + id).removeClass('iconspacer');}, - - function() { - id = $(this).attr('id'); - $('#drop-' + id).removeClass('icon');$('#drop-' + id).removeClass('drophide'); $('#drop-' + id).addClass('iconspacer');} - ); - - $('#id_share').change(function() { - - if ($('#id_share').is(':checked')) { - $('#acl-wrapper').show(); - } else { - $('#acl-wrapper').hide(); - } - }).trigger('change'); - - if (typeof window.AjaxUpload != "undefined") { - var uploader = new window.AjaxUpload( - window.imageUploadButton, - { action: 'wall_upload/'+window.nickname, - name: 'userfile', - onSubmit: function(file,ext) { $('#profile-rotator').show(); }, - onComplete: function(file,response) { - addeditortext(window.jotId, response); - $('#profile-rotator').hide(); - } - } - ); - - if ($('#wall-file-upload').length) { - var file_uploader = new window.AjaxUpload( - 'wall-file-upload', - { action: 'wall_attach/'+window.nickname, - name: 'userfile', - onSubmit: function(file,ext) { $('#profile-rotator').show(); }, - onComplete: function(file,response) { - addeditortext(window.jotId, response); - $('#profile-rotator').hide(); - } - } - ); - } - } - - - if (typeof window.aclInit !="undefined" && typeof acl=="undefined") { - acl = new ACL( - baseurl+"/acl", - [ window.allowCID,window.allowGID,window.denyCID,window.denyGID ] - ); - } - - - if (window.aclType == "settings-head" || window.aclType == "photos_head" || window.aclType == "event_head") { - $('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() { - var selstr; - $('#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected').each( function() { - selstr = $(this).text(); - $('#jot-perms-icon').removeClass('unlock').addClass('lock'); - $('#jot-public').hide(); - }); - if (selstr == null) { - $('#jot-perms-icon').removeClass('lock').addClass('unlock'); - $('#jot-public').show(); - } - - }).trigger('change'); - } - - if (window.aclType == "event_head") { - $('#events-calendar').fullCalendar({ - events: baseurl + window.eventModuleUrl +'/json/', - header: { - left: 'prev,next today', - center: 'title', - right: 'month,agendaWeek,agendaDay' - }, - timeFormat: 'H(:mm)', - eventClick: function(calEvent, jsEvent, view) { - showEvent(calEvent.id); - }, - loading: function(isLoading, view) { - if (!isLoading) { - $('td.fc-day').dblclick(function() { window.location.href='/events/new?start='+$(this).data('date'); }); - } - }, - - eventRender: function(event, element, view) { - //console.log(view.name); - if (event.item['author-name']==null) return; - switch(view.name) { - case "month": - element.find(".fc-title").html( - "{1} : {2}".format( - event.item['author-avatar'], - event.item['author-name'], - event.title - )); - break; - case "agendaWeek": - element.find(".fc-title").html( - "{1}

{2}

{3}

".format( - event.item['author-avatar'], - event.item['author-name'], - event.item.desc, - event.item.location - )); - break; - case "agendaDay": - element.find(".fc-title").html( - "{1}

{2}

{3}

".format( - event.item['author-avatar'], - event.item['author-name'], - event.item.desc, - event.item.location - )); - break; - } - } - - }); - - // center on date - var args=location.href.replace(baseurl,"").split("/"); - if (args.length>=5 && window.eventModeParams == 2) { - $("#events-calendar").fullCalendar('gotoDate',args[3] , args[4]-1); - } else if (args.length>=4 && window.eventModeParams == 1) { - $("#events-calendar").fullCalendar('gotoDate',args[2] , args[3]-1); - } - - // show event popup - var hash = location.hash.split("-") - if (hash.length==2 && hash[0]=="#link") showEvent(hash[1]); - } - - - switch(window.autocompleteType) { - case 'msg-header': - $("#recip").name_autocomplete(baseurl + '/acl', '', false, function(data) { - $("#recip-complete").val(data.id); - }); - break; - case 'contacts-head': - $("#contacts-search").contact_autocomplete(baseurl + '/acl', 'a', true); - - - $("#contacts-search").keyup(function(event) { - if (event.keyCode == 13) { - $("#contacts-search").click(); - } - }); - $(".autocomplete-w1 .selected").keyup(function(event) { - if (event.keyCode == 13) { - $("#contacts-search").click(); - } - }); - break; - case 'display-head': - $(".comment-wwedit-wrapper textarea").editor_autocomplete(baseurl+"/acl"); - break; - default: - break; - } - - // Add Colorbox for viewing Network page images - //var cBoxClasses = new Array(); - $(".wall-item-body a img").each(function() { - var aElem = $(this).parent(); - var imgHref = aElem.attr("href"); - - // We need to make sure we only put a Colorbox on links to Friendica images - // We'll try to do this by looking for links of the form - // .../photo/ab803d8eg08daf85023adfec08 (with nothing more following), in hopes - // that that will be unique enough - if (imgHref.match(/\/photo\/[a-fA-F0-9]+(-[0-9]\.[\w]+?)?$/)) { - - // Add a unique class to all the images of a certain post, to allow scrolling through - var cBoxClass = $(this).closest(".wall-item-body").attr("id") + "-lightbox"; - $(this).addClass(cBoxClass); - - aElem.colorbox({ - maxHeight: '90%', - photo: true, // Colorbox doesn't recognize a URL that don't end in .jpg, etc. as a photo - rel: cBoxClass //$(this).attr("class").match(/wall-item-body-[\d]+-lightbox/)[0] - }); - } - }); -}); - - -// update pending count // -$(function() { - - $("nav").bind('nav-update', function(e,data) { - var elm = $('#pending-update'); - var register = $(data).find('register').text(); - if (register=="0") { register=""; elm.hide();} else { elm.show(); } - elm.html(register); - }); -}); - - -$(function() { - - $("#cnftheme").click(function() { - $.colorbox({ - width: 800, - height: '90%', - href: baseurl + "/admin/themes/" + $("#id_theme :selected").val(), - onComplete: function() { - $("div#fancybox-content form").submit(function(e) { - var url = $(this).attr('action'); - // can't get .serialize() to work... - var data={}; - $(this).find("input").each(function() { - data[$(this).attr('name')] = $(this).val(); - }); - $(this).find("select").each(function() { - data[$(this).attr('name')] = $(this).children(":selected").val(); - }); - console.log(":)", url, data); - - $.post(url, data, function(data) { - if (timer) { - clearTimeout(timer); - } - NavUpdate(); - $.colorbox.close(); - }) - - return false; - }); - - } - }); - return false; - }); -}); - - -function homeRedirect() { - $('html').fadeOut('slow', function() { - window.location = baseurl + "/login"; - }); -} - - -if (typeof window.photoEdit != 'undefined') { - - $(document).keydown(function(event) { - - if (window.prevLink != '') { if (event.ctrlKey && event.keyCode == 37) { event.preventDefault(); window.location.href = window.prevLink; }} - if (window.nextLink != '') { if (event.ctrlKey && event.keyCode == 39) { event.preventDefault(); window.location.href = window.nextLink; }} - - }); -} - -function showEvent(eventid) { - $.get( - baseurl + window.eventModuleUrl + '/?id=' + eventid, - function(data) { - $.colorbox({html:data}); - $.colorbox.resize(); - } - ); -} - -function doEventPreview() { - $('#event-edit-preview').val(1); - $.post('events',$('#event-edit-form').serialize(), function(data) { - $.colorbox({ html: data }); - }); - $('#event-edit-preview').val(0); -} - -function initCrop() { - function onEndCrop( coords, dimensions ) { - $PR( 'x1' ).value = coords.x1; - $PR( 'y1' ).value = coords.y1; - $PR( 'x2' ).value = coords.x2; - $PR( 'y2' ).value = coords.y2; - $PR( 'width' ).value = dimensions.width; - $PR( 'height' ).value = dimensions.height; - } - - Event.observe( window, 'load', function() { - new Cropper.ImgWithPreview( - 'croppa', - { - previewWrap: 'previewWrap', - minWidth: 175, - minHeight: 175, - maxWidth: 640, - maxHeight: 640, - ratioDim: { x: 100, y:100 }, - displayOnInit: true, - onEndCrop: onEndCrop - }); - }); -} - -function showNavMenu(menuID) { - - if (window.navMenuTimeout[menuID + '-closing']) { - window.navMenuTimeout[menuID + '-closing'] = false; - clearTimeout(window.navMenuTimeout[menuID + '-timeout']); - } else { - window.navMenuTimeout[menuID + '-opening'] = true; - - window.navMenuTimeout[menuID + '-timeout'] = setTimeout( function () { - $(menuID).slideDown('fast').show(); - window.navMenuTimeout[menuID + '-opening'] = false; - }, 200); - } -} - -function hideNavMenu(menuID) { - - if (window.navMenuTimeout[menuID + '-opening']) { - window.navMenuTimeout[menuID + '-opening'] = false; - clearTimeout(window.navMenuTimeout[menuID + '-timeout']); - } else { - window.navMenuTimeout[menuID + '-closing'] = true; - - window.navMenuTimeout[menuID + '-timeout'] = setTimeout( function () { - $(menuID).slideUp('fast'); - window.navMenuTimeout[menuID + '-closing'] = false; - }, 500); - } -} - - - -/* - * Editor - */ - -var editor = false; -var textlen = 0; - -function initEditor(callback) { - if(editor == false) { - $("#profile-jot-text-loading").show(); - - $("#profile-jot-text-loading").hide(); - $("#profile-jot-text").css({ 'height': 200, 'color': '#000' }); - $("#profile-jot-text").editor_autocomplete(baseurl+"/acl"); - $(".jothidden").show(); - // setup acl popup - $("a#jot-perms-icon").colorbox({ - 'inline' : true, - 'transition' : 'elastic' - }); - - editor = true; - } - if (typeof callback != "undefined") { - callback(); - } -} - -function enableOnUser() { - if (editor) { - return; - } - $(this).val(""); - initEditor(); -} - -function msgInitEditor() { - $("#prvmail-text").editor_autocomplete(baseurl+"/acl"); -} - -/* - * Jot - */ - -function addeditortext(textElem, data) { - var currentText = $(textElem).val(); - $(textElem).val(currentText + data); -} - -function jotVideoURL() { - reply = prompt(window.vidURL); - if (reply && reply.length) { - addeditortext("#profile-jot-text", '[video]' + reply + '[/video]'); - } -} - -function jotAudioURL() { - reply = prompt(window.audURL); - if (reply && reply.length) { - addeditortext("#profile-jot-text", '[audio]' + reply + '[/audio]'); - } -} - - -function jotGetLocation() { - reply = prompt(window.whereAreU, $('#jot-location').val()); - if (reply && reply.length) { - $('#jot-location').val(reply); - } -} - -function jotShare(id) { - if ($('#jot-popup').length != 0) $('#jot-popup').show(); - - $('#like-rotator-' + id).show(); - $.get('share/' + id, function(data) { - if (!editor) $("#profile-jot-text").val(""); - initEditor(function() { - addeditortext("#profile-jot-text", data); - $('#like-rotator-' + id).hide(); - $(window).scrollTop(0); - }); - - }); -} - -function jotClearLocation() { - $('#jot-coord').val(''); - $('#profile-nolocation-wrapper').hide(); -} - - -function jotGetLink() { - reply = prompt(window.linkURL); - if (reply && reply.length) { - reply = bin2hex(reply); - $('#profile-rotator').show(); - $.get('parse_url?binurl=' + reply, function(data) { - addeditortext(window.jotId, data); - $('#profile-rotator').hide(); - }); - } -} - - -function linkdropper(event) { - var linkFound = event.dataTransfer.types.contains("text/uri-list"); - if (linkFound) - event.preventDefault(); -} - - -function linkdrop(event) { - var reply = event.dataTransfer.getData("text/uri-list"); - event.preventDefault(); - if (reply && reply.length) { - reply = bin2hex(reply); - $('#profile-rotator').show(); - $.get('parse_url?binurl=' + reply, function(data) { - addeditortext(window.jotId, data); - $('#profile-rotator').hide(); - }); - } -} - - -if (typeof window.geoTag === 'function') window.geoTag(); - - -/* - * Items - */ - -function confirmDelete() { return confirm(window.delItem); } - -function deleteCheckedItems(delID) { - if (confirm(window.delItems)) { - var checkedstr = ''; - - $(delID).hide(); - $(delID + '-rotator').show(); - $('.item-select').each( function() { - if ($(this).is(':checked')) { - if (checkedstr.length != 0) { - checkedstr = checkedstr + ',' + $(this).val(); - } else { - checkedstr = $(this).val(); - } - } - }); - $.post('item', { dropitems: checkedstr }, function(data) { - window.location.reload(); - }); - } -} - -function itemTag(id) { - reply = prompt(window.term); - if (reply && reply.length) { - reply = reply.replace('#',''); - if (reply.length) { - - commentBusy = true; - $('body').css('cursor', 'wait'); - - $.get('tagger/' + id + '?term=' + reply, NavUpdate); - liking = 1; - } - } -} - -function itemFiler(id) { - - var bordercolor = $("input").css("border-color"); - - $.get('filer/', function(data) { - $.colorbox({html:data}); - $.colorbox.resize(); - $("#id_term").keypress(function() { - $(this).css("border-color",bordercolor); - }) - $("#select_term").change(function() { - $("#id_term").css("border-color",bordercolor); - }) - - $("#filer_save").click(function(e) { - e.preventDefault(); - reply = $("#id_term").val(); - if (reply && reply.length) { - commentBusy = true; - $('body').css('cursor', 'wait'); - $.get('filer/' + id + '?term=' + reply, NavUpdate); - liking = 1; - $.colorbox.close(); - } else { - $("#id_term").css("border-color","#FF0000"); - } - return false; - }); - }); - -} - - -/* - * Comments - */ - -function insertFormatting(BBcode, id) { - var tmpStr = $("#comment-edit-text-" + id).val(); - if (tmpStr == "") { - $("#comment-edit-text-" + id).addClass("comment-edit-text-full"); - $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty"); - openMenu("comment-edit-submit-wrapper-" + id); - } - - textarea = document.getElementById("comment-edit-text-" +id); - if (document.selection) { - textarea.focus(); - selected = document.selection.createRange(); - selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]"; - } else if (textarea.selectionStart || textarea.selectionStart == "0") { - var start = textarea.selectionStart; - var end = textarea.selectionEnd; - textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length); - } - - return true; -} - -function cmtBbOpen(id) { - $("#comment-edit-bb-" + id).show(); -} -function cmtBbClose(id) { - $("#comment-edit-bb-" + id).hide(); -} - -function commentOpen(obj,id) { - if (obj.value == "") { - $("#comment-edit-text-" + id).addClass("comment-edit-text-full"); - $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty"); - $("#mod-cmnt-wrap-" + id).show(); - openMenu("comment-edit-submit-wrapper-" + id); - } -} -function commentClose(obj,id) { - if (obj.value == "") { - $("#comment-edit-text-" + id).removeClass("comment-edit-text-full"); - $("#comment-edit-text-" + id).addClass("comment-edit-text-empty"); - $("#mod-cmnt-wrap-" + id).hide(); - closeMenu("comment-edit-submit-wrapper-" + id); - } -} - - -function commentInsert(obj,id) { - var tmpStr = $("#comment-edit-text-" + id).val(); - if (tmpStr == "") { - $("#comment-edit-text-" + id).addClass("comment-edit-text-full"); - $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty"); - openMenu("comment-edit-submit-wrapper-" + id); - } - var ins = $(obj).html(); - ins = ins.replace("<","<"); - ins = ins.replace(">",">"); - ins = ins.replace("&","&"); - ins = ins.replace(""",'"'); - $("#comment-edit-text-" + id).val(tmpStr + ins); -} - -function qCommentInsert(obj,id) { - var tmpStr = $("#comment-edit-text-" + id).val(); - if (tmpStr == "") { - $("#comment-edit-text-" + id).addClass("comment-edit-text-full"); - $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty"); - openMenu("comment-edit-submit-wrapper-" + id); - } - var ins = $(obj).val(); - ins = ins.replace("<","<"); - ins = ins.replace(">",">"); - ins = ins.replace("&","&"); - ins = ins.replace(""",'"'); - $("#comment-edit-text-" + id).val(tmpStr + ins); - $(obj).val(""); -} diff --git a/view/theme/frost/lock.cur b/view/theme/frost/lock.cur deleted file mode 100644 index 011f44705..000000000 Binary files a/view/theme/frost/lock.cur and /dev/null differ diff --git a/view/theme/frost/login-bg.gif b/view/theme/frost/login-bg.gif deleted file mode 100644 index cde836c89..000000000 Binary files a/view/theme/frost/login-bg.gif and /dev/null differ diff --git a/view/theme/frost/login-style.css b/view/theme/frost/login-style.css deleted file mode 100644 index 167ebcb27..000000000 --- a/view/theme/frost/login-style.css +++ /dev/null @@ -1,176 +0,0 @@ -body { - font-family: helvetica,arial,freesans,clean,sans-serif; - font-size: 14px; - /*background-image: none;*/ - background-color: #ffffff; - color: #505050;/* ZP Change*/ - margin: 0px; -} - -a, a:visited, a:link { color: #3465a4; text-decoration: none; } -a:hover {text-decoration: underline; } - -img { border :0px; } - -nav { - display: none; -} - -/* popup notifications */ -div.jGrowl div.notice { - background: #511919 url("../../../images/icons/48/notice.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; -} -div.jGrowl div.info { - background: #364e59 url("../../../images/icons/48/info.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; -} -#jGrowl.top-right { - top: 15px; - right: 15px; -} -div.jGrowl-notification { - border-radius: 7px; -} - -.login-button { - margin-top: 110px; -} - -img.login-button-image { - max-width: 350px; -} - -div.section-wrapper { - position: relative; - width: 800px; - margin-left: auto; - margin-right: auto; - text-align: center; -} - -.login-form { - padding-top: 200px; - margin-bottom: 50px; -} - -.register-form { - margin-top: 15px; -} - -.lostpass-form { - margin-top: 170px; -} - -.field { - margin-bottom: 2px; - padding-bottom: 0px; - display: inline-block; - text-align: left; -} - -.field label { - width: 275px; - /*position: absolute;*/ - display: inline-block; - margin-left: 0px; - font-weight: 700; -} - -.field input { -/* margin-left: 225px;*/ - width: 200px; -} - -.field.checkbox label { - position: auto; - /*margin-left: 100px;*/ -} -/*.field.checkbox input { - width: auto; - margin-left: 140px; -}*/ - -#div_id_remember { - margin-top: 10px; - margin-bottom: 10px; -} -#div_id_remember label { - width: auto; - margin-right: 1em; -} - -/*.openid input {*/ -#id_openid_url, input.openid { - background: url(login-bg.gif) no-repeat; - background-position: 0 50%; - width: 182px; - padding-left: 18px; -} - -/*#wrapper_username input, #wrapper_password input, #wrapper_openid_url input { - margin-left: 225px; -}*/ - -/*#register-openid-wrapper input, #register-name-wrapper input, #register-email-wrapper input, #register-nickname-wrapper input { - margin-left: 275px; -}*/ - -#register-openid-wrapper { - display: inline-block; - text-align: left; -} -#label-register-openid { - display: inline-block; - width: 275px; -} - -#login-name-wrapper input { - margin-left: 200px; -} - -.login-extra-links, .agreement { - font-size: 12px; -} - -#login-submit-button, #register-submit-button, #lostpass-submit-button { - font-size: 16px; -} - -#register-link { - margin-right: 200px; -} - -.error-message { - width: 475px; - color: #FF0000; - font-size: 1.1em; - text-align: left; - border: 1px solid #FF8888; - background-color: #FFEEEE; - padding: 10px; - margin-left: auto; - margin-right: auto; -} - -.register-explain-wrapper { - width: 400px; - font-size: 12px; - text-align: left; - margin-left: 200px; -} - -#lostpass-desc { - width: 380px; - margin-left: 220px; - text-align: left; - font-size: 12px; -} - -footer { - text-align: center; - padding-top: 3em; - padding-bottom: 1em; -} diff --git a/view/theme/frost/photo-menu.jpg b/view/theme/frost/photo-menu.jpg deleted file mode 100644 index fde5eb535..000000000 Binary files a/view/theme/frost/photo-menu.jpg and /dev/null differ diff --git a/view/theme/frost/php/default.php b/view/theme/frost/php/default.php deleted file mode 100644 index e58fd2ca8..000000000 --- a/view/theme/frost/php/default.php +++ /dev/null @@ -1,43 +0,0 @@ - - - - <?php if(x($page,'title')) echo $page['title'] ?> - - - -module === 'home') echo 'onLoad="setTimeout(\'homeRedirect()\', 1500)"'?>> - - - module === 'home' ) { ?> -
- -
- - module === 'login' || $a->module === 'register' || $a->module === 'lostpass' ) { - ?> -
-
-
-
-
- - -
- -
- -
- -
- -
- -
-
-
- - - - diff --git a/view/theme/frost/screenshot.jpg b/view/theme/frost/screenshot.jpg deleted file mode 100644 index 90c5ebb2b..000000000 Binary files a/view/theme/frost/screenshot.jpg and /dev/null differ diff --git a/view/theme/frost/style.css b/view/theme/frost/style.css deleted file mode 100644 index 3ed83e28b..000000000 --- a/view/theme/frost/style.css +++ /dev/null @@ -1,4353 +0,0 @@ -/** - * duepuntozero Frindika style - * Fabio Comuni - * - * Heavily modified for Frost - * Zach P - */ - - -/* generals */ -body { - font-family: helvetica,arial,freesans,clean,sans-serif; - font-size: 12px; -/* line-height: 24px;*/ - background-color: #ffffff; - background-image: url(head.jpg); - background-repeat: repeat-x; - color: #505050; - margin: 0px; -} - -div.container { - display: block; - width: 785px; - margin-top: 0px; - margin-bottom: 0px; - margin-left: auto; - margin-right: auto; -} - -a, a:visited, a:link { color: #3465a4; text-decoration: none; } -a:hover {text-decoration: underline; } - -input { - border: 1px solid #666666; - -moz-border-radius: 3px; - -webkit-border-radius: 3px; - border-radius: 3px; - padding: 3px; -} - -img { border :0px; } - -#id_openid_url, .openid input { - background: url(login-bg.gif) no-repeat; - background-position: 0 50%; - padding-left: 18px; -} -.openid:hover { - -} - -#id_openid_url { - width: 384px; -} - -code { - font-family: Courier, monospace; - white-space: pre; - display: block; - overflow: auto; - border: 1px solid #444; - background: #EEE; - color: #444; - padding: 10px; - margin-top: 20px; -} - -blockquote { - background-color: #f4f8f9; - border-left: 4px solid #dae4ee; - padding: 0.4em; -} - -.icollapse-wrapper, .ccollapse-wrapper { - border: 1px solid #CCC; - padding: 5px; -} - -.hide-comments-outer { - margin-left: 75px; - font-weight: 700; - opacity: 0.4; - border-bottom: 1px solid #AAA; -} -.hide-comments-outer:hover { - opacity: 1.0; - border-bottom: 1px solid #DDD; /* manually prevent the border from changing color */ -} -.hide-comments { - margin-left: 5px; -} - -#panel { - position: absolute; - z-index: 2; - width: 30%; - padding: 25px; - -/* background-color: ivory; - border: 1px solid #444;*/ - - border-radius: 7px; - background-color: #222; - color: #eee; -} - -.heart { - color: #FF0000; - font-size: 100%; - margin-right: 5px; -} - -.pull-right { float: right } - -.btn { - outline: none; - -moz-box-shadow: inset 0px 1px 0px 0px #ffffff; - -webkit-box-shadow: inset 0px 1px 0px 0px #ffffff; - box-shadow: inset 0px 1px 0px 0px #ffffff; - background-color: #ededed; - text-indent: 0; - border: 1px solid #dcdcdc; - display: inline-block; - color: #777777; - padding: 5px 10px; - text-align: center; - border-radius: 8px; -} -a.btn { - text-decoration: none; - color: inherit; -} - -.menu-popup { - width: auto; - border: 2px solid #444444; - background: #FFFFFF; - position: absolute; - margin: 2px 0 0; - display: none; - z-index: 10000; -} - -.menu-popup li a { - display: block; - padding: 2px; -} - -.menu-popup li a:hover { - color: #FFFFFF; - background: #3465A4; - text-decoration: none; -} -ul.menu-popup li.divider { - height: 1px; - margin: 3px 0; - overflow: hidden; - background-color: #2d2d2d; -} - - -/* nav */ -nav { - height: 94px; - width: 1100px; - display: block; - margin-top: 0px; - margin-bottom: 0px; - margin-left: auto; - margin-right: auto; -} -nav #site-location { - color: #888a85; - font-size: 0.8em; - position: absolute; -} - -.error-message { - color: #FF0000; - font-size: 1.1em; - border: 1px solid #FF8888; - background-color: #FFEEEE; - padding: 10px; -} - -.info-message { - color: #204a87; - font-size: 1.1em; - border: 1px solid #3465a4; - background-color: #d7e3f1; - padding: 10px; -} - - -nav #banner { - display: block; - margin-top: 14px; - position: absolute; -} -nav #banner #logo-text a { - font-size: 40px; - font-weight: bold; - margin-left: 3px; - color: #000000; - -} -nav #banner #logo-text a:hover { text-decoration: none; } - - -/* ZP REMOVE? nav-commlink */ -.nav-commlink, .nav-login-link { - display: block; - height: 15px; - margin-top: 67px; - margin-right: 2px; - /*padding: 6px 10px;*/ - padding: 6px 3px; - float: left; - bottom: 140px; - border: 1px solid #babdb6; - border-bottom: 0px; - background-color: #aec0d3; - color: #565854; - -moz-border-radius: 3px 3px 0px 0px; - -webkit-border-radius: 3px 3px 0px 0px; - border-radius: 3px 3px 0px 0px; -} - -.nav-commlink.selected { - background-color: #ffffff; - border-bottom: 1px solid #ffffff; - color: #000000 !important; - margin-top: 64px; - padding-top: 6px; - padding-bottom: 8px; -} - -.nav-ajax-left.show { - position: absolute; - font-size: 0.8em; - top: 25px; - right: 5px; - padding: 1px 2px; - border-radius: 4px; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; - background-color: gold !important; -} - - - -nav #nav-link-wrapper .nav-link { - /*border-right: 1px solid #babdb6;*/ -} - -nav .nav-link img { - margin-top: 24px; - margin-bottom: 0.2em; - margin-right: 1em; - margin-left: 1em; - background-color: transparent !important; -} - -.nav-button-container { - float: right; - position: relative; -} - -.nav-button-container .nav-ajax-left { -} - -.nav-menu-list { - text-align: center; - line-height: 18px; - - border-left: 1px solid #AAAAAA;/*#444444;*/ - border-right: 1px solid #AAAAAA; - border-top: 1px solid #AAAAAA; - border-bottom: 1px solid #AAAAAA; - - -moz-box-shadow: 3px 3px 5px #555; - -webkit-box-shadow: 3px 3px 5px #555; - box-shadow: 3px 3px 5px #555; - - background: #FFFFFF; - - display: none; - list-style: none; - - width: 10em; - position: absolute; - margin: 0px; - right: -33px; - padding: 1em 0px; - - z-index: 10000; -} - - - -div.main-container { - width: 1180px; - margin: 0px auto; - display: block; - position: relative; -} - -/*div.main-content-loading { - position: absolute; - top: 200px; - left: 50%; - display: none; -}*/ - - -/* aside */ -aside { - display: block; - min-height: 112px; - - width: 250px; - - padding: 1em; - margin: 1em 0px 0px 0px; - - position: absolute; - -/* float:left;*/ -} - -#subscribe-feed-link, -#dfrn-request-link { - display: block; - color: #FFFFFF; - -webkit-border-radius: 5px ; - -moz-border-radius: 5px; - border-radius: 5px; - padding: 5px; - font-weight: bold; - background: #3465a4 url('friendica-16.png') no-repeat 95% center; -} -#wallmessage-link { - display: block; - color: #FFFFFF; - -webkit-border-radius: 5px ; - -moz-border-radius: 5px; - border-radius: 5px; - padding: 5px; - font-weight: bold; - background-color: #3465a4; -} - -/* section */ -section { - width: 565px; - - display: block; - - margin-left: auto; - margin-right: auto; - margin-top: 0px; - margin-bottom: 0px; - - padding-left: 1em; - padding-right: 1em; - padding-top: 0.5em; - - background-color: #ffffff; -/* background-image: url(border.jpg); - background-position: top left; - background-repeat: no-repeat;*/ - - min-height: 112px; -/* border-top: 1px solid #babdb6;*/ - border-top: 1px solid #CCC; - border-left: 1px solid #CCC; - border-right: 1px solid #CCC; - border-top-left-radius: 10px; - border-top-right-radius: 10px; -} - -.tabs { - height: 27px; - /*background-image: url(head.jpg); - background-repeat: repeat-x; - background-position: 0px -20px; - border-bottom: 1px solid #babdb6;*/ - padding:0px; -} -.tabs li { margin: 0px; list-style: none; } -.tabs a { -/* background-image: url(head.jpg); - background-repeat: repeat-x; - background-position: 0px 0px; - background-size: auto 45px;*/ - - padding: 0.4em 0.5em; - margin-right: 0.5em; - margin-bottom: 0.5em; - border: 1px solid #aaa; - border-radius: 8px; - -moz-border-radius: 8px; - -webkit-border-radius: 8px; - - box-shadow: -2px -2px 3px #aaa inset; - -moz-box-shadow: -2px -2px 3px #aaa inset; - -webkit-box-shadow: -2px -2px 3px #aaa inset; -} -.tab { - display:block; - float:left; - padding: 0.4em; - /*margin-right: 1em;*/ - margin-right: 3px ; -} -.tab.active { - font-weight: bold; - -/* background-image: url(head-flipped.jpg); - background-position: 0px -20px;*/ - - box-shadow: 2px 2px 3px #aaa inset; - -moz-box-shadow: 2px 2px 3px #aaa inset; - -webkit-box-shadow: 2px 2px 3px #aaa inset; -} - -#display-top-padding { - padding-top: 3em; -} - -/* Contact-Header for the Network Stream */ -#viewcontact_wrapper-network { - width: 100%; - min-height: 100px; - background-color: #FAFAFA; - border: 1px solid #DDDDDD; - border-radius: 5px; -} -#contact-entry-wrapper-network { - float: none; - width: auto; - height: auto; - padding: 10px; - margin: 0; -} -#contact-entry-accounttype-network { - font-size: 0.9em; -} -#contact-entry-name-network { - font-size: 1.5em; -} - -/* footer */ -footer { - text-align: center; - padding-bottom: 1em; -} - -#maintenance-message { - font-size: 20px; - text-align: center; - margin-top: 10em; -} - -.birthday-today, .event-today { - font-weight: bold; -} -/* -div.wall-item-content-wrapper.shiny { - background-image: url('shiny.png'); - background-position: -5px 30px; - background-repeat:no-repeat; -}*/ - -.preview { - background: #FFFFC8; -} - -#theme-preview { - margin: 15px 0 15px 150px; -} -#theme-version { - display: block; - font-weight: bold; -} -#theme-credits { - margin-top: 15px; - margin-bottom: 15px; -} - -/* from default */ -#jot-perms-icon, -#profile-location, -#profile-nolocation, -#profile-youtube, -#profile-video, -#profile-audio, -#profile-link, -#profile-title, -#wall-image-upload, -#wall-file-upload, -#profile-upload-wrapper, -#wall-image-upload-div, -#wall-file-upload-div, -.hover, .focus { - cursor: pointer; -} - -#jot-perms-icon { - float: left; -} - -#jot-title, #jot-category { - margin: 0px; - margin-bottom: 5px; - - height: 20px; - width: 465px; - font-weight: bold; - - border: 1px solid #ffffff; - - display: block; - clear: left; -} - -#jot-title::-webkit-input-placeholder{font-weight: normal;} -#jot-category::-webkit-input-placeholder{font-weight: normal;} -#jot-title:-moz-placeholder{font-weight: normal;} -#jot-category:-moz-placeholder{font-weight: normal;} - - -#jot-title:hover, -#jot-title:focus, -#jot-category:hover, -#jot-category:focus { - border: 1px solid #cccccc; -} - -.jothidden { display:none; } - - -.fakelink, .fakelink:visited, .fakelink:link { - color: #3465a4; - text-decoration: none; - cursor: pointer; - margin-top: 15px; - margin-bottom: 15px; -} -.lockview { - cursor: pointer; -} - -#group-sidebar { - margin-bottom: 10px; -} - -.group-selected, .nets-selected, .fileas-selected, .categories-selected, .forum-selected { - padding: 3px; - -moz-border-radius: 3px; - -webkit-border-radius: 3px; - border-radius: 3px; - border: 1px solid #CCCCCC; - background: #F8F8F8; - font-weight: bold; -} - -.settings-widget .selected { - padding: 3px; - -moz-border-radius: 3px; - -webkit-border-radius: 3px; - border-radius: 3px; - border: 1px solid #CCCCCC; - background: #F8F8F8; - font-weight: bold; -} - -.fakelink:hover { - color: #3465a4; - text-decoration: underline; - cursor: pointer; -} -.smalltext { - font-size: 0.7em; -} -#sysmsg { - /*width: 600px;*/ - margin-bottom: 10px; -} - -#register-fill-ext { - margin-bottom: 25px; -} - -#label-register-name, #label-register-email, #label-register-nickname, #label-register-openid { - float: left; - width: 350px; - margin-top: 10px; -} - -#register-name, #register-email, #register-nickname { - float: left; - margin-top: 10px; - width: 150px; -} - -#register-openid { - float: left; - margin-top: 10px; - width: 130px; -} - -#register-name-end, #register-email-end, #register-nickname-end, #register-submit-end, #register-openid-end { - clear: both; -} - -#register-nickname-desc { - margin-top: 30px; - width: 650px; -} -#register-sitename { - float: left; - margin-top: 10px; -} - -#register-submit-button { - margin-top: 10px; -} - -.login-form { - margin-top: -150px; -} -/*#login_standard { - width: 210px; - float: left; -} -#login_openid { - width: 210px; - margin-left: 250px; -} - -#login_standard input, -#login_openid input { - width: 180px; -} - -#login-extra-links { - clear: both; -} - -#register-link, #lost-password-link { - float: left; - font-size: 80%; - margin-right: 15px; -} - -#login-name-end, #login-password-end, #login-extra-end, #login-submit-end { - height: 50px; -} - -#login-submit-button { - margin-top: 10px; - margin-left: 200px; -}*/ - - -input#dfrn-url { - float: left; - background: url(friendica-16.png) no-repeat; - background-position: 2px center; - font-size: 17px; - padding-left: 21px; - height: 21px; - background-color: #FFFFFF; - color: #000000; - margin-bottom: 20px; -} - -#dfrn-url-label { - float: left; - width: 250px; -} - -#dfrn-request-url-end { - clear: both; -} - -#knowyouyes, #knowyouno { - float: left; -} - -#dfrn-request-knowyou-yes-wrapper, #dfrn-request-knowyou-no-wrapper { - - float: none; -} -#dfrn-request-knowyou-yes-label, #dfrn-request-knowyou-no-label { - float: left; - width: 75px; - margin-left: 50px; - margin-bottom: 7px; -} -#dfrn-request-knowyou-break, #dfrn-request-knowyou-end { - clear: both; - -} - -#dfrn-request-message-wrapper { - margin-bottom: 50px; -} -#dfrn-request-submit-wrapper { - clear: both; - margin-left: 50px; -} - -#dfrn-request-info-wrapper { - margin-left: 50px; -} - - - -#cropimage-wrapper, #cropimage-preview-wrapper { - float: left; - padding: 30px; -} - -#crop-image-form { - margin-top: 30px; - clear: both; -} - -#croppa { - max-width: 510px; -} - -.intro-wrapper { - margin-top: 20px; -} - -.intro-fullname { - font-size: 1.1em; - font-weight: bold; - -} -.intro-desc { - margin-bottom: 20px; - font-weight: bold; -} - -.intro-note { - padding: 10px; -} - -.intro-end { - padding: 30px; -} - -.intro-form { - float: left; -} -.intro-approve-form { - clear: both; -} -.intro-approve-as-friend-end { - clear: both; -} -.intro-submit-approve, .intro-submit-ignore { - margin-right: 20px; -} -.intro-submit-approve { - margin-top: 15px; -} - -.intro-approve-as-friend-label, .intro-approve-as-fan-label { - float: left; - width: 100px; - margin-left: 20px; -} -.intro-approve-as-friend, .intro-approve-as-fan { - float: left; -} -.intro-form-end { - clear: both; -} -.intro-approve-as-friend-desc { - margin-top: 15px; -} -.intro-approve-as-end { - clear: both; - margin-bottom: 10px; -} - -.intro-end { - clear: both; - margin-bottom: 30px; -} -.aprofile dt { - font-weight: bold; -} -#page-profile .title { - font-weight: bold; -} -#profile-vcard-break { - clear: both; -} -#profile-extra-links { - clear: both; - margin-top: 10px; -} - -#profile-extra-links ul { - list-style-type: none; - padding: 0px; -} - - -#profile-extra-links li { - margin-top: 5px; -} - -#profile-edit-links ul { - list-style-type: none; -} - -#profile-edit-links li { - margin-top: 10px; -} -.profile-edit-side-div { - float: right; -} -.profile-edit-side-link { - opacity: 0.3; - filter:alpha(opacity=30); -} -.profile-edit-side-link:hover { - opacity: 1.0; - filter:alpha(opacity=100); -} - -.view-contact-wrapper { - margin-top: 20px; - float: left; - margin-left: 20px; - width: 180px; -} - -.contact-wrapper { - float: left; - width: 150px; - height: 150px; - overflow: auto; -} - -#view-contact-end { - clear: both; -} - - -#viewcontacts { - margin-top: 15px; -} -#profile-edit-default-desc { - color: #FF0000; - border: 1px solid #FF8888; - background-color: #FFEEEE; - padding: 7px; -} - -#profile-edit-clone-link-wrapper { - float: left; - margin-left: 50px; - margin-bottom: 20px; - width: 300px; -} - - -#profile-edit-links-end { - clear: both; - margin-bottom: 15px; -} - -.profile-listing-photo { - border: none; -} - -.profile-edit-submit-wrapper { - margin-top: 20px; - margin-bottom: 20px; -} - -#profile-photo-link-select-wrapper { - margin-top: 2em; -} - -#profile-photo-submit-wrapper { - margin-top: 10px; -} - -#profile-photo-wrapper img { - width:175px; - height:175px; - padding: 12px; -} - -#profile-edit-profile-name-label, -#profile-edit-name-label, -#profile-edit-pdesc-label, -#profile-edit-gender-label, -#profile-edit-dob-label, -#profile-edit-address-label, -#profile-edit-locality-label, -#profile-edit-region-label, -#profile-edit-postal-code-label, -#profile-edit-country-name-label, -#profile-edit-marital-label, -#profile-edit-sexual-label, -#profile-edit-politic-label, -#profile-edit-religion-label, -#profile-edit-pubkeywords-label, -#profile-edit-prvkeywords-label, -#profile-edit-xmpp-label, -#profile-edit-homepage-label, -#profile-edit-hometown-label { - font-weight: 700; - float: left; - width: 175px; -} - -#profile-edit-profile-name, -#profile-edit-name, -#profile-edit-pdesc, -#gender-select, -#profile-edit-dob, -#profile-edit-address, -#profile-edit-locality, -#profile-edit-region, -#profile-edit-postal-code, -#profile-edit-country-name, -#marital-select, -#sexual-select, -#profile-edit-politic, -#profile-edit-religion, -#profile-edit-xmpp, -#profile-edit-pubkeywords, -#profile-edit-prvkeywords, -#profile-in-dir-yes, -#profile-in-dir-no, -#profile-in-netdir-yes, -#profile-in-netdir-no, -#hide-wall-yes, -#hide-wall-no, -#hide-friends-yes, -#hide-friends-no { - float: left; - margin-bottom: 20px; -} -#profile-edit-xmpp, -#profile-edit-pubkeywords, -#profile-edit-prvkeywords { - margin-bottom: 5px; -} -#settings-normal, -#settings-soapbox, -#settings-freelove, -#settings-community { - float: left; -} -#settings-notifications label { - margin-left: 20px; -} -#settings-notify-desc, #settings-activity-desc { - font-weight: bold; - margin-bottom: 15px; -} -#settings-pagetype-desc { - color: #666666; - margin-bottom: 15px; -} - -#profile-in-dir-yes-label, -#profile-in-dir-no-label, -#profile-in-netdir-yes-label, -#profile-in-netdir-no-label, -#hide-wall-yes-label, -#hide-wall-no-label, -#hide-friends-yes-label, -#hide-friends-no-label { - margin-left: 125px; - float: left; - width: 50px; -} - -#profile-edit-howlong-label, -#profile-edit-with-label { - display: block; - font-style: italic; - width: 175px; - margin-left: 50px; -} -#profile-edit-howlong, -#profile-edit-with { - margin-bottom: 20px; - margin-left: 50px; -} -/*#profile-edit-with-label { - width: 175px; - margin-left: 20px; -}*/ - -#profile-publish-yes-reg, -#profile-publish-no-reg { - float: left; - margin-bottom: 10px; -} - -#profile-publish-yes-label-reg, -#profile-publish-no-label-reg { - margin-left: 350px; - float: left; - width: 50px; -} - -#profile-publish-break-reg, -#profile-publish-end-reg { - clear: both; -} - - -#profile-edit-pdesc-desc, -#profile-edit-xmpp-desc, -#profile-edit-pubkeywords-desc, -#profile-edit-prvkeywords-desc { - float: left; - margin-left: 20px; - margin-bottom: 20px; -} -#profile-edit-prvkeywords-desc { - margin-bottom: 0px; -} - - -/*#profile-edit-homepage, #profile-edit-hometown { - float: left; - margin-bottom: 35px; -}*/ -#profile-edit-homepage, -#profile-edit-hometown { - float: left; - margin-bottom: 25px; -} -#profile-edit-hometown { - margin-bottom: 5px; -} -#settings-normal-label, -#settings-soapbox-label, -#settings-community-label, -#settings-freelove-label { - float: left; - width: 200px; -} -#settings-normal-desc, -#settings-soapbox-desc, -#settings-community-desc, -#settings-freelove-desc { - /*float: left; - margin-left: 75px;*/ - clear: left; - color: #666666; - display: block; - margin-bottom: 20px -} - -#profile-edit-profile-name-end, -#profile-edit-name-end, -#profile-edit-pdesc-end, -#profile-edit-gender-end, -#profile-edit-dob-end, -#profile-edit-address-end, -#profile-edit-locality-end, -#profile-edit-region-end, -#profile-edit-postal-code-end, -#profile-edit-country-name-end, -#profile-edit-marital-end, -#profile-edit-sexual-end, -#profile-edit-politic-end, -#profile-edit-religion-end, -#profile-edit-pubkeywords-end, -#profile-edit-prvkeywords-end, -#profile-edit-homepage-end, -#profile-edit-xmpp-end, -#profile-edit-hometown-end, -#profile-in-dir-break, -#profile-in-dir-end, -#profile-in-netdir-break, -#profile-in-netdir-end, -#hide-wall-break, -#hide-wall-end, -#hide-friends-break, -#hide-friends-end, -#settings-normal-break, -#settings-soapbox-break, -#settings-community-break, -#settings-freelove-break { - clear: both; -} -#profile-edit-marital-wrapper, #profile-edit-address-wrapper { - margin-top: 50px; -} -#profile-edit-marital-end { - margin-bottom: 20px; -} - -.settings-widget ul { - list-style-type: none; - padding: 0px; -} - -.settings-widget li { - margin-left: 24px; - margin-bottom: 8px; -} - - -#gender-select, #marital-select, #sexual-select { - width: 220px; -} - -#profile-edit-profile-name-wrapper .required { - color: #FF0000; - float: left; -} - -#contacts-display-wrapper { - padding-left: 0px; -} - -#contacts-search-wrapper { - padding-top: 1em; - padding-bottom: 2em; - clear: left; -} - -#contacts-main { - margin-top: 20px; - margin-bottom: 20px; -} - -.contact-entry-wrapper { - float: left; - width: 262px; - height: 90px; - padding-right: 10px; - margin: 0 10px 10px 0px; -} -.contact-entry-wrapper .contact-entry-photo-wrapper { - float: left; - margin-right: 10px; -} -#contacts-search-end { - margin-bottom: 10px; -} - -.contact-entry-direction-icon { - margin-top: 24px; - margin-right: 2px; -} - -.contact-entry-photo img { - border: none; -} -.contact-entry-photo a img { - width: 80px; - height: 80px; -} -.contact-entry-photo-end { - clear: both; -} -.contact-entry-desc { - overflow: hidden; -} -.contact-entry-name { - /*float: left;*/ - margin-left: 0px; - margin-right: 10px; - padding-bottom: 5px; - /*width: 120px;*/ - font-weight: 600; - overflow: hidden; -} -.contact-entry-details { - font-style: italic; - font-size: 10px; - font-weight: 500; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} -.contact-entry-network { - font-size: 10px; - font-weight: 500; -} -.contact-entry-edit-links { - margin-top: 6px; - margin-left: 10px; - width: 16px; -} -.contact-entry-nav-wrapper { - float: left; - margin-left: 10px; -} - -.contact-entry-edit-links img { - border: none; - margin-right: 15px; -} -.contact-entry-photo { - float: left; - position: relative; -} -.contact-entry-end { - clear: both; -} - -#fsuggest-desc, #fsuggest-submit-wrapper { - margin-top: 15px; - margin-bottom: 15px; -} - -#network-star-link{ - margin-top: 10px; -} -.network-star { - float: left; - margin-right: 5px; -} -#network-bmark-link { - margin-top: 10px; -} - -.toplevel_item { - margin-bottom: 40px; -} - -.wall-item-content-wrapper { - padding-top: 1em; /* wall-item-lock margin-top needs to match this */ - border-top: 2px solid #AAA; - position: relative; - -} - -.wall-item-content-wrapper.comment { - margin-top: 10px; - padding-top: 0px; - margin-left: 75px; - border: none; -} - -.wall-item-response { - font-style: italic; - margin-left: 0px; - opacity: 0.4; -} -.wall-item-respose:last-chid { - margin-bottom: 15px; -} -.wall-item-response:hover { - opacity: 1.0; -} - -.wall-item-response.comment { - margin-left: 75px; -} -.wall-item-response.comment:last-chid { - margin-bottom: 0px; -} - -.wall-item-info { - display: block; - float: left; - width:110px; - margin-right:10px; - margin-bottom:10px; -} -.comment .wall-item-info { - width: 70px; -} - -/*.wall-item-photo-wrapper { - margin-bottom: 10px; - width: 100px; -}*/ -.wall-item-photo-menu-button { - display: block; - position: absolute; - background-image: url("photo-menu.jpg"); - background-position: top left; - background-repeat: no-repeat; - margin: 0px; padding: 0px; - width: 16px; - height: 16px; - top: 76px; left:0px; - overflow: hidden; - text-indent: 40px; - display: none; - -} -.wall-item-photo-menu { - width: auto; - border: 2px solid #444444; - background: #FFFFFF; - position: absolute; -/* left: 10px; top: 90px;*/ - left: 0px; top:92px; - display: none; - z-index: 10000; -} -.wall-item-photo-menu { margin:0px; padding: 0px; list-style: none } -.wall-item-photo-menu li a { display: block; padding: 2px; } -.wall-item-photo-menu li a:hover { color: #FFFFFF; background: #3465A4; text-decoration: none; } - - -.comment .wall-item-photo-menu-button { /*top: 44px;*/ top: 34px;} -.comment .wall-item-photo-menu { /*top: 60px;*/ top: 50px; } - -.wallwall .wwto { - left: 50px; - margin: 0; - position: absolute; - top: 63px; - width: 30px -} -.wallwall .wwto img { - width: 30px !important; - height: 30px !important; -} - -.wallwall /*.wall-item-photo-end*/ { - clear: both; -} - -.wall-item-arrowphoto-wrapper { - position: absolute; - left: 75px; - top: 63px; - z-index: 100; -} -.wall-item-lock { - margin-top: 1em; /* needs to match .wall-item-content-wrapper padding-top */ - left: 105px; - position: absolute; - top: 1px; -} -.comment .wall-item-lock { - left: 65px; - margin-top: 0px; -} - -.wall-item-ago, .wall-item-ago a { - color: #888888; - font-size: 0.8em; -} - -.wall-item-location { - overflow: hidden; - /* add ellipsis on text overflow */ - /* this work on safari, opera, ie, chrome. */ - /* firefox users have to wait support or we */ - /* can use a jquery addon http://bit.ly/zJskg */ - text-overflow: ellipsis; - -o-text-overflow: ellipsis; - width: 100%; -} - -.wall-item-like-buttons { - float: left; - margin-right: 10px; -/* padding-right: 10px; */ -/* border-right: 2px solid #fff; */ -} - -.like-rotator { - margin-left: 5px; -} - -.wall-item-like-buttons > a, -.wall-item-like-buttons > img { - float: left; -} - -.wall-item-like-buttons img { - cursor: pointer; -} - -.wall-item-tools a { - border-radius: 4px; - padding: 2px; - background-position: center; - background-size: initial !important; -} - -.wall-item-tools a.active { - background-color: rgba(59, 101, 164, 0.5); -} - -.wall-item-share-buttons { - margin-left: 10px; - margin-right: 10px; -} - -.editpost, -.star-item , -.tag-item, -.filer-item, -.event-item { - margin-left: 10px; - float: left; -} - -.wall-item-links-wrapper { - float: left; -} - -.wall-item-delete-wrapper { - float: right; -} - -/*.wall-item-delete-end { - clear: both; -}*/ - -.wall-item-delete-icon { - border: none; -} - - -/*.wall-item-wrapper-end { - clear: both; -}*/ -.wall-item-name-link { - font-weight: bold; - text-decoration: none; - color: #3172BD; -} -.wall-item-photo { - border: none; - border-radius: 7px; - -moz-border-radius: 7px; - -webkit-border-radius: 7px; -} -.comment .wall-item-photo { - width: 50px !important; - height: 50px !important; - border-radius: 5px; - -moz-border-radius: 5px; - -webkit-border-radius: 5px; -} -.wall-item-content { - margin-left: 10px; - padding-right: 1em; -/* max-height: 500px;*/ - overflow: auto; -} - -.wall-item-content img { - display: block; - margin-top: 12px; - margin-bottom: 12px; - margin-right: auto; - margin-left: auto; -/* max-width: 100%;*/ - max-width: 400px; /* to make room for the shadow */ - padding: 5px; - - box-shadow: 0 0 10px #000; - -moz-box-shadow: 0 0 10px #000; - -webkit-box-shadow: 0 0 10px #000; -} - -.shared_content img { - max-width: 100%; -} - -.comment .wall-item-content img { - max-width: 370px; -} - -.wall-item-content img.smiley { - display: inline; - margin: auto; - padding: 0; - box-shadow: none; - -moz-box-shadow: none; - -webkit-box-shadow: none; -} - -.divgrow-showmore { - display: block; - clear: both; - text-align: center; - outline: 0; - border-top: 1px dotted #888; -} - - - -.wall-item-title { - float: left; - font-weight: bold; - font-size: 1.6em; - /*width: 450px;*/ -} - -/*.wall-item-title-end { - clear: both; -}*/ - -.wall-item-body { - text-align: justify; - float: left; - clear: left; - /*width: 450px;*/ - width: 100%; - margin-top: 10px; - line-height: 18px; -} - -.wall-item-body iframe { - display: block; - clear: both; - margin-top: 1.5em; - margin-bottom: 1.5em; -} - -.wall-item-tools { - clear: both; - - margin-top: 10px; - margin-left: 0px; - padding: 10px 10px 0px 2px; - - height: 22px; - - border-bottom: 1px solid #ddd; -} -.wall-item-author { - margin-top: 0px; -} - -.comment .wall-item-tools { - margin-left: 0px; - margin-top: 5px; - padding-top: 0px; -} - -.comment-edit-wrapper { - margin-top: 15px; - background: #f3f3f3; - margin-left: 50px; -} - -.comment-wwedit-wrapper { - display: block; - margin-top: 15px; - background: #f3f3f3; - margin-left: 75px; -} - -.comment-wwedit-wrapper.comment { - width: 300px; - margin-left: 150px; - border-radius: 10px; -} - -.comment-edit-photo { - margin-top: 10px; - margin-left: 10px; - margin-bottom: 10px; - width: 70px; - float: left; -} -.comment-edit-photo img { - width: 25px; -} -.comment .comment-edit-photo { - width: 50px; -} -.comment-edit-text-empty, .comment-edit-text-full { - float: left; - margin-top: 10px; - -moz-border-radius: 3px; - -webkit-border-radius: 3px; - border-radius: 3px; - border: 1px solid #cccccc; - padding: 3px 1px 1px 3px; -} - -.comment-edit-text-empty { - color: gray; - height: 30px; - width: 175px; - overflow: auto; - margin-bottom: 10px; -} - -.comment-edit-text-full { - color: black; - height: 150px; - width: 350px; - overflow: auto; -} - -.comment .comment-edit-text-empty { - height: 1.5em; - width: 150px; -} - -.comment .comment-edit-text-full { - margin-left: 10px; - width: 275px; -} - -.comment-edit-text-end { - clear: both; -} - -.comment-edit-submit { - margin: 10px 0px 10px 110px; -} -.comment .comment-edit-submit { - margin-left: 30px; -} - -.shared_header { - border-top: 1px solid #aaa; - color: #999; - - height: 42px; /* 32 px for the image plus 10 px for the margin around the image */ - padding-top: 0.5em; - margin-top: 1em; - margin-bottom: 1em; - -} -.shared_header img { - float: left; - - margin: auto 1em auto auto; - padding: 0; - - box-shadow: none; - -moz-box-shadow: none; - -webkit-box-shadow: none; -} - -#profile-jot-plugin-wrapper, -#profile-jot-submit-wrapper { - margin-top: 15px; -} -#profile-jot-banner-wrapper { - height: 1.5em; - display: block; - clear: left -} - -#profile-jot-submit { - float: left; -} -#profile-upload-wrapper { - float: left; - margin-left: 30px; -} -#profile-attach-wrapper { - float: left; - margin-left: 15px; -} -#profile-rotator { - float: left; - margin-left: 30px; -} -#profile-link-wrapper { - float: left; - margin-left: 30px; -} -#profile-youtube-wrapper { - float: left; - margin-left: 15px; -} -#profile-video-wrapper { - float: left; - margin-left: 15px; -} -#profile-audio-wrapper { - float: left; - margin-left: 15px; -} -#profile-location-wrapper { - float: left; - margin-left: 15px; -} -#jot-preview-link { - float: left; - margin-left: 45px; - margin-top: 0px !important; -} - - -#profile-nolocation-wrapper { - float: left; - margin-left: 15px; -} -#profile-title-wrapper { - float: left; - margin-left: 15px; -} - -#profile-jot-perms { - float: left; - margin-left: 100px; - font-weight: bold; - font-size: 1.2em; -} - - -#profile-jot-perms-end { - /*clear: left;*/ - height: 30px; -} - -#profile-jot-plugin-end{ - clear: both; -} -.profile-jot-net { - float: left; - margin-right: 10px; - margin-top: 5px; - margin-bottom: 5px; -} - -#profile-jot-networks-end { - clear: both; -} - -.profile-jot-box { - margin-top: 50px; -} - -#profile-jot-end { - /*clear: both;*/ - margin-bottom: 30px; -} -#about-jot-submit-wrapper { - margin-top: 15px; -} -#about-jot-end { - margin-bottom: 30px; -} -#contacts-main { - margin-bottom: 30px; -} - -#profile-listing-desc { - margin-left: 30px; -} - -#profile-listing-new-link-wrapper { - margin-left: 30px; - margin-bottom: 30px; -} -.profile-listing-photo-wrapper { - float: left; -} - -.profile-listing-edit-buttons-wrapper { - clear: both; -} -.profile-listing-photo-edit-link { - float: left; - width: 125px; -} -.profile-listing-end { - clear: both; -} -.profile-listing-edit-buttons-wrapper img{ - border: none; - margin-right: 20px; -} -.profile-listing { - margin-top: 25px; -} -.profile-listing-name { - float: left; - margin-left: 32px; - margin-top: 10px; - color: #3172BD; - font-weight: bold; - width: 200px; - -} -.fortune { - margin-top: 50px; - color: #4444FF; - font-weight: bold; - margin-bottom: 20px; -} - - -.directory-end { - clear: both; -} -.directory-name { - text-align: center; -} -.directory-photo { - margin-left: 25px; -} -.directory-details { - font-size: 0.7em; - text-align: center; - margin-left: 5px; - margin-right: 5px; -} -.directory-item { - float: left; -/* width: 225px; - height: 260px;*/ - padding-left: 25px; - width: 150px; - height: 225px; - overflow: auto; -} - -#directory-search-wrapper { - margin-top: 20px; - margin-right: 20px; - margin-bottom: 50px; -} - -#directory-search-end { -} - -.directory-photo-img { - width: 125px; - border: none; -} - -/* NOTE: The order of the "pager" items here is very important! - * The concern is maintaining a decent-looking pager for people who still use - * the numbers, while also having a nice-looking pager for people who use the - * "older/newer" alternate. The numbers pager uses the _first, _last, etc. classes - * while the newer pager just has bare tags inside the div.pager. So the - * following CSS sets everything up for the newer pager, then overrides those - * settings for the specific classes used by the older pager. - */ -.pager { - margin-top: 35px; - margin-bottom: 20px; - padding: 10px 0px; - text-align: center; -} - -.pager a { - font-size: 1.5em; - padding: 0.2em 1em; - border: 1px solid #aaa; - border-radius: 10px; - -moz-border-radius: 10px; - -webkit-border-radius: 10px; -} - -.pager .disabled { - display: none; -} - -.pager_first, -.pager_last, -.pager_prev, -.pager_next, -.pager_n, -.scroll_loader_text { -/* background: #EEE;*/ -} - -.pager_first a, -.pager_last a, -.pager_prev a, -.pager_next a, -.pager_n a { - font-size: 0.97em; - border: 1px solid black; - border-radius: 7px; - -moz-border-radius: 7px; - -webkit-border-radius: 7px; - text-decoration: none; - padding: 4px 6px 4px 3px; - opacity: 0.5; -} -.pager_first a:hover, -.pager_last a:hover, -.pager_prev a:hover, -.pager_next a:hover, -.pager_n a:hover { - opacity: 1.0; -} - -.pager_current { - font-size: 0.97em; - border: 1px solid black; - border-radius: 7px; - background: #FFCCCC; - padding: 4px 6px 4px 3px; -} - - -#advanced-profile-name-wrapper, -#advanced-profile-gender-wrapper, -#advanced-profile-dob-wrapper, -#advanced-profile-age-wrapper, -#advanced-profile-marital-wrapper, -#advanced-profile-sexual-wrapper, -#advanced-profile-homepage-wrapper, -#advanced-profile-xmpp-wrapper, -#advanced-profile-politic-wrapper, -#advanced-profile-religion-wrapper, -#advanced-profile-about-wrapper, -#advanced-profile-interest-wrapper, -#advanced-profile-contact-wrapper, -#advanced-profile-music-wrapper, -#advanced-profile-book-wrapper, -#advanced-profile-tv-wrapper, -#advanced-profile-film-wrapper, -#advanced-profile-romance-wrapper, -#advanced-profile-work-wrapper, -#advanced-profile-education-wrapper { - margin-top: 20px; -} - -#advanced-profile-name-text, -#advanced-profile-gender-text, -#advanced-profile-dob-text, -#advanced-profile-age-text, -#advanced-profile-marital-text, -#advanced-profile-sexual-text, -#advanced-profile-homepage-text, -#advanced-profile-xmpp-text, -#advanced-profile-politic-text, -#advanced-profile-religion-text, -#advanced-profile-about-text, -#advanced-profile-interest-text, -#advanced-profile-contact-text, -#advanced-profile-music-text, -#advanced-profile-book-text, -#advanced-profile-tv-text, -#advanced-profile-film-text, -#advanced-profile-romance-text, -#advanced-profile-work-text, -#advanced-profile-education-text { - width: 300px; - float: left; -} - -#advanced-profile-name-end, -#advanced-profile-gender-end, -#advanced-profile-dob-end, -#advanced-profile-age-end, -#advanced-profile-marital-end, -#advanced-profile-sexual-end, -#advanced-profile-homepage-end, -#advanced-profile-xmpp-end, -#advanced-profile-politic-end, -#advanced-profile-religion-end { - height: 10px; -} - -#advanced-profile-about-end, -#advanced-profile-interest-end, -#advanced-profile-contact-end, -#advanced-profile-music-end, -#advanced-profile-book-end, -#advanced-profile-tv-end, -#advanced-profile-film-end, -#advanced-profile-romance-end, -#advanced-profile-work-end, -#advanced-profile-education-end { - - -} - -#advanced-profile-name, -#advanced-profile-gender, -#advanced-profile-dob, -#advanced-profile-age, -#advanced-profile-marital, -#advanced-profile-sexual, -#advanced-profile-homepage, -#advanced-profile-xmpp, -#advanced-profile-politic, -#advanced-profile-religion { - float: left; - -} - - -#advanced-profile-about, -#advanced-profile-interest, -#advanced-profile-contact, -#advanced-profile-music, -#advanced-profile-book, -#advanced-profile-tv, -#advanced-profile-film, -#advanced-profile-romance, -#advanced-profile-work, -#advanced-profile-education { - margin-top: 10px; - margin-left: 50px; - margin-right: 20px; - padding: 10px; - border: 1px solid #CCCCCC; -} - -#advanced-profile-with { - float: left; - margin-left: 15px; -} - -#contact-edit-status-wrapper { - padding: 10px; - border: 1px solid #aaa; - border-radius: 8px; -} - -#contact-edit-contact-status { - font-weight: bold; -} -#contact-edit-actions { - float: right; - display: inline-block; -} - -#contact-edit-wrapper { - margin-top: 10px; -} - -#contact-edit-banner-name { - font-size: 1.4em; - font-weight: bold; -} - -#contact-edit-poll-wrapper { - margin-top: 15px; -} - -#contact-edit-poll-text { - margin-top: 15px; - margin-bottom: 5px; -} - -#contact-edit-update-now { - margin-top: 15px; -} - -#contact-edit-links{ - clear: both; -} - -#contact-edit-links ul { - list-style: none; - list-style-type: none; - margin-left: 0px; - padding-left: 0px; -} - -#contact-edit-links li { - margin-top: 5px; -} - -#contact-edit-nav-end { - clear: both; -} - -#contact-edit-wrapper { - width: 100%; -} - -#contact-edit-end { - clear: both; - margin-top: 15px; -} - -#contact-profile-selector { - width: 175px; - margin-left: 175px; -} - -.contact-edit-submit { - margin-top: 10px; - clear: left; - display: block; - margin-bottom: 45px; -} - - -.contact-photo-menu-button { - position: absolute; - background-image: url("photo-menu.jpg"); - background-position: top left; - background-repeat: no-repeat; - margin: 0px; padding: 0px; - width: 16px; - height: 16px; - top: 64px; left:0px; - overflow: hidden; - text-indent: 40px; - display: none; - -} -.contact-photo-menu { - width: auto; - border: 2px solid #444444; - background: #FFFFFF; - position: absolute; - left: 0px; top: 90px; - display: none; - z-index: 10000; -} -.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none } -.contact-photo-menu li a { display: block; padding: 2px; } -.contact-photo-menu li a:hover { color: #FFFFFF; background: #3465A4; text-decoration: none; } - - -#block-message, #ignore-message, #archive-message, #lost-contact-message { - color: #FF0000; -} - -#profile-edit-insecure { - margin-top: 20px; - color: #FF0000; - font-size: 1.1em; - border: 1px solid #FF8888; - background-color: #FFEEEE; - padding-left: 5px; - /*: 3px 3px 3px 5px; */ - width: 587px; -} - -#profile-jot-text { - height: 20px; - color:#cccccc; - border: 1px solid #cccccc; - padding: 3px 0px 0px 5px; - -moz-border-radius: 3px; - border-radius: 3px; -} - - -/** acl **/ -#photo-edit-perms-select, -#photos-upload-permissions-wrapper, -#profile-jot-acl-wrapper{ - display:block!important; -} - -#photos-usage-message { - margin-bottom: 15px; -} - - -#acl-wrapper { - width: 580px; - float:left; -} -#acl-search { - float:right; - background: #ffffff url("../../../images/search_18.png") no-repeat right center; - padding-right:20px; -} -#acl-showall { - float: left; - display: block; - width: auto; - height: 18px; - background-color: #cccccc; - background-image: url("../../../images/show_all_off.png"); - background-position: 7px 7px; - background-repeat: no-repeat; - padding: 7px 5px 0px 30px; - -webkit-border-radius: 5px ; - -moz-border-radius: 5px; - border-radius: 5px; - color: #999999; -} -#acl-showall.selected { - color: #000000; - background-color: #ff9900; - background-image: url("../../../images/show_all_on.png"); -} - -#acl-list { - height: 210px; - border: 1px solid #cccccc; - clear: both; - margin-top: 30px; - overflow: auto; -} -#acl-list-content { - -} -.acl-list-item { - display: block; - width: 170px; - height: 30px; - border: 1px solid #cccccc; - margin: 5px; - float: left; -} -.acl-list-item img{ - width:22px; - height: 22px; - float: left; - margin: 4px; -} -.acl-list-item p { height: 12px; font-size: 10px; margin: 0px; padding: 2px 0px 1px; overflow: hidden;} -.acl-list-item a { - font-size: 10px; /* 8px; */ - display: block; - width: 50px; - height: 12px; - float: left; - color: #999999; - background-color: #cccccc; - background-position: 3px 3px; - background-repeat: no-repeat; - margin-right: 5px; - -webkit-border-radius: 2px ; - -moz-border-radius: 2px; - border-radius: 2px; - padding-left: 15px; -} -#acl-wrapper a:hover { - text-decoration: none; - color:#000000; -} -.acl-button-show { background-image: url("../../../images/show_off.png"); } -.acl-button-hide { background-image: url("../../../images/hide_off.png"); } - -.acl-button-show.selected { - color: #000000; - background-color: #9ade00; - background-image: url("../../../images/show_on.png"); -} -.acl-button-hide.selected { - color: #000000; - background-color: #ff4141; - background-image: url("../../../images/hide_on.png"); -} -.acl-list-item.groupshow { border-color: #9ade00; } -.acl-list-item.grouphide { border-color: #ff4141; } -/** /acl **/ - - -#group-new-submit-wrapper { - margin-top: 30px; -} - -#group-edit-name-label { - float: left; - width: 175px; - margin-top: 20px; - margin-bottom: 20px; -} - -#group-edit-name { - float: left; - width: 225px; - margin-top: 20px; - margin-bottom: 20px; -} - -#group-edit-name-wrapper { - - -} - - -#group_members_select_label { - display: block; - float: left; - width: 175px; -} - -.group_members_select { - float: left; - width: 230px; - overflow: auto; -} - -#group_members_select_end { - clear: both; -} -#group-edit-name-end { - clear: both; -} - -#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label { - margin-bottom: 10px; - margin-top: 20px; -} - -#prvmail-submit { - float: left; - margin-top: 10px; - margin-right: 30px; -} -#prvmail-upload-wrapper, -#prvmail-link-wrapper, -#prvmail-rotator-wrapper { - float: left; - margin-top: 10px; - margin-right: 10px; - width: 24px; -} - -#prvmail-end { - clear: both; -} - -.mail-list-sender, -.mail-list-detail { - float: left; -} -.mail-list-detail { - margin-left: 20px; -} - -.mail-list-subject { - font-size: 1.1em; - margin-top: 10px; -} -a.mail-list-link { - display: block; - font-size: 1.3em; - padding: 4px 0; -} - -/* -*a.mail-list-link:hover { -* background-color: #15607B; -* color: #F5F6FB; -*} -*/ - -.mail-list-outside-wrapper-end { - clear: both; -} - -.mail-list-outside-wrapper { - margin-top: 30px; -} - -.mail-list-delete-wrapper { - float: right; - margin-right: 30px; - margin-top: 15px; -} - -.mail-list-delete-icon { - border: none; -} - -.mail-conv-sender, -.mail-conv-detail { - float: left; -} -.mail-conv-detail { - margin-left: 20px; - margin-bottom: 10px; - width: 500px; -} - -.mail-conv-subject { - font-size: 1.4em; - margin: 10px 0; -} - -.mail-conv-outside-wrapper-end { - clear: both; -} - -.mail-conv-outside-wrapper { - margin-top: 30px; -} - -.mail-conv-delete-wrapper { - float: right; - margin-right: 5px; - margin-top: 15px; -} -.mail-conv-break { - clear: both; -} - -.mail-conv-delete-icon { - border: none; -} - -.message-links ul { - list-style-type: none; - padding: 0px; -} - -.message-links li { - margin-top: 10px; - float: left; -} -.message-links a { - padding: 3px 5px; -} - -.message-links-end { - clear: both; -} - -#poke-desc { - margin: 5px 0 10px; -} - -#poke-wrapper { - padding: 10px 0 20px; -} - -#poke-recipient, #poke-action, #poke-privacy-settings { - margin: 10px 0 30px; -} - -#poke-recip-label, #poke-action-label, #prvmail-message-label { - margin: 10px 0 10px; -} - -#sidebar-group-list ul { - list-style-type: none; -} - -#sidebar-group-list .icon, #sidebar-group-list .iconspacer { - display: inline-block; - height: 12px; - width: 12px; -} - -#sidebar-group-list li { - margin-top: 10px; -} - -#forumlist-sidebar ul { - list-style: none; -} - -.forumlist-img { - height: 20px; - width: 20px; - vertical-align: middle; -} - -.nets-ul, .fileas-ul, .categories-ul, .datebrowse-ul { - list-style-type: none; -} - -.nets-ul li, .fileas-ul li, .categories-ul li, .datebrowse-ul li { - margin-top: 10px; -} - -.nets-link { - margin-left: 24px; -} -.nets-all { - margin-left: 42px; -} - -.fileas-link, .categories-link { - margin-left: 24px; -} - -.fileas-all, .categories-all { - margin-left: 0px; -} - -#search-save { - margin-left: 5px; -} -.groupsideedit { - margin-right: 10px; -} -#saved-search-ul { - list-style-type: none; -} -.savedsearchdrop, .savedsearchterm { - float: left; - margin-top: 10px; -} -.savedsearchterm { - margin-left: 10px; -} - - -#side-follow-wrapper { - margin-top: 20px; -} -#side-follow-url, #side-peoplefind-url { - margin-top: 5px; -} -#side-follow-submit, #side-peoplefind-submit { - margin-top: 15px; -} - -#side-match-link { - margin-top: 10px; -} - -aside input[type='text'] { - width: 174px; -} - -.widget { - border: 1px solid #DDDDDD; - padding: 1em 2em; - margin-top: 5px; - -moz-border-radius:5px; - -webkit-border-radius:5px; - border-radius:5px; - -} - - -/*.photos { - height: auto; - overflow: auto; -}*/ - -.photos-end { - clear: both; - margin-bottom: 25px; -} - -.photo-album-image-wrapper { - float: left; - margin-top: 15px; - margin-right: 15px; - margin-left: 15px; -/* width: 200px; height: 200px; - overflow: hidden; - position: relative; */ -} -.photo-album-image-wrapper .caption { - display: none; - width: 100%; -/* position: absolute; */ - bottom: 0px; - padding: 0.5em 0.5em 0px 0.5em; - background-color: rgba(245, 245, 255, 0.8); - border-bottom: 2px solid #CCC; - margin: 0px; -} -.photo-album-image-wrapper a:hover .caption { - display:block; -} - -#photo-album-end { - clear: both; - margin-bottom: 25px; -} - -.photo-top-image-wrapper { -/* position: relative; - float: left;*/ - display: inline-block; - vertical-align: top; - margin-top: 15px; - margin-right: 15px; - margin-left: 15px; - margin-bottom: 15px; -/* width: 200px; height: 200px; - overflow: hidden; */ -} -.photo-album-image-wrapper img, .photo-top-image-wrapper img { - max-width: 225px; - padding: 5px; - - box-shadow: 0 0 10px #000; - -moz-box-shadow: 0 0 10px #000; - -webkit-box-shadow: 0 0 10px #000; -} -.photo-top-album-name { - width: 100%; - min-height: 2em; -/* position: absolute; */ - bottom: 0px; - padding: 0px 3px; - padding-top: 0.5em; - background-color: rgb(255, 255, 255); -} -#photo-top-end { - clear: both; -} - -#photo-top-links { - margin-bottom: 30px; - margin-left: 30px; -} - -#photos-upload-form { - padding-left: 90px; -} - -#photos-upload-newalbum-div { - float: left; - width: 175px; - margin-top: 30px; -} - -#photos-upload-noshare { - margin-bottom: 10px; -} -#photos-upload-existing-album-text { - float: left; - width: 175px; -} -#photos-upload-newalbum { - margin-top: 30px; - float: left; -} -#photos-upload-album-select { - float: left; -} - -#photos-upload-spacer { - margin-top: 25px; -} -#photos-upload-new-end, #photos-upload-exist-end { - clear: both; -} -#photos-upload-exist-end { - margin-bottom: 15px; -} -#photos-upload-submit { - margin-top: 15px; - margin-left: 90px; -} - -#photos_upload_applet_wrapper { - margin-bottom: 15px; -} - -#photos-upload-no-java-message { - margin-bottom: 15px; -} - -.video-top-wrapper { - display: inline-block; - vertical-align: top; - margin-top: 15px; - margin-right: 15px; - margin-left: 15px; - margin-bottom: 15px; -} - -#profile-jot-desc { - /*float: left;*/ - /*width: 480px;*/ - width: 100%; - color: #FF0000; - margin-top: 10px; - margin-bottom: 10px; -} - -#character-counter { - float: right; - font-size: 120%; -} - -#character-counter.grey { - color: #888888; -} - -#character-counter.orange { - color: orange; -} -#character-counter.red { - color: red; -} - -#profile-jot-banner-end { - /* clear: both; */ -} - -#photos-upload-select-files-text { - margin-top: 15px; - margin-bottom: 15px; -} - -#photos-upload-perms-menu, #photos-upload-perms-menu:visited, #photos-upload-perms-menu:link { - color: #8888FF; - text-decoration: none; - cursor: pointer; -} - -#photos-upload-perms-menu:hover { - color: #0000FF; - text-decoration: underline; - cursor: pointer; -} -#settings-default-perms-menu { - margin-top: 15px; - margin-bottom: 15px; -} - -#photo-edit-caption-label, #photo-edit-tags-label, #photo-edit-albumname-label, .photo-edit-rotate-label { - float: left; - width: 150px; -} - -#photo-edit-caption-label, #photo-edit-tags-label, #photo-edit-albumname-label { - font-weight: 700; -} - -#photos-upload-choosefile-outer-wrapper { - margin-top: 35px; - padding-left: 50px; - margin-bottom: 4em; -} -#photos-upload-noshare-div { - margin-top: 0px; - margin-bottom: 15px; -} - -#photos-upload-noshare-label { - margin-left: 30px; -} - -#photos-upload-noshare { - float: left; - margin-left: 5px; -} - -.photo-perms-icon { - float: left; -} - -#photo-edit-perms-menu, #photos-upload-perms-menu, #settings-default-perms-menu { - text-decoration: none; -} - -.photo-jot-perms-text { - padding-top: 5px; - padding-left: 25px; -} - -#photo-edit-perms, #photos-upload-perms, #settings-default-perms { - margin-top: 30px; -} -#photos-upload-perms { - margin-top: 15px; - margin-left: 5px; -} - -#photo-edit-perms-end { - margin-bottom: 15px; -} - -#photo-edit-caption, #photo-edit-newtag, #photo-edit-albumname { - float: left; - margin-bottom: 25px; -} -.photo-edit-rotate { - margin-left: 20px; -} - -#photo-edit-link-wrap { - margin-bottom: 15px; -} -#photo-like-div { - margin-left: 15px; - margin-bottom: 45px; -} - -#photo-edit-caption-end, #photo-edit-tags-end, #photo-edit-albumname-end, #photo-edit-rotate-end { - clear: both; -} - -#photo-edit-rotate-end { - margin-bottom: 15px; -} - -#photo-edit-delete-button { -/* margin-left: 270px;*/ - float: right; -} -#photos-upload-choose { -/* position: absolute; - top: 0px; - left: 55px;*/ -} -.settings-submit, .profile-edit-submit-button { - margin-bottom: 10px; -} - -#photo-edit-end { - margin-bottom: 35px; -} -#photo-caption { - font-size: 110%; - font-weight: bold; - margin-top: 15px; - margin-bottom: 15px; -} - -#in-this-photo-text { - color: #0000FF; - margin-left: 30px; -} - -#in-this-photo { - margin-left: 60px; - margin-top: 10px; - margin-bottom: 20px; -} - -#photo-album-edit-submit, #photo-album-edit-drop { - margin-top: 15px; - margin-bottom: 15px; -} - -#photo-album-edit-drop { - margin-left: 200px; -} - -.group-delete-wrapper { - float: right; - margin-right: 50px; -} - -#install-dbhost-label, -#install-dbuser-label, -#install-dbpass-label, -#install-dbdata-label, -#install-tz-desc { - float: left; - width: 250px; - margin-top: 10px; - margin-bottom: 10px; - -} - -#install-dbhost, -#install-dbuser, -#install-dbpass, -#install-dbdata { - float: left; - width: 200px; - margin-left: 20px; -} - -#install-dbhost-end, -#install-dbuser-end, -#install-dbpass-end, -#install-dbdata-end, -#install-tz-end { - clear: both; -} - -#install-form select#timezone_select { - float: left; - margin-top: 18px; - margin-left: 20px; -} - -#dfrn-request-networks { - margin-bottom: 30px; -} - -#pause { - position: fixed; - bottom: 5px; - right: 5px; -} - -.sparkle { - cursor: url('lock.cur'), pointer; -/* cursor: pointer !important; */ -} - -.contact-block-div { - float: left; - width: 52px; - height: 52px; -} -.contact-block-textdiv { - float: left; - width: 150px; - height: 34px; -} - -#contact-block-end { - clear: both; -} -.contact-block-link { - float: left; -} -.contact-block-img { - width:48px; - height:48px; -} - -#tag-remove { - margin-bottom: 15px; -} - -#tagrm li { - margin-bottom: 10px; -} - -#tagrm-submit, #tagrm-cancel { - margin-top: 25px; -} - -#tagrm-cancel { - margin-left: 15px; -} - -.wall-item-conv { - margin-top: 5px; - margin-bottom: 25px; -} - -#search-submit { - margin-left: 15px; -} - -#search-box { - margin-bottom: 25px; -} - -.location-label, .gender-label, .marital-label, .homepage-label, .ympp-label, .network-label, .xmpp-label { - float: left; - text-align: right; - display: block; - width: 65px; -} - -.adr, .x-gender, .marital-text, .homepage-url, .x-network, .xmpp-data { - float: left; - display: block; - margin-left: 8px; -} - -.profile-clear { - clear: both; -} - - -.clear { - clear: both; -} - -.cc-license { - margin-top: 50px; - font-size: 70%; -} - - -#addon-settings-link, #account-settings-link { - margin-bottom: 10px; -} - -#uexport-link { - margin-bottom: 20px; -} - -/* end from default */ - - -.fn { - padding: 0px 0px 5px 12px; - font-size: 120%; - font-weight: bold; -} - -.vcard .title, -.vcard .p-addr, -.vcard .account-type { - margin-bottom: 5px; - margin-left: 12px; -} -.vcard .account-type { - font-size: 120%; - margin-bottom: 13px; -} - -.vcard dl { - clear: both; -} - -#birthday-title { - float: left; - font-weight: bold; -} - -#birthday-adjust { - float: left; - font-size: 75%; - margin-left: 10px; -} - -#birthday-title-end { - clear: both; -} - -.birthday-list { - margin-left: 15px; -} - -#birthday-wrapper { - margin-bottom: 20px; -} - -#network-new-link { - margin-top: 15px; - margin-bottom: 15px; -} - - -.tool-wrapper { - float: left; - margin-left: 15px; -} - -.tool-link { - cursor: pointer; -} - -.eventcal { - float: left; - font-size: 20px; -} - -#event-summary-text { - margin-top: 15px; -} - -#event-share-checkbox { - float: left; - margin-top: 10px; -} - -#event-share-text { -/* float: left;*/ - margin-top: 10px; - margin-left: 5px; -} - -#event-share-break { - clear: both; - margin-bottom: 10px; -} - -#event-summary { - width: 400px; -} - -.vevent { - border: 1px solid #CCCCCC; -} - -.vevent .event-summary { - margin-left: 10px; - margin-right: 10px; - font-weight: bold; -} - -.vevent .event-description, .vevent .event-location { - margin-left: 10px; - margin-right: 10px; -} -.vevent .event-start { - margin-left: 10px; - margin-right: 10px; -} - -#new-event-link { - margin-bottom: 10px; -} - -.edit-event-link, .plink-event-link { - float: left; - margin-top: 4px; - margin-right: 4px; - margin-bottom: 15px; -} - -.event-description:before { - content: url('../../../images/calendar.png'); - margin-right: 15px; -} - -.event-start, .event-end { - margin-left: 10px; - width: 330px; - clear: both; -} - -.event-start .dtstart, .event-end .dtend { - float: right; -} - -.event-list-date { - margin-bottom: 10px; -} - -.prevcal, .nextcal { - float: left; - margin-left: 32px; - margin-right: 32px; - margin-top: 64px; -} -.event-calendar-end { - clear: both; -} - - -.calendar { - font-family: Courier, monospace; -} -.today { - font-weight: bold; - color: #FF0000; -} - -.settings-block { - border: 1px solid #AAA; - margin: 10px; - padding: 10px; -} - -.app-title { - margin: 10px; -} - -.itentity-match-wrapper { - float: left; - padding: 10px; - width: 120px; - height: 140px; - margin-bottom: 20px; -} - -.identity-match-photo { - float: left; - text-align: center; - width: 120px; -} - -.identity-match-name { - text-align: center; -} - -.identity-match-details { - float: left; - text-align: center; - width: 120px; - overflow: hidden; - font-size: 10px; - font-weight: 500; - color: #999999; -} - -.identity-match-break, .identity-match-end { - clear: both; -} - -.identity-match-photo button { - border: none; - padding: 0; - margin: 0; - background: none; - height: 80px; - width: 80px; -} - -.selected-identity img { - border: 2px solid #ff0000; -} - -#photo-prev-link, #photo-next-link { - padding: 10px; -} -#photo-nav { - position: relative; - height: 55px; -} - -#photo-prev-link { - position: absolute; - left: 5px; -} -#photo-next-link { - position: absolute; - right: 5px; -} - -/*#photo-photo { - float: left; -}*/ -#photo-photo { - display: block; - margin-left: auto; - margin-right: auto; - margin-bottom: 2em; - text-align: center; -} -#photo-photo img { -/* max-width: 555px; - margin-left: 5px;*/ - max-width: 100%; -} -#photo-photo-end { - clear: both; -} - -.profile-match-photo { - float: left; - text-align: center; - width: 120px; -} - -.profile-match-name { - float: left; - text-align: center; - width: 120px; - overflow: hidden; -} - -.profile-match-break, -.profile-match-end { - clear: both; -} - -.profile-match-connect { - text-align: center; - font-weight: bold; -} - -.profile-match-wrapper { - display: inline-block; - padding: 10px; - /*width: 120px; - height: 120px;*/ - scroll: auto; - margin-bottom: 2em; - vertical-align: top; -} -.profile-match-wrapper .icon.drophide { - margin-left: auto; - margin-right: auto; - margin-top: 1em; -} -#profile-match-wrapper-end { - clear: both; -} -.side-link { - margin-bottom: 15px; -} - -#group-members { - margin-top: 20px; - padding: 10px; - height: 250px; - overflow: auto; - border: 1px solid #ddd; -} - -#group-members-end { - clear: both; -} - -#group-separator { - margin-top: 10px; - margin-bottom: 10px; -} - -#group-all-contacts { - padding: 10px; - height: 450px; - overflow: auto; - border: 1px solid #ddd; -} - -#group-all-contacts-end { - clear: both; - margin-bottom: 10px; -} - -#group-edit-desc { - margin-top: 15px; -} - - -#prof-members { - margin-top: 20px; - padding: 10px; - height: 250px; - overflow: auto; - border: 1px solid #ddd; -} - -#prof-members-end { - clear: both; -} - -#prof-separator { - margin-top: 10px; - margin-bottom: 10px; -} - -#prof-all-contacts { - padding: 10px; - height: 450px; - overflow: auto; - border: 1px solid #ddd; -} - -#prof-all-contacts-end { - clear: both; - margin-bottom: 10px; -} - -#prof-edit-desc { - margin-top: 15px; -} - -#crepair-name-label, -#crepair-nick-label, -#crepair-attag-label, -#crepair-url-label, -#crepair-request-label, -#crepair-confirm-label, -#crepair-notify-label, -#crepair-photo-label, -#crepair-poll-label { - float: left; - width: 200px; - margin-bottom: 15px; -} - -#crepair-name, -#crepair-nick, -#crepair-attag, -#crepair-url, -#crepair-request, -#crepair-confirm, -#crepair-notify, -#crepair-photo, -#crepair-poll { - float: left; - width: 300px; -} - - -#netsearch-box { - margin-top: 20px; -} - -#netsearch-box #search-submit { - margin: 5px 0px 0px 0px; -} - -.required { - color: #FF0000; -} - -#event-start-text, #event-finish-text { - margin-top: 10px; - margin-bottom: 5px; -} - -#event-nofinish-checkbox, #event-nofinish-text, #event-adjust-checkbox, #event-adjust-text { - float: left; -} -#event-datetime-break { - margin-bottom: 10px; -} - -#event-nofinish-break, #event-adjust-break { - clear: both; -} - -#event-desc-text, #event-location-text { - margin-top: 10px; - margin-bottom: 5px; -} -#event-submit { - margin-top: 10px; -} - -.filesavetags, .categorytags { - display: block; - clear: left; -} - -.body-tag, .filesavetags, .categorytags { - opacity: 0.5; - filter:alpha(opacity=50); -} - -.body-tag:hover, .filesavetags:hover, .categorytags:hover { - opacity: 1.0 !important; - filter:alpha(opacity=100) !important; -} - -.item-select { - opacity: 0.1; - filter:alpha(opacity=10); - float: right; - margin-right: 10px; - -} -.item-select:hover, .checkeditem { - opacity: 1; - filter:alpha(opacity=100); -} - - -#item-delete-selected-top { - margin-top: 30px; - padding-bottom: 1.5em; -} -#item-delete-selected-top-icon, #item-delete-selected-top-desc { - float: left; - margin-right: 5px; -} -#item-delete-selected-top-desc:hover { - text-decoration: underline; -} - -#item-delete-selected { - margin-top: 0px; -} - -#item-delete-selected-end { - clear: both; -} -#item-delete-selected-icon, #item-delete-selected-desc { - float: left; - margin-right: 5px; -} -#item-delete-selected-desc:hover { - text-decoration: underline; -} - - -.notif-image { - height: 80px; - width: 80px; - margin-right: 15px; -} -.notification-listing-end { - clear: both; - margin-bottom: 15px; -} - - - -/** - * Plugins settings - */ - -.settings-block > h3, -.settings-heading { - border-bottom: 1px solid #babdb6; -} - - -/** - * Form fields - */ -.field { - margin-bottom: 10px; - padding-bottom: 10px; - overflow: auto; - width: 100% -} -#wrapper_expire.field { - margin-bottom: 3px; - padding-bottom: 3px; -} - -.field label { - float: left; - width: 200px; -} -.field.yesno label { - font-weight: 700; -} - -.field input, -.field textarea { - width: 400px; -} -.field input[type=checkbox], -.field input[type=radio] { - width: auto; -} -.field textarea { height: 100px; } -.field_help { - display: block; - margin-left: 50px; - color: #666666; - clear: left; -} - -.field .onoff { - float: left; - width: 80px; -} -.field .onoff a { - display: block; - border:1px solid #666666; - background-image:url("../../../images/onoff.jpg"); - background-repeat: no-repeat; - padding: 4px 2px 2px 2px; - height: 16px; - text-decoration: none; -} -.field .onoff .off { - border-color:#666666; - padding-left: 40px; - background-position: left center; - background-color: #cccccc; - color: #666666; - text-align: right; -} -.field .onoff .on { - border-color:#204A87; - padding-right: 40px; - background-position: right center; - background-color: #D7E3F1; - color: #204A87; - text-align: left; -} -.hidden { display: none!important; } - -/*.field.radio .field_help { clear: left; margin-left: 20px; }*/ -.field.radio .field_help { margin-left: 0px; } - -/** - * ADMIN - */ -#pending-update { - float:right; - color: #ffffff; - font-weight: bold; - background-color: #FF0000; - padding: 0em 0.3em; - -} -#adminpage dl { - clear: left; - margin-bottom: 2px; - padding-bottom: 2px; - border-bottom: 1px solid black; -} -#adminpage dt { - width: 200px; - float: left; - font-weight: bold; -} -#adminpage dd { - margin-left: 200px; -} - -#adminpage h3 { - border-bottom: 1px solid #cccccc; -} -#adminpage .field label { - font-weight: bold; -} -#adminpage .submit { - clear:left; - text-align: right; -} - -#adminpage #addonslist { - margin: 0px; padding: 0px; -} -#adminpage .addon { - list-style: none; - display: block; - border: 1px solid #888888; - padding: 1em; - margin-bottom: 5px; - clear: left; -} -#adminpage .addon .desc { margin-left: 2.5em;} -#adminpage .toggleaddon { - float:left; - margin-right: 1em; -} - -#adminpage table {width:100%; border-bottom: 1px solid #000000; margin: 5px 0px;} -#adminpage table th { text-align: left;} -#adminpage td .icon, #adminpage td .tool { float: left;} -#adminpage table#users img { width: 16px; height: 16px; } -#adminpage table tr:hover { background-color: #bbc7d7; } -#adminpage .selectall { text-align: right; } - -#adminpage .screenshot img { - max-width: 550px; -} - -/* - * UPDATE - */ -.popup { - width: 100%; height: 100%; - top:0px; left:0px; - position: absolute; - display: none; -} - -.popup .background { - background-color: rgba(0,0,0,128); - opacity: 0.5; - width: 100%; height: 100%; - position: absolute; - top:0px; left:0px; -} -.popup .panel { - top:25%;left:25%;width:50%;height:50%; - padding: 1em; - position: absolute; - border: 4px solid #000000; - background-color: #FFFFFF; -} -.popup .panel .panel_text { display: block; overflow: auto; height: 80%; } -.popup .panel .panel_in { width: 100%; height: 100%; position: relative; } -.popup .panel .panel_actions { width: 100%; bottom: 4px; left: 0px; position: absolute; } -.panel_text .progress { width: 50%; overflow: hidden; height: auto; border: 1px solid #cccccc; margin-bottom: 5px} -.panel_text .progress span {float: right; display: block; width: 25%; background-color: #eeeeee; text-align: right;} - -/** - * OAuth - */ -.oauthapp { - height: auto; overflow: auto; - border-bottom: 2px solid #cccccc; - padding-bottom: 1em; - margin-bottom: 1em; -} -.oauthapp img { - float: left; - width: 48px; height: 48px; - margin: 10px; -} -.oauthapp img.noicon { - background-image: url("../../../images/icons/48/plugin.png"); - background-position: center center; - background-repeat: no-repeat; -} -.oauthapp a { - float: left; -} - -/** - * ICONS - */ -.iconspacer { - display: block; width: 16px; height: 16px; -} - -.icon { - display: block; width: 16px; height: 16px; - background-image: url('../../../images/icons.png'); -} -.article { background-position: 0px 0px;} -/*.audio { background-position: -16px 0px;}*/ -.icon.audio { - display: block; width: 24px; height: 24px; - background-size: 100% 100%; - background-image: url('images/speaker.png'); - background-repeat: no-repeat; -} -.block { background-position: -32px 0px;} -/*.drop { background-position: -48px 0px;}*/ -.icon.drop { - display: block; width: 16px; height: 16px; - background-size: 100% 100%; - background-image: url('images/drop-16.png'); - background-repeat: no-repeat; - opacity: 1.0; -} -/*.drophide { background-position: -64px 0px;}*/ -.icon.drophide { - display: block; width: 16px; height: 16px; - background-size: 100% 100%; - background-image: url('images/drop-16.png'); - background-repeat: no-repeat; - opacity: 0.4; -} -.icon.drophide:hover { - display: block; width: 16px; height: 16px; - background-size: 100% 100%; - background-image: url('images/drop-16.png'); - background-repeat: no-repeat; - opacity: 1.0; -} -.edit { background-position: -80px 0px;} -/*.camera { background-position: -96px 0px;}*/ -.icon.camera{ - display: block; width: 24px; height: 18px; - margin-top: 4px; - background-size: 100% 100%; - background-image: url('images/camera.png'); - background-repeat: no-repeat; -} -/*.dislike { background-position: -112px 0px;}*/ -.tool.dislike { - display: block; width: 15px; height: 16px;/* 23 24*/ - background-size: 100% 100%; - background-image: url('images/disapprove-16.png'); - background-repeat: no-repeat; - opacity: 0.4; -} -.tool.dislike:hover { - opacity: 1.0; -} -/*.like { background-position: -128px 0px;}*/ -.tool.like { - display: block; width: 15px; height: 16px;/* 23 24*/ - margin-right: 6px; - background-size: 100% 100%; - background-image: url('images/approve-16.png'); - background-repeat: no-repeat; - opacity: 0.4; -} -.tool.like:hover { - opacity: 1.0; -} -/*.link { background-position: -144px 0px;}*/ -.icon.link { - display: block; width: 24px; height: 24px; - background-size: 100% 100%; - background-image: url('images/link.png'); - background-repeat: no-repeat; -} - -/*.globe { background-position: 0px -16px;}*/ -.icon.globe { - display: block; width: 24px; height: 24px; - background-size: 100% 100%; - background-image: url('images/globe.png'); - background-repeat: no-repeat; -} -/*.noglobe { background-position: -16px -16px;}*/ -.icon.noglobe { - display: block; width: 24px; height: 24px; - background-size: 100% 100%; - background-image: url('images/noglobe.png'); - background-repeat: no-repeat; -} -.no { background-position: -32px -16px;} -.pause { background-position: -48px -16px;} -.play { background-position: -64px -16px;} -/*.pencil { background-position: -80px -16px;}*/ -.tool.pencil { - display: block; width: 16px; height: 16px; - background-size: 100% 100%; - background-image: url('images/pencil-16.png'); - background-repeat: no-repeat; - opacity: 0.4; -} -.tool.pencil:hover { - opacity: 1.0; -} -/*.small-pencil { background-position: -96px -16px;}*/ -.icon.small-pencil { - display: block; width: 16px; height: 16px; - background-size: 100% 100%; - background-image: url('images/pencil-16.png'); - background-repeat: no-repeat; - opacity: 0.4; -} -.icon.small-pencil:hover { - opacity: 1.0; -} -/*.recycle { background-position: -112px -16px;}*/ -.tool.recycle { - display: block; width: 16px; height: 16px;/*24 23*/ - background-size: 100% 100%; - background-image: url('images/recycle-16.png'); - background-repeat: no-repeat; - opacity: 0.4; -} -.tool.recycle:hover { - opacity: 1.0; -} -/*.remote-link { background-position: -128px -16px;}*/ -.icon.remote-link { - display: block; width: 16px; height: 16px; - background-size: 100% 100%; - background-image: url('images/remote-link-16.png'); - background-repeat: no-repeat; - opacity: 0.4; -} -.icon.remote-link:hover { - opacity: 1.0; -} -.share { background-position: -144px -16px;} - -.tools { background-position: 0px -32px;} -/*.lock { background-position: -16px -32px;}*/ -.icon.lock { - display: block; width: 14px; height: 21px; - margin-top: 1px; - background-size: 100% 100%; - background-image: url('images/lock-24.png'); - background-repeat: no-repeat; -} -/*.unlock { background-position: -32px -32px;}*/ -.icon.unlock { - display: block; width: 14px; height: 24px; - margin-top: -2px; - background-size: 100% 100%; - background-image: url('images/unlock-24.png'); - background-repeat: no-repeat; -} -/*.video { background-position: -48px -32px;}*/ -.icon.video { - display: block; width: 24px; height: 24px; - background-size: 100% 100%; - background-image: url('images/video.png'); - background-repeat: no-repeat; -} -/*.oembed.video { - display: inline; width: auto; height: auto; - background-image: none; -}*/ - -.youtube { background-position: -64px -32px;} -/*.attach { background-position: -80px -32px; }*/ -.icon.attach { - display: block; width: 24px; height: 24px; - background-size: 100% 100%; - background-image: url('images/paperclip-24.png'); - background-repeat: no-repeat; -} - -.language { background-position: -96px -32px; } -.prev { background-position: -112px -32px; } -.next { background-position: -128px -32px; } -.on { background-position: -144px -32px; } - -.off { background-position: 0px -48px; } -/*.starred { background-position: -16px -48px; }*/ -.tool.starred { - display: block; width: 16px; height: 16px; - background-size: 100% 100%; - background-image: url('images/star-yellow-16.png'); - background-repeat: no-repeat; -} -/*.unstarred { background-position: -32px -48px; }*/ -.tool.unstarred { - display: block; width: 16px; height: 16px; - background-size: 100% 100%; - background-image: url('images/star-16.png'); - background-repeat: no-repeat; - opacity: 0.4; -} -.tool.unstarred:hover { - opacity: 1.0; -} -/*.tagged { background-position: -48px -48px; }*/ -.tool.tagged { - display: block; width: 16px; height: 16px; - background-size: 100% 100%; - background-image: url('images/tag-16.png'); - background-repeat: no-repeat; - opacity: 0.4; -} -.tool.tagged:hover { - opacity: 1.0; -} -.yellow { background-position: -64px -48px; } - - -.filer-icon { -/* display: block; width: 16px; height: 16px; - background-image: url('file.gif');*/ - display: block; width: 16px; height: 16px; - background-size: 100% 100%; - background-image: url('images/folder-16.png'); - background-repeat: no-repeat; - opacity: 0.4; -} -.filer-icon:hover { - opacity: 1.0; -} - -.event-icon { - display: block; width: 16px; height: 16px; - background-size: 100% 100%; - background-repeat: no-repeat; - opacity: 0.4; -} -.event-attend-icon { background-image: url('images/event-attend-16.png'); } -.event-maybeattend-icon { background-image: url('images/event-maybeattend-16.png'); } -.event-dontattend-icon { background-image: url('images/event-dontattend-16.png'); } - -.event-icon:hover { - opacity: 1.0; -} - - -.icon.dim { opacity: 0.3;filter:alpha(opacity=30); } -/*[class^="comment-edit-bb"] {*/ -.comment-edit-bb { - list-style: none; - display: none; - margin: 0px 0 -5px 60px; - width: 75%; -} -.comment .comment-edit-bb { - width: 300px; - margin: 0px; -} -/*[class^="comment-edit-bb"] > li {*/ -.comment-edit-bb > li { - display: inline-block; - margin: 10px 10px 0 0; - visibility: none; -} -/*[class^="comment-edit-bb-end"] { - clear: both; -}*/ -.editicon { - display: inline-block; -/* background-image: url(bbedit.png); - background-color: #fff;*/ - background-size: 100% 100%; - background-repeat: no-repeat; - background-color: #f3f3f3; - text-decoration: none; - opacity: 0.4; -} -.editicon:hover { -/* background-color: #ccc;*/ - opacity: 1.0; -} -.boldbb { -/* background-position: 0px 0px;*/ - width: 15px; - height: 16px; - background-image: url('images/boldB-serif-16.png'); -} -/*.boldbb:hover { - background-position: 0px -16px; -}*/ -.italicbb { -/* background-position: -16px 0px;*/ - width: 9px; - height: 16px; - background-image: url('images/italicI-serif-16.png'); -} -/*.italicbb:hover { - background-position: -16px -16px; -}*/ -.underlinebb { -/* background-position: -32px 0px;*/ - width: 14px; - height: 16px; - background-image: url('images/underlineU-serif-16.png'); -} -/*.underlinebb:hover { - background-position: -32px -16px; -}*/ -.quotebb { -/* background-position: -48px 0px;*/ - width: 20px; - height: 20px; - background-image: url('images/quote.png'); -} -/*.quotebb:hover { - background-position: -48px -16px; -}*/ -.codebb { -/* background-position: -64px 0px;*/ - width: 20px; - height: 20px; - background-image: url('images/code.png'); -} -/*.codebb:hover { - background-position: -64px -16px; -}*/ -.imagebb { -/* background-position: -80px 0px;*/ - width: 20px;/*16*/ - height: 15px;/*12*/ - margin-bottom: 2px; - background-image: url('images/camera.png'); -} -/*.imagebb:hover { - background-position: -80px -16px; -}*/ -.urlbb { -/* background-position: -96px 0px;*/ - width: 20px; - height: 20px; - background-image: url('images/link.png'); -} -/*.urlbb:hover { - background-position: -96px -16px; -}*/ -.videobb { -/* background-position: -112px 0px;*/ - width: 20px; - height: 20px; - background-image: url('images/video.png'); -} -/*.videobb:hover { - background-position: -112px -16px; -}*/ - -.attachtype { - display: block; - float: left; - background-size: 100% 100%; - width: 48px; - height: 48px; - background-image: url('images/oxygen/unknown.png'); -} - -.body-attach { - margin-top: 10px; -} - -/*.type-video { background-position: 0px 0px; } -.type-image { background-position: -20px 0px; } -.type-audio { background-position: -40px 0px; } -.type-text { background-position: -60px 0px; } -.type-unkn { background-position: -80px 0px; }*/ -.type-video { - background-image: url('images/oxygen/video-x-generic.png'); - background-size: 100% 100%; - width: 48px; - height: 48px; -} -.type-image { - background-image: url('images/oxygen/image-x-generic.png'); - background-size: 100% 100%; - width: 48px; - height: 48px; -} -.type-audio { background-image: url('images/oxygen/audio-x-generic.png'); - background-size: 100% 100%; - width: 48px; - height: 48px; -} - -.type-text { - background-image: url('images/oxygen/text-x-generic-2.png'); - background-size: 100% 100%; - width: 48px; - height: 48px; -} -.subtype-msword, .subtype-vnd-openxmlformats-officedocument-wordprocessingml-document { - background-image: url('images/oxygen/application-msword.png'); - background-size: 100% 100%; - width: 48px; - height: 48px; -} -.subtype-pdf { - background-image: url('images/oxygen/application-pdf.png'); - background-size: 100% 100%; - width: 48px; - height: 48px; -} -/*.type-unkn { - background-image: url('images/oxygen/unknown.png'); - background-size: 100% 100%; - width: 48px; - height: 48px; -}*/ - - - -/* autocomplete popup */ -.acpopup, .acpopup-mce { - background-color:#ffffff; - overflow:auto; - z-index:100000; - border:1px solid #cccccc; -} -.acpopup-mce { - max-height:150px; -} -.acpopupitem { - background-color:#ffffff; padding: 4px; - clear:left; -} -.acpopupitem img { - float: left; - margin-right: 4px; -} - -.acpopupitem.selected { - color: #FFFFFF; background: #3465A4; -} - -ul.acpopup { - list-style: none; - float: left; - min-width: 160px; - padding: 5px 0; - margin: 2px 0 0; -} -nav .acpopup { - width: 290px; - margin-left: -35px; - max-height: 450px; - max-width: 300px; - overflow-y: auto; - overflow-x: hidden; - margin-top: 0px; -} -img.acpopup-img { - float: left; - width: 36px; - height: 36px; - margin-right: 5px; - vertical-align: middle; -} -.acpopup-contactname { - padding-top: 2px; - font-weight: bold; - line-height: 1em; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - display: block; -} -.acpopup-sub-text { - color: #777; - font-size: 0.833em; - line-height: 1em; - overflow: hidden; - text-overflow: ellipsis; - display: block; -} -.textcomplete-item a { - color: inherit; - overflow: hidden; - text-overflow: ellipsis; - clear: both; - white-space: nowrap; - padding: 3px 20px; - display: block; -} -.textcomplete-item a:hover { - text-decoration: none; -} -.textcomplete-item.active { - color: #FFFFFF; background: #3465A4; -} -.active a .acpopup-sub-text { - color: #fff; -} - -/* popup notifications */ -div.jGrowl div.notice { - background: #511919 url("../../../images/icons/48/notice.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; -} -div.jGrowl div.info { - background: #364e59 url("../../../images/icons/48/info.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; -} -#jGrowl.top-right { - top: 75px; - right: 15px; -} -div.jGrowl-notification { - border-radius: 7px; -} -.qcomment { - border: 1px solid #EEE; - padding: 3px; - margin-top: 15px; - margin-left: 25px; - width: 125px; - overflow-y: auto; -} - - -.qcomment option { - width: 125px; - overflow-x: hidden; -} - -.qcomment { - opacity: 0.3; - filter:alpha(opacity=30); -} -.qcomment:hover { - opacity: 1.0; - filter:alpha(opacity=100); -} - -/* notifications popup menu */ -.manage-notify { - padding: 1px 3px; - top: 0px; - min-width: 15px; - text-align: center; - float: right; - margin-top: -14px; - margin-right: -20px; - - font-size: 0.8em; - border-radius: 4px; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; - background-color: gold !important; -} - -.nav-notify { - display: none; - position: absolute; - font-size: 10px; - padding: 1px 3px; - top: 0px; - right: -10px; - min-width: 15px; - text-align: right; -} -.nav-notify.show { - display: block; -} -ul#nav-network-notifications-popup { - text-align: center; - line-height: 18px; - - border: 1px solid #AAAAAA; - border-radius: 5px; - -moz-border-radius: 5px; - -webkit-border-radius: 5px; - - -moz-box-shadow: 3px 3px 5px #555; - -webkit-box-shadow: 3px 3px 5px #555; - box-shadow: 3px 3px 5px #555; - - background: #FFFFFF; - - display: none; - list-style: none; - - width: 10em; - position: absolute; - margin: 0px; - top: 15px; - left: 55px; - padding: 1em 0px; - - z-index: 11000; -} -ul.notifications-menu-popup { - position: absolute; - display: none; - width: 10em; - margin: 0px; - padding: 0px; - list-style: none; - z-index: 100000; - right: 0px; -} -#nav-notifications-menu { - width: 320px; - max-height: 400px; - overflow-y: scroll;overflow-style:scrollbar; - background-color:#FFFFFF; - -moz-border-radius: 5px; - -webkit-border-radius: 5px; - border-radius:5px; - border: 1px solid #AAA; - -moz-box-shadow: 3px 3px 5px #555; - -webkit-box-shadow: 3px 3px 5px #555; - box-shadow: 3px 3px 5px #555; -} -#nav-notifications-menu .contactname { font-weight: bold; font-size: 0.9em; } -#nav-notifications-menu img { float: left; margin-right: 5px; } -#nav-notifications-menu .notif-when { font-size: 0.8em; display: block; } -#nav-notifications-menu li { - padding: 7px 0px 7px 10px; - word-wrap:normal; - border-bottom: 1px solid #000; -} - -#nav-notifications-menu li:hover { - -} - -#nav-notifications-menu a:hover { - text-decoration: underline; -} - -.notif-item a { - color: #000000; -} - -.notif-item a:hover { - text-decoration: underline; -} - -.notif-image { - width: 32px; - height: 32px; - padding: 7px 7px 0px 0px; -} - -.notify-seen { - background: #DDDDDD; -} - -#id_term_label { - width:75px; -} -#id_term { - width:100px; -} - -#recip { - -} -.autocomplete-w1 { background: #ffffff no-repeat bottom right; position:absolute; top:0px; left:0px; margin:6px 0 0 6px; /* IE6 fix: */ _background:none; _margin:1px 0 0 0; } -.autocomplete { color:#000; border:1px solid #999; background:#FFF; cursor:default; text-align:left; max-height:350px; overflow:auto; margin:-6px 6px 6px -6px; /* IE6 specific: */ _height:350px; _margin:0; _overflow-x:hidden; } -.autocomplete .selected { background:#F0F0F0; } -.autocomplete div { padding:2px 5px; white-space:nowrap; overflow:hidden; } - -#datebrowse-sidebar select { - margin-left: 40px; - width: 130px; -} -#message-preview .mail-list-sender, #message-preview .mail-list-delete { - display:none; -} -#message-preview .mail-list-outside-wrapper { - margin-top: 20px; -} diff --git a/view/theme/frost/templates/acl_selector.tpl b/view/theme/frost/templates/acl_selector.tpl deleted file mode 100644 index fbec3af62..000000000 --- a/view/theme/frost/templates/acl_selector.tpl +++ /dev/null @@ -1,32 +0,0 @@ - -
- - {{$showall}} -
-
-
-
- -
- - - -{{if $networks}} -
-
{{$emailcc}}
-
-{{if $jotnets}} -{{$jotnets}} -{{/if}}{{/if}} - - diff --git a/view/theme/frost/templates/admin/aside.tpl b/view/theme/frost/templates/admin/aside.tpl deleted file mode 100644 index 74e92dab2..000000000 --- a/view/theme/frost/templates/admin/aside.tpl +++ /dev/null @@ -1,32 +0,0 @@ - - -

{{$admtxt}}

- - -{{if $admin.update}} - -{{/if}} - - -{{if $admin.addons_admin}}

{{$plugadmtxt}}

{{/if}} - - - -

{{$logtxt}}

- - diff --git a/view/theme/frost/templates/admin/site.tpl b/view/theme/frost/templates/admin/site.tpl deleted file mode 100644 index 8dcfa9129..000000000 --- a/view/theme/frost/templates/admin/site.tpl +++ /dev/null @@ -1,73 +0,0 @@ - - -
-

{{$title}} - {{$page}}

- - - - - {{include file="field_input.tpl" field=$sitename}} - {{include file="field_textarea.tpl" field=$banner}} - {{include file="field_select.tpl" field=$language}} - {{include file="field_select.tpl" field=$theme}} - {{include file="field_select.tpl" field=$theme_mobile}} - {{include file="field_select.tpl" field=$ssl_policy}} - {{include file="field_checkbox.tpl" field=$old_share}} - {{include file="field_checkbox.tpl" field=$hide_help}} - {{include file="field_select.tpl" field=$singleuser}} - -
- -

{{$registration}}

- {{include file="field_input.tpl" field=$register_text}} - {{include file="field_select.tpl" field=$register_policy}} - {{include file="field_input.tpl" field=$daily_registrations}} - {{include file="field_checkbox.tpl" field=$no_multi_reg}} - {{include file="field_checkbox.tpl" field=$no_openid}} - {{include file="field_checkbox.tpl" field=$no_regfullname}} - -
- -

{{$upload}}

- {{include file="field_input.tpl" field=$maximagesize}} - {{include file="field_input.tpl" field=$maximagelength}} - {{include file="field_input.tpl" field=$jpegimagequality}} - -

{{$corporate}}

- {{include file="field_input.tpl" field=$allowed_sites}} - {{include file="field_input.tpl" field=$allowed_email}} - {{include file="field_checkbox.tpl" field=$block_public}} - {{include file="field_checkbox.tpl" field=$force_publish}} - {{include file="field_checkbox.tpl" field=$no_community_page}} - {{include file="field_checkbox.tpl" field=$ostatus_disabled}} - {{include file="field_checkbox.tpl" field=$diaspora_enabled}} - {{include file="field_checkbox.tpl" field=$dfrn_only}} - {{include file="field_input.tpl" field=$global_directory}} - {{include file="field_checkbox.tpl" field=$newuser_private}} - {{include file="field_checkbox.tpl" field=$enotify_no_content}} - {{include file="field_checkbox.tpl" field=$private_addons}} - {{include file="field_checkbox.tpl" field=$disable_embedded}} -
- -

{{$advanced}}

- {{include file="field_checkbox.tpl" field=$verifyssl}} - {{include file="field_input.tpl" field=$proxy}} - {{include file="field_input.tpl" field=$proxyuser}} - {{include file="field_input.tpl" field=$timeout}} - {{include file="field_input.tpl" field=$delivery_interval}} - {{include file="field_input.tpl" field=$poll_interval}} - {{include file="field_input.tpl" field=$maxloadavg}} - {{include file="field_input.tpl" field=$abandon_days}} - {{include file="field_input.tpl" field=$lockpath}} - {{include file="field_input.tpl" field=$temppath}} - {{include file="field_input.tpl" field=$basepath}} - -

{{$performance}}

- {{include file="field_input.tpl" field=$itemcache}} - {{include file="field_input.tpl" field=$itemcache_duration}} - - -
- - -
diff --git a/view/theme/frost/templates/admin/users.tpl b/view/theme/frost/templates/admin/users.tpl deleted file mode 100644 index f0c4869a7..000000000 --- a/view/theme/frost/templates/admin/users.tpl +++ /dev/null @@ -1,98 +0,0 @@ - -
-

{{$title}} - {{$page}}

- -
- - -

{{$h_pending}}

- {{if $pending}} - - - - {{foreach $th_pending as $th}}{{/foreach}} - - - - - - {{foreach $pending as $u}} - - - - - - - - {{/foreach}} - -
{{$th}}
{{$u.created}}{{$u.name}} - - -
- -
- {{else}} -

{{$no_pending}}

- {{/if}} - - - - -

{{$h_users}}

- {{if $users}} - - - - - {{foreach $th_users as $th}}{{/foreach}} - - - - - - {{foreach $users as $u}} - - - - - - - - - - {{/if}} - - - {{/foreach}} - -
{{$th}}
{{$u.nickname}}{{$u.name}}{{$u.register_date}}{{$u.lastitem_date}} - {{if $u.is_admin}} -   - {{else}} - - {{if $u.is_admin}} -   - {{else}} - - - {{/if}} -
- -
- {{else}} - NO USERS?!? - {{/if}} -
-
diff --git a/view/theme/frost/templates/comment_item.tpl b/view/theme/frost/templates/comment_item.tpl deleted file mode 100644 index 4de33ca78..000000000 --- a/view/theme/frost/templates/comment_item.tpl +++ /dev/null @@ -1,55 +0,0 @@ -
-
- - - - {{**}} - - - - - {{$mytitle}} -
    -
  • -
  • -
  • -
  • -
  • -
  • -
  • -
  • -
- - {{if $qcomment}} - - {{/if}} - -
- -
-
diff --git a/view/theme/frost/templates/contact_edit.tpl b/view/theme/frost/templates/contact_edit.tpl deleted file mode 100644 index 621ca646b..000000000 --- a/view/theme/frost/templates/contact_edit.tpl +++ /dev/null @@ -1,93 +0,0 @@ - - -

{{$header}}

- -
- - {{$tab_str}} - -
- -
-
- - -
- - -
- - {{include file="field_checkbox.tpl" field=$hidden}} - -
-

{{$lbl_info1}}

- - -
-
- - -
-

{{$lbl_vis1}}

-

{{$lbl_vis2}}

-
- -{{if $reason}} -
-

{{$lbl_info2}}

-

{{$reason}}

-
-
-{{/if}} - -{{$profile_select}} -
- - - -
-
diff --git a/view/theme/frost/templates/contact_end.tpl b/view/theme/frost/templates/contact_end.tpl deleted file mode 100644 index e69de29bb..000000000 diff --git a/view/theme/frost/templates/contact_head.tpl b/view/theme/frost/templates/contact_head.tpl deleted file mode 100644 index e69de29bb..000000000 diff --git a/view/theme/frost/templates/contact_template.tpl b/view/theme/frost/templates/contact_template.tpl deleted file mode 100644 index fe491fd83..000000000 --- a/view/theme/frost/templates/contact_template.tpl +++ /dev/null @@ -1,42 +0,0 @@ - - -
-
-
- - {{$contact.name}} - - {{if $contact.photo_menu}} - menu -
-
    - {{foreach $contact.photo_menu as $c}} - {{if $c.2}} -
  • {{$c.0}}
  • - {{else}} -
  • {{$c.0}}
  • - {{/if}} - {{/foreach}} -
-
- {{/if}} -
- -
- -
-
- {{$contact.name}} - {{if $contact.account_type}} ({{$contact.account_type}}){{/if}} -
- {{if $contact.alt_text}}
{{$contact.alt_text}}
{{/if}} - {{if $contact.itemurl}}
{{$contact.itemurl}}
{{/if}} - {{if $contact.tags}}
{{$contact.tags}}
{{/if}} - {{if $contact.details}}
{{$contact.details}}
{{/if}} - {{if $contact.network}}
{{$contact.network}}
{{/if}} -
- -
-
diff --git a/view/theme/frost/templates/contacts-end.tpl b/view/theme/frost/templates/contacts-end.tpl deleted file mode 100644 index 139597f9c..000000000 --- a/view/theme/frost/templates/contacts-end.tpl +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/view/theme/frost/templates/contacts-head.tpl b/view/theme/frost/templates/contacts-head.tpl deleted file mode 100644 index c7e9caae4..000000000 --- a/view/theme/frost/templates/contacts-head.tpl +++ /dev/null @@ -1,6 +0,0 @@ - - - - diff --git a/view/theme/frost/templates/contacts-template.tpl b/view/theme/frost/templates/contacts-template.tpl deleted file mode 100644 index 71c2c3703..000000000 --- a/view/theme/frost/templates/contacts-template.tpl +++ /dev/null @@ -1,29 +0,0 @@ - -

{{$header}}{{if $total}} ({{$total}}){{/if}}

- -{{if $finding}}

{{$finding}}

{{/if}} - -{{$tabs}} - -
-
-{{$desc}} - - -
-
-
- - -
-{{foreach $contacts as $contact}} - {{include file="contact_template.tpl"}} -{{/foreach}} -
-
- -{{$paginate}} - - - - diff --git a/view/theme/frost/templates/cropbody.tpl b/view/theme/frost/templates/cropbody.tpl deleted file mode 100644 index 2678488e7..000000000 --- a/view/theme/frost/templates/cropbody.tpl +++ /dev/null @@ -1,27 +0,0 @@ -

{{$title}}

-

-{{$desc}} -

-
-{{$title}} -
-
-
-
- -
- - - - - - - - - - -
- -
- -
diff --git a/view/theme/frost/templates/cropend.tpl b/view/theme/frost/templates/cropend.tpl deleted file mode 100644 index a26100e0d..000000000 --- a/view/theme/frost/templates/cropend.tpl +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/view/theme/frost/templates/crophead.tpl b/view/theme/frost/templates/crophead.tpl deleted file mode 100644 index cbfce8d83..000000000 --- a/view/theme/frost/templates/crophead.tpl +++ /dev/null @@ -1 +0,0 @@ - diff --git a/view/theme/frost/templates/display-head.tpl b/view/theme/frost/templates/display-head.tpl deleted file mode 100644 index 011104c8f..000000000 --- a/view/theme/frost/templates/display-head.tpl +++ /dev/null @@ -1,5 +0,0 @@ - - - diff --git a/view/theme/frost/templates/end.tpl b/view/theme/frost/templates/end.tpl deleted file mode 100644 index b8a598de5..000000000 --- a/view/theme/frost/templates/end.tpl +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/view/theme/frost/templates/event.tpl b/view/theme/frost/templates/event.tpl deleted file mode 100644 index 8c84489cc..000000000 --- a/view/theme/frost/templates/event.tpl +++ /dev/null @@ -1,11 +0,0 @@ - -{{foreach $events as $event}} -
- - {{if $event.item.author_name}}{{$event.item.author_name}}{{/if}} - {{$event.html}} - {{if $event.item.plink}}{{/if}} - {{if $event.edit}}{{/if}} -
-
-{{/foreach}} diff --git a/view/theme/frost/templates/event_end.tpl b/view/theme/frost/templates/event_end.tpl deleted file mode 100644 index 8641b7c1b..000000000 --- a/view/theme/frost/templates/event_end.tpl +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/view/theme/frost/templates/event_form.tpl b/view/theme/frost/templates/event_form.tpl deleted file mode 100644 index 27631d9f7..000000000 --- a/view/theme/frost/templates/event_form.tpl +++ /dev/null @@ -1,45 +0,0 @@ - -

{{$title}}

- -

-{{$desc}} -

- -
- - - - - - -{{$s_dsel}} - -{{$f_dsel}} - -{{include file="field_checkbox.tpl" field=$nofinish}} - -{{include file="field_checkbox.tpl" field=$adjust}} - -{{include file="field_input.tpl" field=$summary}} - - -
{{$d_text}}
- - - -
{{$l_text}}
- -
- -{{if ! $eid}} -{{include file="field_checkbox.tpl" field=$share}} -{{/if}} - -{{$acl}} - -
- - -
- - diff --git a/view/theme/frost/templates/event_head.tpl b/view/theme/frost/templates/event_head.tpl deleted file mode 100644 index e4abc175a..000000000 --- a/view/theme/frost/templates/event_head.tpl +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - diff --git a/view/theme/frost/templates/field_themeselect.tpl b/view/theme/frost/templates/field_themeselect.tpl deleted file mode 100644 index bf25ed356..000000000 --- a/view/theme/frost/templates/field_themeselect.tpl +++ /dev/null @@ -1,10 +0,0 @@ - - -
- - - {{$field.3}} -
-
diff --git a/view/theme/frost/templates/group_drop.tpl b/view/theme/frost/templates/group_drop.tpl deleted file mode 100644 index dbbe698dd..000000000 --- a/view/theme/frost/templates/group_drop.tpl +++ /dev/null @@ -1,10 +0,0 @@ - -
- -
-
diff --git a/view/theme/frost/templates/head.tpl b/view/theme/frost/templates/head.tpl deleted file mode 100644 index 0a710c5aa..000000000 --- a/view/theme/frost/templates/head.tpl +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/view/theme/frost/templates/jot-end.tpl b/view/theme/frost/templates/jot-end.tpl deleted file mode 100644 index 9c04ad631..000000000 --- a/view/theme/frost/templates/jot-end.tpl +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/view/theme/frost/templates/jot-header.tpl b/view/theme/frost/templates/jot-header.tpl deleted file mode 100644 index db8b08af0..000000000 --- a/view/theme/frost/templates/jot-header.tpl +++ /dev/null @@ -1,17 +0,0 @@ - - - - diff --git a/view/theme/frost/templates/jot.tpl b/view/theme/frost/templates/jot.tpl deleted file mode 100644 index c0ba9b045..000000000 --- a/view/theme/frost/templates/jot.tpl +++ /dev/null @@ -1,91 +0,0 @@ - - -
-
-
 
-
-
-
- -
- - - - - - - - - {{if $notes_cid}} - - {{/if}} -
- {{if $placeholdercategory}} -
- {{/if}} -
- - -
- -
- - -
- -
- -
-
-
-
-
-
- - {{**}} - -
- -
-
- -
-
- -
- - -
- {{$bang}} -
- - {{$preview}} - -
- - -
- {{$jotplugins}} -
- -{{**}} - - - -
-
- {{$acl}} -
-
- - -
- -
-
-
- {{if $content}}{{/if}} diff --git a/view/theme/frost/templates/jot_geotag.tpl b/view/theme/frost/templates/jot_geotag.tpl deleted file mode 100644 index 3a87346db..000000000 --- a/view/theme/frost/templates/jot_geotag.tpl +++ /dev/null @@ -1,11 +0,0 @@ - - if(navigator.geolocation) { - navigator.geolocation.getCurrentPosition(function(position) { - var lat = position.coords.latitude.toFixed(4); - var lon = position.coords.longitude.toFixed(4); - - $('#jot-coord').val(lat + ', ' + lon); - $('#profile-nolocation-wrapper').show(); - }); - } - diff --git a/view/theme/frost/templates/like_noshare.tpl b/view/theme/frost/templates/like_noshare.tpl deleted file mode 100644 index 88120f191..000000000 --- a/view/theme/frost/templates/like_noshare.tpl +++ /dev/null @@ -1,8 +0,0 @@ - - diff --git a/view/theme/frost/templates/login.tpl b/view/theme/frost/templates/login.tpl deleted file mode 100644 index 35da4e8ac..000000000 --- a/view/theme/frost/templates/login.tpl +++ /dev/null @@ -1,46 +0,0 @@ - - - - - diff --git a/view/theme/frost/templates/lostpass.tpl b/view/theme/frost/templates/lostpass.tpl deleted file mode 100644 index 4f2e0de82..000000000 --- a/view/theme/frost/templates/lostpass.tpl +++ /dev/null @@ -1,22 +0,0 @@ - -
-

{{$title}}

-


- -
-
- - -
-
-

-{{$desc}} -

-
- -
- -
-
-
-
diff --git a/view/theme/frost/templates/mail_conv.tpl b/view/theme/frost/templates/mail_conv.tpl deleted file mode 100644 index 7a43952c4..000000000 --- a/view/theme/frost/templates/mail_conv.tpl +++ /dev/null @@ -1,15 +0,0 @@ - -
-
- {{$mail.from_name}} -
-
-
{{$mail.from_name}}
-
{{$mail.date}}
-
{{$mail.subject}}
-
{{$mail.body}}
-
-
-
-
-
diff --git a/view/theme/frost/templates/mail_list.tpl b/view/theme/frost/templates/mail_list.tpl deleted file mode 100644 index ffde5d68f..000000000 --- a/view/theme/frost/templates/mail_list.tpl +++ /dev/null @@ -1,17 +0,0 @@ - -
-
- {{$from_name}} -
-
-
{{$from_name}}
-
{{$date}}
- -
- -
-
-
-
- -
diff --git a/view/theme/frost/templates/message-end.tpl b/view/theme/frost/templates/message-end.tpl deleted file mode 100644 index 139597f9c..000000000 --- a/view/theme/frost/templates/message-end.tpl +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/view/theme/frost/templates/message-head.tpl b/view/theme/frost/templates/message-head.tpl deleted file mode 100644 index 8b1378917..000000000 --- a/view/theme/frost/templates/message-head.tpl +++ /dev/null @@ -1 +0,0 @@ - diff --git a/view/theme/frost/templates/moderated_comment.tpl b/view/theme/frost/templates/moderated_comment.tpl deleted file mode 100644 index e5c2e5b9a..000000000 --- a/view/theme/frost/templates/moderated_comment.tpl +++ /dev/null @@ -1,62 +0,0 @@ - -
-
- - - - - - - -
- {{$mytitle}} -
-
- -
    -
  • -
  • -
  • -
  • -
  • -
  • -
  • -
  • -
-
- - -
- - -
-
- -
diff --git a/view/theme/frost/templates/msg-end.tpl b/view/theme/frost/templates/msg-end.tpl deleted file mode 100644 index 628dec2ba..000000000 --- a/view/theme/frost/templates/msg-end.tpl +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/view/theme/frost/templates/msg-header.tpl b/view/theme/frost/templates/msg-header.tpl deleted file mode 100644 index 5de1a4508..000000000 --- a/view/theme/frost/templates/msg-header.tpl +++ /dev/null @@ -1,10 +0,0 @@ - - - - diff --git a/view/theme/frost/templates/nav.tpl b/view/theme/frost/templates/nav.tpl deleted file mode 100644 index cc9110a27..000000000 --- a/view/theme/frost/templates/nav.tpl +++ /dev/null @@ -1,151 +0,0 @@ - - - - diff --git a/view/theme/frost/templates/photo_drop.tpl b/view/theme/frost/templates/photo_drop.tpl deleted file mode 100644 index 0e5acc4ff..000000000 --- a/view/theme/frost/templates/photo_drop.tpl +++ /dev/null @@ -1,5 +0,0 @@ - -
- -
-
diff --git a/view/theme/frost/templates/photo_edit.tpl b/view/theme/frost/templates/photo_edit.tpl deleted file mode 100644 index c3f3fe882..000000000 --- a/view/theme/frost/templates/photo_edit.tpl +++ /dev/null @@ -1,59 +0,0 @@ - - -
- - - - - - -
- - - - -
- - - - -
-
-
- {{$rotatecw}} -
-
- -
- {{$rotateccw}} -
- -
-
- -
- -
{{$permissions}}
-
-
- -
-
- {{$aclselect}} -
-
-
-
- - - - -
-
- -{{**}} diff --git a/view/theme/frost/templates/photo_edit_head.tpl b/view/theme/frost/templates/photo_edit_head.tpl deleted file mode 100644 index 5bcd94a1f..000000000 --- a/view/theme/frost/templates/photo_edit_head.tpl +++ /dev/null @@ -1,8 +0,0 @@ - - - diff --git a/view/theme/frost/templates/photo_view.tpl b/view/theme/frost/templates/photo_view.tpl deleted file mode 100644 index a5fb2f041..000000000 --- a/view/theme/frost/templates/photo_view.tpl +++ /dev/null @@ -1,43 +0,0 @@ - -
-

{{$album.1}}

- - - -
- {{if $prevlink}}{{/if}} - {{if $nextlink}}{{/if}} -
-
-
-
{{$desc}}
-{{if $tags}} -
{{$tags.0}}
-
{{$tags.1}}
-{{/if}} -{{if $tags.2}}{{/if}} - -{{if $edit}} -{{$edit}} -{{else}} - -{{if $likebuttons}} -
- {{$likebuttons}} - {{$like}} - {{$dislike}} -
-{{/if}} - -{{$comments}} - -{{$paginate}} -{{/if}} - diff --git a/view/theme/frost/templates/photos_head.tpl b/view/theme/frost/templates/photos_head.tpl deleted file mode 100644 index 5ba31db0c..000000000 --- a/view/theme/frost/templates/photos_head.tpl +++ /dev/null @@ -1,6 +0,0 @@ - - - - diff --git a/view/theme/frost/templates/photos_upload.tpl b/view/theme/frost/templates/photos_upload.tpl deleted file mode 100644 index b08df5473..000000000 --- a/view/theme/frost/templates/photos_upload.tpl +++ /dev/null @@ -1,53 +0,0 @@ - -

{{$pagename}}

- -
{{$usage}}
- -
-
-
- -
- -
-
-
-
{{$existalbumtext}}
- -
-
- -
- {{$default_upload_box}} -
- -
- -
-
- - -
- -
-
- {{$aclselect}} -
-
- -
- - {{$alt_uploader}} - - {{$default_upload_submit}} - -
-
-
- diff --git a/view/theme/frost/templates/profed_end.tpl b/view/theme/frost/templates/profed_end.tpl deleted file mode 100644 index cac9de97a..000000000 --- a/view/theme/frost/templates/profed_end.tpl +++ /dev/null @@ -1,8 +0,0 @@ - - - - - diff --git a/view/theme/frost/templates/profed_head.tpl b/view/theme/frost/templates/profed_head.tpl deleted file mode 100644 index e69de29bb..000000000 diff --git a/view/theme/frost/templates/profile_edit.tpl b/view/theme/frost/templates/profile_edit.tpl deleted file mode 100644 index 6ccc13881..000000000 --- a/view/theme/frost/templates/profile_edit.tpl +++ /dev/null @@ -1,326 +0,0 @@ - -{{$default}} - -

{{$banner}}

- - - - - - -
-
- - -
- -
*
-
-
- -
- - -
-
- -
- - -
-
- - -
- -{{$gender}} -
-
- -
-{{$dob}} -
-
- -{{$hide_friends}} - -
- -
-
- - -
- - -
-
- -
- - -
-
- - -
- - -
-
- -
- - -
-
- -
- - -
-
- -
- - -
-
- -
- -
-
- -
- -{{$marital}} -
- - - - - -
- -
- -{{$sexual}} -
-
- - - -
- - -
-
- -
- - -
{{$xmpp.3}}
-
- -
- - -
-
- -
- - -
-
- -
- - -
{{$pub_keywords.3}}
-
- -
- - -
{{$prv_keywords.3}}
-
- - -
- -
-
- -
-

-{{$about.1}} -

- - - -
-
- - -
-

-{{$interest.1}} -

- - - -
-
- - -
-

-{{$likes.1}} -

- - - -
-
- - -
-

-{{$dislikes.1}} -

- - - -
-
- - -
-

-{{$contact.1}} -

- - - -
-
- - -
- -
-
- - -
-

-{{$music.1}} -

- - - -
-
- -
-

-{{$book.1}} -

- - - -
-
- - - -
-

-{{$tv.1}} -

- - - -
-
- - - -
-

-{{$film.1}} -

- - - -
-
- - -
- -
-
- - -
-

-{{$romance.1}} -

- - - -
-
- - - -
-

-{{$work.1}} -

- - - -
-
- - - -
-

-{{$education.1}} -

- - - -
-
- - - -
- -
-
- - -
-
- diff --git a/view/theme/frost/templates/profile_vcard.tpl b/view/theme/frost/templates/profile_vcard.tpl deleted file mode 100644 index dc2de8c3f..000000000 --- a/view/theme/frost/templates/profile_vcard.tpl +++ /dev/null @@ -1,62 +0,0 @@ - -
- -
{{$profile.name}}
- - {{if $profile.addr}}
{{$profile.addr}}
{{/if}} - - {{if $profile.pdesc}}
{{$profile.pdesc}}
{{/if}} -
{{$profile.name}}
- - {{if $account_type}}{{/if}} - - {{if $profile.network_name}}
{{$network}}
{{$profile.network_name}}
{{/if}} - - {{if $location}} -
{{$location}}
-
- {{if $profile.address}}
{{$profile.address}}
{{/if}} - - {{$profile.locality}}{{if $profile.locality}}, {{/if}} - {{$profile.region}} - {{$profile.postal_code}} - - {{if $profile.country_name}}{{$profile.country_name}}{{/if}} -
-
- {{/if}} - - {{if $profile.xmpp}} -
-
{{$xmpp}}
-
{{$profile.xmpp}}
-
- {{/if}} - - {{if $gender}}
{{$gender}}
{{$profile.gender}}
{{/if}} - - {{if $profile.pubkey}}{{/if}} - - {{if $marital}}
{{$marital}}
{{$profile.marital}}
{{/if}} - - {{if $homepage}}
{{$homepage}}
{{$profile.homepage}}
{{/if}} - - {{include file="diaspora_vcard.tpl"}} - -
- -
- -{{$contact_block}} diff --git a/view/theme/frost/templates/prv_message.tpl b/view/theme/frost/templates/prv_message.tpl deleted file mode 100644 index 356db2690..000000000 --- a/view/theme/frost/templates/prv_message.tpl +++ /dev/null @@ -1,40 +0,0 @@ - - -

{{$header}}

- -
-
- -{{$parent}} - -
{{$to}}
- -{{if $showinputs}} - - -{{else}} -{{$select}} -{{/if}} - -
{{$subject}}
- - -
{{$yourmessage}}
- - - -
- -
-
-
- -
- -
-
-
-
-
diff --git a/view/theme/frost/templates/register.tpl b/view/theme/frost/templates/register.tpl deleted file mode 100644 index e98308df7..000000000 --- a/view/theme/frost/templates/register.tpl +++ /dev/null @@ -1,81 +0,0 @@ - -
-

{{$regtitle}}

-

- -
- - - - {{$registertext}} - -

{{$realpeople}}

- -
-{{if $oidlabel}} -
- -
-
-{{/if}} - -
-

{{$fillwith}} {{$fillext}}

-
- -

- -{{if $invitations}} - -

{{$invite_desc}}

-
- - -
-
- -{{/if}} - - -
- - -
-
- - -
- - -
-
-

- -
- - -
-
- -
-

{{$nickdesc}}

-
- - {{$publish}} - -
- -

- -
- -
-
-
- -{{$license}} - -
diff --git a/view/theme/frost/templates/search_item.tpl b/view/theme/frost/templates/search_item.tpl deleted file mode 100644 index e646b9bfe..000000000 --- a/view/theme/frost/templates/search_item.tpl +++ /dev/null @@ -1,65 +0,0 @@ - - -{{**}} -
-
-
- - {{$item.name}} - menu - {{**}} -
    - {{$item.item_photo_menu}} -
- {{**}} -
- {{**}} -
- {{if $item.lock}}{{**}}{{$item.lock}}{{**}} - {{else}}
{{/if}} -
{{$item.location}}
-
-
- {{**}} - {{$item.name}} -
{{$item.ago}}
- - {{**}} -
-
{{$item.title}}
- {{**}} -
{{$item.body}}
- {{if $item.has_cats}} -
{{$item.txt_cats}} {{foreach $item.categories as $cat}}{{$cat.name}}{{if $cat.removeurl}} [{{$remove}}]{{/if}} {{if $cat.last}}{{else}}, {{/if}}{{/foreach}} -
- {{/if}} - - {{if $item.has_folders}} -
{{$item.txt_folders}} {{foreach $item.folders as $cat}}{{$cat.name}}{{if $cat.removeurl}} [{{$remove}}]{{/if}}{{if $cat.last}}{{else}}, {{/if}}{{/foreach}} -
- {{/if}} -
-
- {{**}} - {{if $item.drop.dropping}}{{/if}} - {{**}} - {{if $item.drop.pagedrop}}{{/if}} - {{**}} -
-
- {{**}} - - -
- {{if $item.conv}} - {{$item.conv.title}} - {{/if}} -
- -{{**}} diff --git a/view/theme/frost/templates/settings/display_end.tpl b/view/theme/frost/templates/settings/display_end.tpl deleted file mode 100644 index 14af58216..000000000 --- a/view/theme/frost/templates/settings/display_end.tpl +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/view/theme/frost/templates/settings/head.tpl b/view/theme/frost/templates/settings/head.tpl deleted file mode 100644 index 5ba31db0c..000000000 --- a/view/theme/frost/templates/settings/head.tpl +++ /dev/null @@ -1,6 +0,0 @@ - - - - diff --git a/view/theme/frost/templates/threaded_conversation.tpl b/view/theme/frost/templates/threaded_conversation.tpl deleted file mode 100644 index 0fdffb065..000000000 --- a/view/theme/frost/templates/threaded_conversation.tpl +++ /dev/null @@ -1,29 +0,0 @@ - -{{if $dropping}} - - -{{else}} -{{if $mode==display}} -
-{{/if}} -{{/if}} - -{{$live_update}} - -{{foreach $threads as $thread}} -{{include file="{{$thread.template}}" item=$thread}} -{{/foreach}} - -
- -{{if $dropping}} - - -
-{{/if}} diff --git a/view/theme/frost/templates/voting_fakelink.tpl b/view/theme/frost/templates/voting_fakelink.tpl deleted file mode 100644 index 16349f272..000000000 --- a/view/theme/frost/templates/voting_fakelink.tpl +++ /dev/null @@ -1,2 +0,0 @@ - -{{$phrase}} diff --git a/view/theme/frost/templates/wall_thread.tpl b/view/theme/frost/templates/wall_thread.tpl deleted file mode 100644 index c88e8008f..000000000 --- a/view/theme/frost/templates/wall_thread.tpl +++ /dev/null @@ -1,140 +0,0 @@ - -{{if $item.comment_firstcollapsed}} -
- {{$item.num_comments}} {{$item.hide_text}} -
- {{/if}} - diff --git a/view/theme/frost/templates/wallmsg-end.tpl b/view/theme/frost/templates/wallmsg-end.tpl deleted file mode 100644 index 90f4ed198..000000000 --- a/view/theme/frost/templates/wallmsg-end.tpl +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/view/theme/frost/templates/wallmsg-header.tpl b/view/theme/frost/templates/wallmsg-header.tpl deleted file mode 100644 index 3fbb56863..000000000 --- a/view/theme/frost/templates/wallmsg-header.tpl +++ /dev/null @@ -1,7 +0,0 @@ - - - - diff --git a/view/theme/frost/theme.php b/view/theme/frost/theme.php deleted file mode 100644 index dd1a0ceba..000000000 --- a/view/theme/frost/theme.php +++ /dev/null @@ -1,77 +0,0 @@ - - * Maintainer: Zach P - */ - -use Friendica\App; -use Friendica\Content\Text\Plaintext; -use Friendica\Core\Addon; -use Friendica\Core\System; - -function frost_init(App $a) { - $a->videowidth = 400; - $a->videoheight = 330; - $a->set_template_engine('smarty3'); -} - -function frost_content_loaded(App $a) { - - // I could do this in style.php, but by having the CSS in a file the browser will cache it, - // making pages load faster - if( $a->module === 'home' || $a->module === 'login' || $a->module === 'register' || $a->module === 'lostpass' ) { - //$a->page['htmlhead'] = str_replace('$stylesheet', System::baseUrl() . '/view/theme/frost/login-style.css', $a->page['htmlhead']); - $a->theme['stylesheet'] = System::baseUrl() . '/view/theme/frost/login-style.css'; - } - - if ( $a->module === 'login' ) { - $a->page['end'] .= ''; - } - -} - -function frost_install() { - Addon::registerHook('prepare_body_final', 'view/theme/frost/theme.php', 'frost_item_photo_links'); - - logger("installed theme frost"); -} - -function frost_uninstall() { - Addon::unregisterHook('bbcode', 'view/theme/frost/theme.php', 'frost_bbcode'); - - logger("uninstalled theme frost"); -} - -function frost_item_photo_links(App $a, &$body_info) -{ - $occurence = 0; - $p = Plaintext::getBoundariesPosition($body_info['html'], ''); - while($p !== false && ($occurence++ < 500)) { - $link = substr($body_info['html'], $p['start'], $p['end'] - $p['start']); - - $matches = []; - preg_match("/\/photos\/[\w]+\/image\/([\w]+)/", $link, $matches); - if($matches) { - - // Replace the link for the photo's page with a direct link to the photo itself - $newlink = str_replace($matches[0], "/photo/{$matches[1]}", $link); - - // Add a "quiet" parameter to any redir links to prevent the "XX welcomes YY" info boxes - $newlink = preg_replace("/href=\"([^\"]+)\/redir\/([^\"]+)&url=([^\"]+)\"/", 'href="$1/redir/$2&quiet=1&url=$3"', $newlink); - - // Having any arguments to the link for Colorbox causes it to fetch base64 code instead of the image - $newlink = preg_replace("/\/[?&]zrl=([^&\"]+)/", '', $newlink); - - $body_info['html'] = str_replace($link, $newlink, $body_info['html']); - - } - - $p = Plaintext::getBoundariesPosition($body_info['html'], '', $occurence); - } -} - diff --git a/view/theme/frost/unsupported b/view/theme/frost/unsupported deleted file mode 100644 index e69de29bb..000000000